From 6082613e88c107a189eb8ac6267f21d07b9ada77 Mon Sep 17 00:00:00 2001 From: noise Date: Mon, 29 Jun 2026 16:31:02 -0400 Subject: [PATCH 01/16] many eda additions --- .claude/skills/kicad-build/SKILL.md | 144 + .claude/skills/kicad-port/SKILL.md | 93 + .gitignore | 36 + PORT_STATUS.md | 95 + analysis/baseline/cm5io_sim.json | 220 + .../decoupling_C18_C9_C12_C6_C4.cir | 38 + .../decoupling_C18_C9_C12_C6_C4.log | 24 + .../decoupling_C18_C9_C12_C6_C4.out | 1 + analysis/spice_runs/decoupling_C2.cir | 23 + analysis/spice_runs/decoupling_C2.log | 40 + analysis/spice_runs/decoupling_C2.out | 1 + analysis/spice_runs/decoupling_C7_C3_C8.cir | 29 + analysis/spice_runs/decoupling_C7_C3_C8.log | 44 + analysis/spice_runs/decoupling_C7_C3_C8.out | 1 + analysis/spice_runs/inrush_idx0.cir | 25 + analysis/spice_runs/inrush_idx0.log | 37 + analysis/spice_runs/inrush_idx0.out | 1 + analysis/spice_runs/inrush_idx1.cir | 27 + analysis/spice_runs/inrush_idx1.log | 37 + analysis/spice_runs/inrush_idx1.out | 1 + .../regulator-feedback_U8_R15_R16.cir | 20 + .../regulator-feedback_U8_R15_R16.log | 16 + .../regulator-feedback_U8_R15_R16.out | 1 + .../spice_runs/voltage-divider_R15_R16.cir | 17 + .../spice_runs/voltage-divider_R15_R16.log | 16 + .../spice_runs/voltage-divider_R15_R16.out | 1 + carrier/CM5IO.kicad_pro | 844 + carrier/CM5IO.kicad_sch | 3816 +++ carrier/CM5IO.kicad_sym | 10220 ++++++++ carrier/CM5_GPIO.kicad_sch | 19656 ++++++++++++++++ carrier/CM5_HighSpeed.kicad_sch | 12907 ++++++++++ carrier/PCIe-M2.kicad_sch | 7933 +++++++ carrier/fp-lib-table | 4 + carrier/sym-lib-table | 4 + datasheets/extracted/SC1466_43a9ec.json | 1807 ++ datasheets/extracted/manifest.json | 17 + refs/.history | 2 +- tools/install-kicad-toolkit | 64 + tools/kicad-build | 256 + tools/kicad-python | 44 + tools/retire_block.py | 266 + 41 files changed, 58827 insertions(+), 1 deletion(-) create mode 100644 .claude/skills/kicad-build/SKILL.md create mode 100644 .claude/skills/kicad-port/SKILL.md create mode 100644 .gitignore create mode 100644 PORT_STATUS.md create mode 100644 analysis/baseline/cm5io_sim.json create mode 100644 analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.cir create mode 100644 analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.log create mode 100644 analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.out create mode 100644 analysis/spice_runs/decoupling_C2.cir create mode 100644 analysis/spice_runs/decoupling_C2.log create mode 100644 analysis/spice_runs/decoupling_C2.out create mode 100644 analysis/spice_runs/decoupling_C7_C3_C8.cir create mode 100644 analysis/spice_runs/decoupling_C7_C3_C8.log create mode 100644 analysis/spice_runs/decoupling_C7_C3_C8.out create mode 100644 analysis/spice_runs/inrush_idx0.cir create mode 100644 analysis/spice_runs/inrush_idx0.log create mode 100644 analysis/spice_runs/inrush_idx0.out create mode 100644 analysis/spice_runs/inrush_idx1.cir create mode 100644 analysis/spice_runs/inrush_idx1.log create mode 100644 analysis/spice_runs/inrush_idx1.out create mode 100644 analysis/spice_runs/regulator-feedback_U8_R15_R16.cir create mode 100644 analysis/spice_runs/regulator-feedback_U8_R15_R16.log create mode 100644 analysis/spice_runs/regulator-feedback_U8_R15_R16.out create mode 100644 analysis/spice_runs/voltage-divider_R15_R16.cir create mode 100644 analysis/spice_runs/voltage-divider_R15_R16.log create mode 100644 analysis/spice_runs/voltage-divider_R15_R16.out create mode 100644 carrier/CM5IO.kicad_pro create mode 100644 carrier/CM5IO.kicad_sch create mode 100644 carrier/CM5IO.kicad_sym create mode 100644 carrier/CM5_GPIO.kicad_sch create mode 100644 carrier/CM5_HighSpeed.kicad_sch create mode 100644 carrier/PCIe-M2.kicad_sch create mode 100644 carrier/fp-lib-table create mode 100644 carrier/sym-lib-table create mode 100644 datasheets/extracted/SC1466_43a9ec.json create mode 100644 datasheets/extracted/manifest.json create mode 100755 tools/install-kicad-toolkit create mode 100755 tools/kicad-build create mode 100755 tools/kicad-python create mode 100644 tools/retire_block.py diff --git a/.claude/skills/kicad-build/SKILL.md b/.claude/skills/kicad-build/SKILL.md new file mode 100644 index 0000000..4f89e02 --- /dev/null +++ b/.claude/skills/kicad-build/SKILL.md @@ -0,0 +1,144 @@ +# kicad-build — PCB generation from opencode + +Use this skill when building PCBs with the kicad-claude-toolkit inside opencode. +It wires KiCad's pcbnew (only available in KiCad's bundled Python) into opencode's +bash toolchain so you can generate .kicad_sch, .kicad_pcb, run ERC/DRC, and export +gerbers — all from opencode. + +## Prerequisites + +- KiCad.app installed at `/Applications/KiCad/KiCad.app` +- `kicad-cli` on PATH (`brew install kicad`) +- `ngspice` on PATH for simulation (`brew install ngspice`) +- `netlistsvg` on PATH for schematic SVG (`npm install -g netlistsvg`) +- Run `tools/install-kicad-toolkit` once to install circuit_toolkit into KiCad's Python + +## Key paths + +| What | Path | +|------|------| +| KiCad Python (has pcbnew) | `/Applications/KiCad/KiCad.app/Contents/Frameworks/Python.framework/Versions/3.9/bin/python3` | +| Launcher script | `tools/kicad-python` | +| Build orchestrator | `tools/kicad-build` | +| Install script | `tools/install-kicad-toolkit` | +| circuit_toolkit source | `kicad-claude-toolkit/python/circuit_toolkit` | +| S-expression editor | `tools/retire_block.py` | +| KiCad CLI | `/opt/homebrew/bin/kicad-cli` (or `kicad-cli` on PATH) | + +## How it works + +The toolkit has two layers: + +1. **circuit_toolkit** (Python) — describes circuit topology (components, nets) and + generates `.kicad_sch` / `.kicad_pcb` files. The PCB builder (`builders/pcb.py`) + calls `pcbnew` directly, so it MUST run inside KiCad's Python. +2. **kicad-cli** (binary) — runs ERC, DRC, exports gerbers/BOM/PDF/netlist. Runs + anywhere on PATH. + +### The launcher + +`tools/kicad-python` finds KiCad's Python and execs it. Use it for any script that +imports `pcbnew` or `circuit_toolkit.builders.pcb`: + +```bash +./tools/kicad-python -c "from circuit_toolkit.builders.pcb import build_pcb" +./tools/kicad-python my_script.py +./tools/kicad-python -m circuit_toolkit.build board_dir/ +``` + +### The build orchestrator + +`tools/kicad-build [--all]` runs the full pipeline: + +``` +1. circuit_toolkit build → .kicad_sch + .kicad_pcb +2. kicad-cli sch erc → ERC report +3. kicad-cli pcb drc → DRC report +4. kicad-cli pcb export → gerber + drill + position +5. kicad-cli sch export → BOM + PDF + netlist +6. ngspice -b → SPICE simulations (if sim/ present) +``` + +Output lands in `/output/`. + +## Writing a board + +A board is a Python script using `circuit_toolkit.blocks`: + +```python +# my-board/build.py +from circuit_toolkit import Board +from circuit_toolkit.blocks import usbc_power, ams1117_ldo, led_indicator, pin_header, m2_mounting_hole + +board = Board("my-board", size=(48, 30)) +vbus, gnd, cc1, cc2 = usbc_power(board, ref="J1", cc_pulldowns="5.1k") +v3v3 = ams1117_ldo(board, ref="U1", vin=vbus, gnd=gnd, output_voltage=3.3) +led_indicator(board, ref_led="D1", ref_resistor="R3", vin=v3v3, gnd=gnd, color="red") +pin_header(board, ref="J2", pins=2, label="3V3_OUT", nets=[v3v3, gnd]) +for ref in ("H1", "H2", "H3", "H4"): + m2_mounting_hole(board, ref=ref) +``` + +Then run: +```bash +./tools/kicad-python build.py +``` + +A separate `layout.py` provides component positions + tracks + vias + zones, passed +to `build_pcb()`. + +## Editing KiCad s-expressions directly + +For surgical edits to `.kicad_sch` or `.kicad_pcb` s-expressions (removing blocks, +flooded net cleanup, no-connect markers), use `tools/retire_block.py`: + +```bash +python3 tools/retire_block.py carrier/CM5IO.kicad_sch \ + --symbols J7,U18 --nets 'SD_*' \ + --apply +``` + +## Common opencode patterns + +### Generate a PCB from a board definition +```bash +cd +./tools/kicad-python build.py +``` + +### Run ERC after schematic changes +```bash +kicad-cli sch erc *.kicad_sch --output output/erc/erc_report.txt +``` + +### Run DRC after layout changes +```bash +kicad-cli pcb drc *.kicad_pcb --output output/drc/drc_report.html +``` + +### Export gerbers for fab +```bash +kicad-cli pcb export gerbers *.kicad_pcb --output output/fab/gerber +kicad-cli pcb export drill *.kicad_pcb --output output/fab/gerber +kicad-cli pcb export pos *.kicad_pcb --output output/fab/positions.csv +``` + +### Render 3D PCB view +```bash +kicad-cli pcb render *.kicad_pcb -o output/3d.png +``` + +### SPICE simulation +```bash +ngspice -b -r output/sim/run.raw sim/circuit.cir +``` + +## Troubleshooting + +- **"pcbnew not found"**: use `tools/kicad-python` instead of system python3 +- **"kicad-cli not found"**: `brew install kicad` +- **"ngspice not found"**: `brew install ngspice` +- **KiCad updates**: re-run `tools/install-kicad-toolkit` after KiCad updates +- **Python 3.9 vs 3.10**: KiCad ships 3.9; toolkit pyproject says >=3.10. The + `--no-build-isolation` flag in install-kicad-toolkit bypasses this (code is + compatible with 3.9). diff --git a/.claude/skills/kicad-port/SKILL.md b/.claude/skills/kicad-port/SKILL.md new file mode 100644 index 0000000..8fafaca --- /dev/null +++ b/.claude/skills/kicad-port/SKILL.md @@ -0,0 +1,93 @@ +--- +name: kicad-port +description: "Project skill for porting the Raspberry Pi CM5IO reference design into this custom CM5 carrier board. Use this skill on EVERY schematic/PCB task in this repo: editing .kicad_sch, defining or changing pinouts and nets, adding/removing circuit blocks, or verifying a design change. It encodes the source-of-truth for CM5 pins, the s-expression editing rules, and the MANDATORY verify loop (kicad-cli ERC + kicad-happy analyzer + diff-vs-reference). Always consult this skill before editing any KiCad file here, and run the verify loop after." +--- + +# CM5 Carrier — Port Workflow + +We are building a custom Raspberry Pi **CM5 carrier board** by porting the official +**CM5IO reference design**. Work is currently in the **schematic / pinout phase**. + +This is a **diff-from-reference** project: every change starts from a known-good reference +and must stay electrically defensible against it. Claude is the *editor* (surgical s-expr +text edits); the tooling below is the *verifier*. Never edit without verifying. + +## Source of truth (consult before any pin/net decision) + +1. `cm5-datasheet.pdf` — authoritative CM5 module pinout, power sequencing, pin reservations. +2. `CM5_Carrier_Pinout_BOM.md` / `CM5_Carrier_Design.md` — this board's intended pin map and BOM. +3. `refs/CM5IO.kicad_sch` (+ `CM5_GPIO`, `CM5_HighSpeed`, `PCIe-M2` sub-sheets) — the reference + schematic we port FROM. Hierarchical design; sub-sheets are referenced by UUID. + +If a pin assignment disagrees between the datasheet and any other doc, **the datasheet wins** — +flag the discrepancy, don't silently pick one. + +## S-expression editing rules (footguns) + +KiCad `.kicad_sch` / `.kicad_pcb` files are s-expression text — readable and Edit-able. +But: + +- **NEVER hand-edit or hand-invent UUIDs.** Copy-pasting a symbol/sheet block as text and + reusing its UUID corrupts the schematic (KiCad treats duplicates as the same object). + If you need a new instance, generate a fresh UUID: + `python3 -c "import uuid; print(uuid.uuid4())"` +- **Hierarchical nets:** a net can carry multiple labels across sheets (the analyzer's `LB-001` + finding). Prefer one canonical label style per cross-sheet net; don't rename one half. +- **Power nets need a driver:** every power rail needs a power symbol or `PWR_FLAG`, or ERC fails. +- After ANY structural edit, re-run the verify loop below. A passing Edit is not a passing design. +- Coordinate edits through git. Another (context-free) agent may touch these files; commit small, + review diffs, never blind-overwrite a sheet you didn't just read. + +## The verify loop (MANDATORY after every schematic change) + +`python3` here is Homebrew 3.14 (the kicad-happy scripts require Python ≥ 3.10). +Scripts live under `~/.claude/skills/kicad/scripts/` (symlinked from `kicad-happy/`). + +```bash +SCH=path/to/your.kicad_sch # the file you changed +KSCR=~/.claude/skills/kicad/scripts + +# 1. KiCad's own ERC (the hard gate — must be clean before commit) +kicad-cli sch erc --exit-code-violations --output /tmp/erc.json --format json "$SCH" +# non-zero exit => fix or revert before proceeding. + +# 2. kicad-happy structural review (catches what ERC won't: decoupling gaps, +# connector ground ratios, protocol/voltage mismatches, multi-label nets) +python3 $KSCR/analyze_schematic.py "$SCH" --text # human-readable +python3 $KSCR/analyze_schematic.py "$SCH" -o /tmp/head.json # machine-readable + +# 3. Diff against the committed reference baseline to see what your change moved +python3 $KSCR/diff_analysis.py analysis/baseline/cm5io.json /tmp/head.json --text +``` + +Treat new WARN/ERROR findings in step 2/3 as regressions to justify or fix — not noise. + +## Optional deeper checks + +- **SPICE** (`spice` skill): validates analog subcircuits (regulator feedback dividers, RC/LC + filters, crystal load caps). Requires a simulator on PATH — **`ngspice` IS installed** + (`/opt/homebrew/bin/ngspice`) and the loop is validated end-to-end on the reference + (8 subcircuits pass, incl. the 5V→3.3V buck feedback divider). Run after the analyzer: + `python3 ~/.claude/skills/spice/scripts/simulate_subcircuits.py -o sim.json`. +- **Datasheets** (`datasheets` skill): extract CM5 / IC specs from PDFs so analyzer findings are + `datasheet-backed` rather than `heuristic`. Start with `cm5-datasheet.pdf`. + +## Schematic hygiene checklist (before declaring a sheet done) + +- [ ] All nets named — no auto-generated `Net-(R1-Pad1)` names in the final design +- [ ] Power rails ALL_CAPS (`+3V3`, `+5V`, `GND`); active-low uses `n` prefix (`nRESET`, `nCS`) +- [ ] `PWR_FLAG` on every power net with no explicit driver +- [ ] No-connect markers on all intentionally unconnected pins +- [ ] Hierarchical port names match the nets they carry +- [ ] Reference designators follow convention (U/R/C/L/D/Q/J/SW/F/TP/BT), annotated by block +- [ ] Title block filled (project, rev, date, author, one-line description) +- [ ] Design notes added for non-obvious choices (pull-up values, protection ratings, placement) +- [ ] **ERC passes with zero errors** (step 1 above) + +## Reference shelf (not wired into the loop) + +- `MCP-KiCad/` — MCP server over `pcbnew` (SWIG). PCB/fabrication only, Linux/flatpak-first. + Ignore until layout phase, and even then prefer `kicad-cli pcb` over it. +- `kicad-claude-toolkit/` — greenfield "circuit-as-Python → PCB" generator + IPC bridge. + Built for new designs, not porting. Only its `schematic-hygiene` guidance (folded in above) + is relevant now. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cd3b3e8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# --- KiCad transient / generated --- +*.lck +~*.lck +*.kicad_prl +*-backups/ +fp-info-cache +*.bak +*.kicad_sch-bak +_autosave-* + +# --- macOS --- +.DS_Store + +# --- editor / MCP local artifacts --- +.history/ +.playwright-mcp/ + +# --- External tooling clones (kept locally, not vendored into this repo) --- +# These are git clones with their own history; the kicad-port skill references +# kicad-happy via ~/.claude/skills symlinks. Re-clone if missing. +/kicad-happy/ +/kicad-claude-toolkit/ +/MCP-KiCad/ + +# --- Analysis cache (timestamped runs); committed baselines live in analysis/baseline/ --- +.kicad-happy/ +analysis/runs/ + +# --- kicad-build toolchain output --- +output/ +*.raw +*.xml + +# --- python cache --- +__pycache__/ +*.pyc diff --git a/PORT_STATUS.md b/PORT_STATUS.md new file mode 100644 index 0000000..7451cda --- /dev/null +++ b/PORT_STATUS.md @@ -0,0 +1,95 @@ +# CM5 Carrier Port — Status & Handoff + +> Handoff doc for whoever (human or LLM) continues this work. Read this first, then +> `.claude/skills/kicad-port/SKILL.md` (the mandatory workflow/verify-loop), then +> `CM5_Carrier_Design.md` (frozen rev-A spec). + +## What this repo is + +Two intertwined goals: +1. **Improve Claude's EDA tooling** — the [`kicad-happy`](https://github.com/aklofas/kicad-happy) + skill suite (`kicad`, `datasheets`, `spice`, …), wired in as Claude Code skills via + `~/.claude/skills/{kicad,datasheets,spice} -> kicad-happy/skills/*` symlinks. The toolkit + clones (`kicad-happy/`, `kicad-claude-toolkit/`, `MCP-KiCad/`) are gitignored — re-clone if missing. +2. **Port the Raspberry Pi CM5IO reference into a custom CM5 carrier board** — the real + test bed (PTP/timing instrumentation node: 15V→5V front end, GbE magjack, M.2 E-key Wi-Fi + (AW7915/MT7915), 2×USB-A, USB-C programming, RTC, GPS-PPS distribution). + +Method is **diff-from-reference**: `refs/` holds the untouched CM5IO reference; `carrier/` is the +working copy. Every edit is verified against `analysis/baseline/cm5io.json`. + +## Environment / tooling state (macOS, Homebrew) + +- `kicad-cli` ✅ (`/opt/homebrew/bin/kicad-cli`) — ERC + netlist export +- `poppler` ✅ (pdftotext) — datasheet page selection +- `ngspice` ✅ — `spice` skill; full verify loop validated on the reference (8 subcircuits pass) +- Python ≥3.10 (Homebrew 3.14) + +## The verify loop (run after EVERY schematic edit) + +```bash +SCH=carrier/CM5IO.kicad_sch ; KSCR=~/.claude/skills/kicad/scripts +kicad-cli sch erc --exit-code-violations --format json -o /tmp/erc.json "$SCH" # hard gate +python3 $KSCR/analyze_schematic.py "$SCH" -o /tmp/head.json # structural +python3 $KSCR/diff_analysis.py analysis/baseline/cm5io.json /tmp/head.json --text # vs baseline +``` +- **Track the ERC DELTA, not the absolute** — the reference already has 182 pre-existing + violations (mostly `unconnected_wire_endpoint`). A good edit introduces **zero new types**. +- The **analyzer diff is the semantic gate** (names broken design intent); **ERC is the hygiene gate**. +- For kept-block integrity, also diff `kicad-cli sch export netlist` before/after — it caught a + mis-inventoried part (see R8 below). + +## Datasheet extraction (done) + +CM5 module extracted to `datasheets/extracted/SC1466_43a9ec.json` (200 pins, score 8.7/10, +queryable via `~/.claude/skills/datasheets/scripts/datasheet_features.py`). Drove the NC pin +lists for every strip (e.g. HDMI Module1 pins = all pins whose datasheet name starts `HDMI`). + +## The strip tool: `tools/retire_block.py` + +General block-retirement for these s-expr sheets. Capabilities: +- excise symbols by Reference; retire nets by name-glob (all label types: local / hierarchical / global) +- **anchor-aware wire removal** (union-find): removes a wire only if its connected component + reaches no *kept* anchor (kept non-power pin or kept label) AND is seeded by this edit — so + shared nets survive and pre-existing dangles are untouched +- place `(no_connect)` on exposed Module1 pins (pin coords via a validated transform + `abs=(px+rot(lx,ly).x, py-rot(lx,ly).y)`, rot0/no-mirror; refuses other orientations) +- clean orphaned power flags, dangling NCs, orphaned labels +- `--sheet-ports NAME,...` removes root-sheet hierarchical pins + connecting wires + +Usage: `python3 tools/retire_block.py --symbols J7,U18 --nets 'SD_*' --nc-pins 57,61 [--sheet-ports ...] [--apply]` (dry-run without `--apply`). + +**Known gap (next improvement):** does NOT auto-prune orphaned power-label/wire *stubs* left after a +connector is removed (e.g. leftover `+3.3v`/`HDMI_5v` labels). Those were cleaned manually — see git history. + +## Strip phase — DONE (microSD + HDMI + MIPI), ERC 182 → 136, 0 new violations, 0 regressions + +| Block | Sheet(s) | Command(s) (run with `--apply`) | +|---|---|---| +| **microSD** | CM5_GPIO | `--symbols J7,U18,C5 --nets 'SD_*' --nc-pins 57,61,62,63,67,69,75` | +| **HDMI** | CM5_HighSpeed | `--symbols J22,J10 --nets 'HDMI0_*,HDMI1_*,HDMI_5v' --nc-pins 143,145,146,147,148,149,151,152,153,154,158,160,164,166,170,172,176,178,182,184,188,190,199,200` | +| **MIPI/camera** | CM5_HighSpeed, CM5_GPIO, CM5IO(root) | (1) HighSpeed `--symbols J5,J16 --nets 'DPHY0_*,DPHY1_*,SCL1,SDA1' --nc-pins 115,117,121,123,127,129,133,135,139,141,175,177,181,183,187,189,193,194,195,196` (2) GPIO `--nc-pins 80,82,97,100` (3) root `--sheet-ports SCL0,SDA0,CAM_GPIO0,CAM_GPIO1` (4) HighSpeed `--symbols R8 --nets 'SCL0,SDA0'` (5) manual: remove 3 orphaned +3.3v labels + 2 wire stubs | + +Notes that bit us (don't re-learn the hard way): +- **MIPI lanes are labeled `DPHY0_*`/`DPHY1_*`, NOT `MIPI*`.** The connectors J5/J16 are camera FFCs + bundling DPHY + cross-sheet I2C0 (`SCL0/SDA0`) + `CAM_GPIO0/1` — a 3-sheet hierarchical block. +- **`R8` is a camera pull-up, not USB** (the Explore-agent inventory was wrong). Confirmed via + `kicad-cli sch export netlist` (`R8.2 → J16.17`). Always verify inventory against the netlist. +- **`SCL0/SDA0` (I2C0) are camera-only 2-node nets** (netlist-proven). NC'd to **reserve I2C0 for a + future external I2C RTC** (CM5's own RTC is on-module via VBAT). If you add an external RTC, wire it here. + +## Next steps + +1. **Drop the PCIe-M2 sheet entirely** (NVMe M-key — not used; the M.2 **E-key** Wi-Fi will be a + FRESH sheet in the add phase, per design decision). Use `--sheet-ports` for its root hierarchical pins. +2. **Re-baseline**: capture a new analyzer baseline of `carrier/` so the add phase diffs against the + stripped design, not the original reference. +3. **Add phase**: 15V→5V buck front-end (reverse-protection + TVS), M.2 E-key (PCIe Gen2 ×1 + + CLKREQ/PERST/RF_KILL + 3.3V), GPS connector, PPS distribution (GPS PPS → TVS → Schmitt buffer → + fan-out: CM5 `Ethernet_SYNC_OUT` + 2 header taps). SPICE-validate the buck divider + PPS network. + +## Out-of-repo notes + +Richer running notes live in this machine's Claude memory: +`~/.claude/projects/-Users-noise-Documents-obsidian-rpiboard/memory/` (`project-cm5-eda`, +`port-progress`, `eda-tooling-gaps`, `tooling-installs-cm5`). This doc is the portable subset. diff --git a/analysis/baseline/cm5io_sim.json b/analysis/baseline/cm5io_sim.json new file mode 100644 index 0000000..cfde3a4 --- /dev/null +++ b/analysis/baseline/cm5io_sim.json @@ -0,0 +1,220 @@ +{ + "analyzer_type": "spice", + "schema_version": "1.3.0", + "summary": { + "total": 8, + "total_findings": 0, + "pass": 8, + "warn": 0, + "fail": 0, + "skip": 0, + "by_severity": { + "error": 0, + "warning": 0, + "info": 8 + } + }, + "findings": [], + "simulation_results": [ + { + "subcircuit_type": "voltage_divider", + "components": [ + "R15", + "R16" + ], + "expected": { + "ratio": 0.180328, + "vout_V": 0.5950823999999999 + }, + "simulated": { + "vout_V": 0.595082 + }, + "delta": { + "vout_error_pct": 0.0 + }, + "status": "pass", + "elapsed_s": 1.214, + "reference": "R15/R16" + }, + { + "subcircuit_type": "voltage_divider", + "components": [ + "R15", + "R16" + ], + "expected": { + "ratio": 0.180328, + "vout_V": 0.5950823999999999 + }, + "simulated": { + "vout_V": 0.595082 + }, + "delta": { + "vout_error_pct": 0.0 + }, + "status": "pass", + "elapsed_s": 0.021, + "reference": "R15/R16" + }, + { + "subcircuit_type": "decoupling", + "components": [ + "C18", + "C9", + "C12", + "C6", + "C4" + ], + "rail": "/00000000-0000-0000-0000-00005ed4bb5b/+5v", + "cap_count": 6, + "expected": {}, + "simulated": { + "z_min_ohms": 0.0078, + "z_at_1MHz_ohms": 0.0093, + "z_at_100kHz_ohms": 0.0781 + }, + "delta": {}, + "model_note": "generic ESR + parasitic L from self-resonant frequency", + "status": "pass", + "note": "Z=0.009\u03a9 at 1MHz", + "elapsed_s": 0.016, + "reference": "C18/C9/C12/C6/C4" + }, + { + "subcircuit_type": "decoupling", + "components": [ + "C2" + ], + "rail": "+5v", + "cap_count": 1, + "expected": {}, + "simulated": { + "z_min_ohms": 0.0158, + "f_at_zmin_hz": 1678740.0, + "z_at_1MHz_ohms": 0.0188, + "z_at_100kHz_ohms": 0.1594 + }, + "delta": {}, + "model_note": "generic ESR + parasitic L from self-resonant frequency", + "status": "pass", + "note": "Z=0.019\u03a9 at 1MHz", + "elapsed_s": 0.013, + "reference": "C2" + }, + { + "subcircuit_type": "decoupling", + "components": [ + "C7", + "C3", + "C8" + ], + "rail": "VBUS", + "cap_count": 3, + "expected": {}, + "simulated": { + "z_min_ohms": 0.0075, + "z_at_1MHz_ohms": 0.009, + "z_at_100kHz_ohms": 0.0569 + }, + "delta": {}, + "model_note": "generic ESR + parasitic L from self-resonant frequency", + "status": "pass", + "note": "Z=0.009\u03a9 at 1MHz", + "elapsed_s": 0.013, + "reference": "C7/C3/C8" + }, + { + "subcircuit_type": "regulator_feedback", + "components": [ + "R15", + "R16" + ], + "regulator": "U8", + "expected": { + "ratio": 0.180328, + "vref_V": 0.6, + "vfb_V": 0.599951256, + "vin_V": 3.327 + }, + "simulated": { + "vfb_V": 0.6 + }, + "delta": { + "vfb_error_pct": 0.0 + }, + "status": "pass", + "elapsed_s": 0.01, + "reference": "R15/R16" + }, + { + "subcircuit_type": "inrush", + "components": [ + "C7", + "C3", + "C8" + ], + "regulator": "U6", + "expected": { + "v_target_V": 5.0, + "estimated_inrush_A": 1.2 + }, + "simulated": { + "v_settled_V": 5.0 + }, + "delta": { + "v_settle_error_pct": 0.0 + }, + "status": "pass", + "note": "Transient simulated", + "elapsed_s": 0.013, + "reference": "C7/C3/C8" + }, + { + "subcircuit_type": "inrush", + "components": [ + "C16", + "C19", + "C14", + "C15", + "C17" + ], + "regulator": "U8", + "expected": { + "v_target_V": 3.327, + "estimated_inrush_A": 0.133 + }, + "simulated": { + "v_settled_V": 3.327 + }, + "delta": { + "v_settle_error_pct": 0.0 + }, + "status": "pass", + "note": "Transient simulated", + "elapsed_s": 0.011, + "reference": "C16/C19/C14/C15/C17" + } + ], + "trust_summary": { + "total_findings": 0, + "trust_level": "high", + "by_confidence": { + "deterministic": 0, + "heuristic": 0, + "datasheet-backed": 0 + }, + "by_evidence_source": { + "datasheet": 0, + "topology": 0, + "heuristic_rule": 0, + "symbol_footprint": 0, + "bom": 0, + "geometry": 0, + "api_lookup": 0 + }, + "provenance_coverage_pct": null + }, + "total_elapsed_s": 1.31, + "simulator": "/opt/homebrew/bin/ngspice", + "ngspice": "/opt/homebrew/bin/ngspice" +} \ No newline at end of file diff --git a/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.cir b/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.cir new file mode 100644 index 0000000..ba2c109 --- /dev/null +++ b/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.cir @@ -0,0 +1,38 @@ +* Auto-generated testbench for decoupling analysis: /00000000-0000-0000-0000-00005ed4bb5b/+5v rail +* 6 capacitor(s) in parallel, series R-L-C model +* Model: ESR/ESL from pdn_impedance (package-based) + +R_esr_C18 rail n_esr_0 948.7m +L_par_C18 n_esr_0 n_lpar_0 500p +C18 n_lpar_0 0 100n +R_esr_C9 rail n_esr_1 948.7m +L_par_C9 n_esr_1 n_lpar_1 500p +C9 n_lpar_1 0 100n +R_esr_C12 rail n_esr_2 948.7m +L_par_C12 n_esr_2 n_lpar_2 500p +C12 n_lpar_2 0 100n +R_esr_C6 rail n_esr_3 15.8m +L_par_C6 n_esr_3 n_lpar_3 900p +C6 n_lpar_3 0 10u +R_esr_C4 rail n_esr_4 15.8m +L_par_C4 n_esr_4 n_lpar_4 900p +C4 n_lpar_4 0 10u +R_esr_C10 rail n_esr_5 948.7m +L_par_C10 n_esr_5 n_lpar_5 500p +C10 n_lpar_5 0 100n + +* 1A AC current source into the rail node — V(rail) = Z(f) +IAC 0 rail DC 0 AC 1 + +.control +ac dec 200 100 100Meg +let z_mag = vm(rail) +meas ac z_min min z_mag +meas ac f_at_zmin when z_mag=z_min +meas ac z_at_1M find vm(rail) at=1Meg +meas ac z_at_100k find vm(rail) at=100k +echo "z_min=$&z_min f_at_zmin=$&f_at_zmin z_at_1M=$&z_at_1M z_at_100k=$&z_at_100k n_caps=6" > analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.out +quit +.endc + +.end diff --git a/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.log b/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.log new file mode 100644 index 0000000..ac23f31 --- /dev/null +++ b/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.log @@ -0,0 +1,24 @@ +=== stdout === + +Note: No compatibility mode selected! + + +Circuit: * auto-generated testbench for decoupling analysis: /00000000-0000-0000-0000-00005ed4bb5b/+5v rail + +Doing analysis at TEMP = 27.000000 and TNOM = 27.000000 + +Using SPARSE 1.3 as Direct Linear Solver + +No. of Data Rows : 1201 +z_min = 7.76885e-03 at= 1.67880e+06 + meas ac f_at_zmin when z_mag=7.768850e-03 failed! + +z_at_1m = 9.25020e-03 +z_at_100k = 7.81266e-02 +ngspice-46 done + +=== stderr === + +Error: measure f_at_zmin when(WHEN) : out of interval +Error: &f_at_zmin: no such variable. + diff --git a/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.out b/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.out new file mode 100644 index 0000000..23f7d57 --- /dev/null +++ b/analysis/spice_runs/decoupling_C18_C9_C12_C6_C4.out @@ -0,0 +1 @@ +z_min=0.00776885 f_at_zmin= z_at_1M=0.0092502 z_at_100k=0.0781266 n_caps=6 diff --git a/analysis/spice_runs/decoupling_C2.cir b/analysis/spice_runs/decoupling_C2.cir new file mode 100644 index 0000000..608794c --- /dev/null +++ b/analysis/spice_runs/decoupling_C2.cir @@ -0,0 +1,23 @@ +* Auto-generated testbench for decoupling analysis: +5v rail +* 1 capacitor(s) in parallel, series R-L-C model +* Model: ESR/ESL from pdn_impedance (package-based) + +R_esr_C2 rail n_esr_0 15.8m +L_par_C2 n_esr_0 n_lpar_0 900p +C2 n_lpar_0 0 10u + +* 1A AC current source into the rail node — V(rail) = Z(f) +IAC 0 rail DC 0 AC 1 + +.control +ac dec 200 100 100Meg +let z_mag = vm(rail) +meas ac z_min min z_mag +meas ac f_at_zmin when z_mag=z_min +meas ac z_at_1M find vm(rail) at=1Meg +meas ac z_at_100k find vm(rail) at=100k +echo "z_min=$&z_min f_at_zmin=$&f_at_zmin z_at_1M=$&z_at_1M z_at_100k=$&z_at_100k n_caps=1" > analysis/spice_runs/decoupling_C2.out +quit +.endc + +.end diff --git a/analysis/spice_runs/decoupling_C2.log b/analysis/spice_runs/decoupling_C2.log new file mode 100644 index 0000000..43b501d --- /dev/null +++ b/analysis/spice_runs/decoupling_C2.log @@ -0,0 +1,40 @@ +=== stdout === + +Note: No compatibility mode selected! + + +Circuit: * auto-generated testbench for decoupling analysis: +5v rail + +Doing analysis at TEMP = 27.000000 and TNOM = 27.000000 + +Using SPARSE 1.3 as Direct Linear Solver + +No. of Data Rows : 1201 +z_min = 1.58000e-02 at= 1.67880e+06 +f_at_zmin = 1.67874e+06 +z_at_1m = 1.88393e-02 +z_at_100k = 1.59375e-01 +ngspice-46 done + +=== stderr === +Warning: singular matrix: check node n_lpar_0 + +Note: Starting dynamic gmin stepping +Warning: singular matrix: check node n_lpar_0 + +Warning: Dynamic gmin stepping failed +Note: Starting true gmin stepping +Warning: singular matrix: check node n_lpar_0 + +Warning: singular matrix: check node n_lpar_0 + +Warning: singular matrix: check node n_lpar_0 + +Warning: singular matrix: check node n_lpar_0 + +Warning: True gmin stepping failed +Note: Starting source stepping +Warning: source stepping failed +Note: Transient op started +Note: Transient op finished successfully + diff --git a/analysis/spice_runs/decoupling_C2.out b/analysis/spice_runs/decoupling_C2.out new file mode 100644 index 0000000..184fc21 --- /dev/null +++ b/analysis/spice_runs/decoupling_C2.out @@ -0,0 +1 @@ +z_min=0.0158 f_at_zmin=1.67874E+06 z_at_1M=0.0188393 z_at_100k=0.159375 n_caps=1 diff --git a/analysis/spice_runs/decoupling_C7_C3_C8.cir b/analysis/spice_runs/decoupling_C7_C3_C8.cir new file mode 100644 index 0000000..333768f --- /dev/null +++ b/analysis/spice_runs/decoupling_C7_C3_C8.cir @@ -0,0 +1,29 @@ +* Auto-generated testbench for decoupling analysis: VBUS rail +* 3 capacitor(s) in parallel, series R-L-C model +* Model: ESR/ESL from pdn_impedance (package-based) + +R_esr_C7 rail n_esr_0 15.8m +L_par_C7 n_esr_0 n_lpar_0 900p +C7 n_lpar_0 0 10u +R_esr_C3 rail n_esr_1 100m +L_par_C3 n_esr_1 n_lpar_1 7.5n +C3 n_lpar_1 0 100u +R_esr_C8 rail n_esr_2 15.8m +L_par_C8 n_esr_2 n_lpar_2 900p +C8 n_lpar_2 0 10u + +* 1A AC current source into the rail node — V(rail) = Z(f) +IAC 0 rail DC 0 AC 1 + +.control +ac dec 200 100 100Meg +let z_mag = vm(rail) +meas ac z_min min z_mag +meas ac f_at_zmin when z_mag=z_min +meas ac z_at_1M find vm(rail) at=1Meg +meas ac z_at_100k find vm(rail) at=100k +echo "z_min=$&z_min f_at_zmin=$&f_at_zmin z_at_1M=$&z_at_1M z_at_100k=$&z_at_100k n_caps=3" > analysis/spice_runs/decoupling_C7_C3_C8.out +quit +.endc + +.end diff --git a/analysis/spice_runs/decoupling_C7_C3_C8.log b/analysis/spice_runs/decoupling_C7_C3_C8.log new file mode 100644 index 0000000..c337c23 --- /dev/null +++ b/analysis/spice_runs/decoupling_C7_C3_C8.log @@ -0,0 +1,44 @@ +=== stdout === + +Note: No compatibility mode selected! + + +Circuit: * auto-generated testbench for decoupling analysis: vbus rail + +Doing analysis at TEMP = 27.000000 and TNOM = 27.000000 + +Using SPARSE 1.3 as Direct Linear Solver + +No. of Data Rows : 1201 +z_min = 7.52546e-03 at= 1.67880e+06 + meas ac f_at_zmin when z_mag=7.525463e-03 failed! + +z_at_1m = 8.98325e-03 +z_at_100k = 5.69392e-02 +ngspice-46 done + +=== stderr === +Warning: singular matrix: check node n_lpar_1 + +Note: Starting dynamic gmin stepping +Warning: singular matrix: check node rail + +Warning: Dynamic gmin stepping failed +Note: Starting true gmin stepping +Warning: singular matrix: check node rail + +Warning: singular matrix: check node rail + +Warning: singular matrix: check node rail + +Warning: singular matrix: check node rail + +Warning: True gmin stepping failed +Note: Starting source stepping +Warning: source stepping failed +Note: Transient op started +Note: Transient op finished successfully + +Error: measure f_at_zmin when(WHEN) : out of interval +Error: &f_at_zmin: no such variable. + diff --git a/analysis/spice_runs/decoupling_C7_C3_C8.out b/analysis/spice_runs/decoupling_C7_C3_C8.out new file mode 100644 index 0000000..19b8156 --- /dev/null +++ b/analysis/spice_runs/decoupling_C7_C3_C8.out @@ -0,0 +1 @@ +z_min=0.00752546 f_at_zmin= z_at_1M=0.00898326 z_at_100k=0.0569392 n_caps=3 diff --git a/analysis/spice_runs/inrush_idx0.cir b/analysis/spice_runs/inrush_idx0.cir new file mode 100644 index 0000000..ec76da5 --- /dev/null +++ b/analysis/spice_runs/inrush_idx0.cir @@ -0,0 +1,25 @@ +* Auto-generated testbench for inrush analysis: U6 (LDO) +* Output: 5.0V, 120.0µF total capacitance +* Soft-start: 0.5ms ramp + +* Voltage source with linear ramp (soft-start) — 10us delay before ramp +Vreg ramp 0 PWL(0 0 10u 0 510u 5.0) +* Regulator output impedance +Rout ramp out 100m + +* Output capacitors +C7 out 0 10u +C3 out 0 100u +C8 out 0 10u + +.control +tran 1u 1.5m +let i_out = abs(i(Rout)) +let i_peak = vecmax(i_out) +let t_peak = i_out[vecmin(abs(i_out - i_peak))] +meas tran v_settled find v(out) at=1.35m +echo "i_peak=$&i_peak t_peak=$&t_peak v_settled=$&v_settled v_target=5.0 r_out=0.1" > analysis/spice_runs/inrush_idx0.out +quit +.endc + +.end diff --git a/analysis/spice_runs/inrush_idx0.log b/analysis/spice_runs/inrush_idx0.log new file mode 100644 index 0000000..2b3b2da --- /dev/null +++ b/analysis/spice_runs/inrush_idx0.log @@ -0,0 +1,37 @@ +=== stdout === + +Note: No compatibility mode selected! + + +Circuit: * auto-generated testbench for inrush analysis: u6 (ldo) + +Doing analysis at TEMP = 27.000000 and TNOM = 27.000000 + +Using SPARSE 1.3 as Direct Linear Solver + +Initial Transient Solution +-------------------------- + +Node Voltage +---- ------- +ramp 0 +out 0 +vreg#branch 0 + + +No. of Data Rows : 1517 +v_settled = 5.00000e+00 +ngspice-46 done + +=== stderr === + +Error: no such function as i, + or i(rout) is not available. +Error: RHS "abs(i(rout))" invalid +Warning from checkvalid: vector i_out is not available or has zero length. +Error: RHS "vecmax(i_out)" invalid +Warning from checkvalid: vector i_out is not available or has zero length. +Error: RHS "i_out[vecmin(abs(i_out - i_peak))]" invalid +Error: &i_peak: no such variable. +Error: &t_peak: no such variable. + diff --git a/analysis/spice_runs/inrush_idx0.out b/analysis/spice_runs/inrush_idx0.out new file mode 100644 index 0000000..0a1dea5 --- /dev/null +++ b/analysis/spice_runs/inrush_idx0.out @@ -0,0 +1 @@ +i_peak= t_peak= v_settled=5 v_target=5.0 r_out=0.1 diff --git a/analysis/spice_runs/inrush_idx1.cir b/analysis/spice_runs/inrush_idx1.cir new file mode 100644 index 0000000..534b5dc --- /dev/null +++ b/analysis/spice_runs/inrush_idx1.cir @@ -0,0 +1,27 @@ +* Auto-generated testbench for inrush analysis: U8 (switching) +* Output: 3.327V, 40.1µF total capacitance +* Soft-start: 1.0ms ramp + +* Voltage source with linear ramp (soft-start) — 10us delay before ramp +Vreg ramp 0 PWL(0 0 10u 0 1.01m 3.327) +* Regulator output impedance +Rout ramp out 10m + +* Output capacitors +C16 out 0 10u +C19 out 0 100n +C14 out 0 10u +C15 out 0 10u +C17 out 0 10u + +.control +tran 2u 3m +let i_out = abs(i(Rout)) +let i_peak = vecmax(i_out) +let t_peak = i_out[vecmin(abs(i_out - i_peak))] +meas tran v_settled find v(out) at=2.7m +echo "i_peak=$&i_peak t_peak=$&t_peak v_settled=$&v_settled v_target=3.327 r_out=0.01" > analysis/spice_runs/inrush_idx1.out +quit +.endc + +.end diff --git a/analysis/spice_runs/inrush_idx1.log b/analysis/spice_runs/inrush_idx1.log new file mode 100644 index 0000000..c06826d --- /dev/null +++ b/analysis/spice_runs/inrush_idx1.log @@ -0,0 +1,37 @@ +=== stdout === + +Note: No compatibility mode selected! + + +Circuit: * auto-generated testbench for inrush analysis: u8 (switching) + +Doing analysis at TEMP = 27.000000 and TNOM = 27.000000 + +Using SPARSE 1.3 as Direct Linear Solver + +Initial Transient Solution +-------------------------- + +Node Voltage +---- ------- +ramp 0 +out 0 +vreg#branch 0 + + +No. of Data Rows : 1518 +v_settled = 3.32700e+00 +ngspice-46 done + +=== stderr === + +Error: no such function as i, + or i(rout) is not available. +Error: RHS "abs(i(rout))" invalid +Warning from checkvalid: vector i_out is not available or has zero length. +Error: RHS "vecmax(i_out)" invalid +Warning from checkvalid: vector i_out is not available or has zero length. +Error: RHS "i_out[vecmin(abs(i_out - i_peak))]" invalid +Error: &i_peak: no such variable. +Error: &t_peak: no such variable. + diff --git a/analysis/spice_runs/inrush_idx1.out b/analysis/spice_runs/inrush_idx1.out new file mode 100644 index 0000000..0966b85 --- /dev/null +++ b/analysis/spice_runs/inrush_idx1.out @@ -0,0 +1 @@ +i_peak= t_peak= v_settled=3.327 v_target=3.327 r_out=0.01 diff --git a/analysis/spice_runs/regulator-feedback_U8_R15_R16.cir b/analysis/spice_runs/regulator-feedback_U8_R15_R16.cir new file mode 100644 index 0000000..e465b7d --- /dev/null +++ b/analysis/spice_runs/regulator-feedback_U8_R15_R16.cir @@ -0,0 +1,20 @@ +* Auto-generated testbench for regulator feedback: U8 +* Divider: R15/R16, ratio=0.1803 +* Expected Vout=3.327V, Vfb=0.6000V (Vref=0.6V) +* Topology: standard +* Model: ideal passives (exact for DC divider) + +VIN out_rail 0 DC 3.327 +R15 out_rail fb_net 10k +R16 fb_net 0 2.2k + +.control +op +let vfb_sim = v(fb_net) +let expected = 0.599951256 +let error_pct = abs(vfb_sim - expected) / expected * 100 +echo "vfb_sim=$&vfb_sim error_pct=$&error_pct expected=0.599951256 vin=3.327 vref=0.6" > analysis/spice_runs/regulator-feedback_U8_R15_R16.out +quit +.endc + +.end diff --git a/analysis/spice_runs/regulator-feedback_U8_R15_R16.log b/analysis/spice_runs/regulator-feedback_U8_R15_R16.log new file mode 100644 index 0000000..4b118a0 --- /dev/null +++ b/analysis/spice_runs/regulator-feedback_U8_R15_R16.log @@ -0,0 +1,16 @@ +=== stdout === + +Note: No compatibility mode selected! + + +Circuit: * auto-generated testbench for regulator feedback: u8 + +Doing analysis at TEMP = 27.000000 and TNOM = 27.000000 + +Using SPARSE 1.3 as Direct Linear Solver + +No. of Data Rows : 1 +ngspice-46 done + +=== stderr === + diff --git a/analysis/spice_runs/regulator-feedback_U8_R15_R16.out b/analysis/spice_runs/regulator-feedback_U8_R15_R16.out new file mode 100644 index 0000000..22f4d8d --- /dev/null +++ b/analysis/spice_runs/regulator-feedback_U8_R15_R16.out @@ -0,0 +1 @@ +vfb_sim=0.599951 error_pct=7.27272E-05 expected=0.599951256 vin=3.327 vref=0.6 diff --git a/analysis/spice_runs/voltage-divider_R15_R16.cir b/analysis/spice_runs/voltage-divider_R15_R16.cir new file mode 100644 index 0000000..66b8239 --- /dev/null +++ b/analysis/spice_runs/voltage-divider_R15_R16.cir @@ -0,0 +1,17 @@ +* Auto-generated testbench for voltage divider: R15/R16 +* Expected Vout = 3.3 * 0.180328 = 0.5951 V +* Model: ideal passives (exact, unloaded) + +VIN M2_3v3 0 DC 3.3 +R15 M2_3v3 FB 10k +R16 FB 0 2.2k + +.control +op +let vout_sim = v(FB) +let error_pct = abs(vout_sim - 0.5950823999999999) / 0.5950823999999999 * 100 +echo "vout_sim=$&vout_sim error_pct=$&error_pct expected=0.5950823999999999" > analysis/spice_runs/voltage-divider_R15_R16.out +quit +.endc + +.end diff --git a/analysis/spice_runs/voltage-divider_R15_R16.log b/analysis/spice_runs/voltage-divider_R15_R16.log new file mode 100644 index 0000000..d09ec19 --- /dev/null +++ b/analysis/spice_runs/voltage-divider_R15_R16.log @@ -0,0 +1,16 @@ +=== stdout === + +Note: No compatibility mode selected! + + +Circuit: * auto-generated testbench for voltage divider: r15/r16 + +Doing analysis at TEMP = 27.000000 and TNOM = 27.000000 + +Using SPARSE 1.3 as Direct Linear Solver + +No. of Data Rows : 1 +ngspice-46 done + +=== stderr === + diff --git a/analysis/spice_runs/voltage-divider_R15_R16.out b/analysis/spice_runs/voltage-divider_R15_R16.out new file mode 100644 index 0000000..86a56a0 --- /dev/null +++ b/analysis/spice_runs/voltage-divider_R15_R16.out @@ -0,0 +1 @@ +vout_sim=0.595082 error_pct=7.27272E-05 expected=0.5950823999999999 diff --git a/carrier/CM5IO.kicad_pro b/carrier/CM5IO.kicad_pro new file mode 100644 index 0000000..7ca4835 --- /dev/null +++ b/carrier/CM5IO.kicad_pro @@ -0,0 +1,844 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.05, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.05, + "dimension_precision": 1, + "dimension_units": 2, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.1, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.1, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 2.7, + "height": 2.7, + "width": 2.7 + }, + "silk_line_width": 0.12, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.15, + "silk_text_upright": false, + "zones": { + "45_degree_only": false, + "min_clearance": 0.39 + } + }, + "diff_pair_dimensions": [ + { + "gap": 0.0, + "via_gap": 0.0, + "width": 0.0 + } + ], + "drc_exclusions": [ + "clearance|139230000|150500000|44050c2e-137a-4ee5-aab6-af6e82cb550c|c1309054-b3ec-4f1e-9334-00cba6baa146", + "clearance|140500000|149230000|fcebfa8a-eb3d-4196-9404-532dc9ddde9f|c1309054-b3ec-4f1e-9334-00cba6baa146", + "clearance|140920000|151770000|40ece557-24f2-47a4-bf57-058580957d62|44050c2e-137a-4ee5-aab6-af6e82cb550c", + "clearance|141770000|150920000|40ece557-24f2-47a4-bf57-058580957d62|fcebfa8a-eb3d-4196-9404-532dc9ddde9f", + "clearance|146205000|147060000|cf9a04ac-e742-4cc4-b820-74b94e875632|fd267553-ab4f-45b2-b9de-3fd8c755208d", + "clearance|159795000|147060000|386d8066-f8d7-448e-8535-fb964d94eab0|49b00fb2-fbf7-4862-ac04-916c407cd0f2", + "clearance|159975000|145410000|029ebbb9-b02f-45bd-96ed-01f4d0ed11f9|8cfd9587-a6c9-4a80-b337-75a1568e78eb", + "clearance|163003858|146776424|a2c51ef8-4a45-4b19-8a83-e2fa4ed59648|49b00fb2-fbf7-4862-ac04-916c407cd0f2", + "courtyards_overlap|124749999|104420001|00000000-0000-0000-0000-00005d2e9306|00000000-0000-0000-0000-00005e42b6ed", + "footprint_type_mismatch|187000000|157525000|00000000-0000-0000-0000-00005d2fec1a|00000000-0000-0000-0000-000000000000" + ], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "warning", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "warning", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "error", + "hole_clearance": "error", + "hole_near_hole": "error", + "holes_co_located": "warning", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "warning", + "padstack": "error", + "pth_inside_courtyard": "warning", + "shorting_items": "error", + "silk_edge_clearance": "ignore", + "silk_over_copper": "error", + "silk_overlap": "error", + "skew_out_of_range": "error", + "solder_mask_bridge": "ignore", + "starved_thermal": "ignore", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "allow_blind_buried_vias": false, + "allow_microvias": false, + "max_error": 0.005, + "min_clearance": 0.125, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.01, + "min_hole_clearance": 0.19, + "min_hole_to_hole": 0.24, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.2, + "min_track_width": 0.1, + "min_via_annular_width": 0.1, + "min_via_annulus": 0.049999999999999996, + "min_via_diameter": 0.45, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [ + 0.0, + 0.127, + 0.13, + 0.147, + 0.2, + 0.23, + 0.3, + 0.5, + 1.0, + 2.0, + 3.0 + ], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 100, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.1, + "single_sided": false, + "spacing": 0.6 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 100, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.1, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 100, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.1, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [ + { + "diameter": 0.0, + "drill": 0.0 + }, + { + "diameter": 0.45, + "drill": 0.2 + } + ], + "zones_allow_external_fillets": false, + "zones_use_no_outline": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [ + "power_pin_not_driven|1003300|1181100|66cf9899-100d-45fb-9b9f-8f866de8a3fe|00000000-0000-0000-0000-000000000000|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a|", + "power_pin_not_driven|1524000|317500|2cecda96-8fc5-40d2-a9f4-ae1444adbd06|00000000-0000-0000-0000-000000000000|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b|", + "power_pin_not_driven|393700|1181100|0fc4267c-2119-444e-b3b2-d8a7bd88ec8a|00000000-0000-0000-0000-000000000000|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a|" + ], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "error", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "error", + "net_not_bus_member": "error", + "no_connect_connected": "error", + "no_connect_dangling": "error", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "error", + "power_pin_not_driven": "error", + "similar_labels": "error", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "CM5IO.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.125, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.13, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.13, + "via_diameter": 0.45, + "via_drill": 0.2, + "wire_width": 6 + }, + { + "bus_width": 12, + "clearance": 0.13, + "diff_pair_gap": 0.253, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.127, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "100R", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.127, + "via_diameter": 0.45, + "via_drill": 0.2, + "wire_width": 6 + }, + { + "bus_width": 12, + "clearance": 0.13, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.178, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "50R", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.13, + "via_diameter": 0.45, + "via_drill": 0.2, + "wire_width": 6 + }, + { + "bus_width": 12, + "clearance": 0.13, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.13, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "75R", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.13, + "via_diameter": 0.45, + "via_drill": 0.2, + "wire_width": 6 + }, + { + "bus_width": 12, + "clearance": 0.13, + "diff_pair_gap": 0.253, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.147, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "90R", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.147, + "via_diameter": 0.45, + "via_drill": 0.2, + "wire_width": 6 + }, + { + "bus_width": 12, + "clearance": 0.13, + "diff_pair_gap": 0.253, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.127, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "HDMI", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.127, + "via_diameter": 0.45, + "via_drill": 0.2, + "wire_width": 6 + }, + { + "bus_width": 12, + "clearance": 1.0, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.13, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "POE TAPS", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.3, + "via_diameter": 0.45, + "via_drill": 0.2, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [ + { + "netclass": "90R", + "pattern": "/CM5_HighSpeed/USB3*" + }, + { + "netclass": "100R", + "pattern": "/CM5_HighSpeed/DPHY*" + }, + { + "netclass": "HDMI", + "pattern": "/CM5_HighSpeed/HDMI*_D*" + }, + { + "netclass": "HDMI", + "pattern": "/CM5_HighSpeed/HDMI*_CK*" + }, + { + "netclass": "POE TAPS", + "pattern": "/CM5_GPIO ( Ethernet, GPIO, SDCARD)/TR*_TAP" + }, + { + "netclass": "100R", + "pattern": "/CM5_GPIO ( Ethernet, GPIO, SDCARD)/TRD*" + }, + { + "netclass": "90R", + "pattern": "/CM5_HighSpeed/PCIE_*X_*" + }, + { + "netclass": "90R", + "pattern": "/CM5_HighSpeed/PCIE_*CLK_*" + }, + { + "netclass": "90R", + "pattern": "/USB2*" + } + ] + }, + "pcbnew": { + "last_paths": { + "gencad": "CM5IOUSB3.cad", + "idf": "", + "netlist": "CM5IO.net", + "plot": "./", + "pos_files": "RPI-CM5IO-Gerber200924/", + "specctra_dsn": "", + "step": "", + "svg": "SVG/", + "vmrl": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_export_filename": "", + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": true, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + }, + { + "group_by": false, + "label": "#", + "name": "${ITEM_NUMBER}", + "show": false + }, + { + "group_by": false, + "label": "Field4", + "name": "Field4", + "show": true + }, + { + "group_by": false, + "label": "Field5", + "name": "Field5", + "show": true + }, + { + "group_by": false, + "label": "Field6", + "name": "Field6", + "show": true + }, + { + "group_by": false, + "label": "Field7", + "name": "Field7", + "show": true + }, + { + "group_by": false, + "label": "Field8", + "name": "Field8", + "show": true + }, + { + "group_by": false, + "label": "Part Description", + "name": "Part Description", + "show": true + }, + { + "group_by": false, + "label": "Description", + "name": "Description", + "show": false + } + ], + "filter_string": "", + "group_symbols": true, + "name": "", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_bus_thickness": 12.0, + "default_junction_size": 40.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "default_wire_thickness": 6.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.3, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.3 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "ngspice": { + "fix_include_paths": true, + "fix_passive_vals": false, + "meta": { + "version": 0 + }, + "model_mode": 0, + "workbook_filename": "" + }, + "page_layout_descr_file": "", + "plot_directory": "./SVG", + "spice_adjust_passive_values": false, + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", + "Root" + ], + [ + "00000000-0000-0000-0000-00005cff70b1", + "CM5_HighSpeed" + ], + [ + "00000000-0000-0000-0000-00005cff706a", + "CM5_GPIO ( Ethernet, GPIO, SDCARD)" + ], + [ + "00000000-0000-0000-0000-00005ed4bb5b", + "PCIe-M2" + ] + ], + "text_variables": {} +} diff --git a/carrier/CM5IO.kicad_sch b/carrier/CM5IO.kicad_sch new file mode 100644 index 0000000..912090a --- /dev/null +++ b/carrier/CM5IO.kicad_sch @@ -0,0 +1,3816 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55") + (paper "A4") + (title_block + (title "Compute Module 5 IO Board - Top Level") + (rev "1") + (company "Copyright © 2024 Raspberry Pi Ltd.") + (comment 1 "www.raspberrypi.com") + ) + (lib_symbols + (symbol "Connector:USB_C_Receptacle_USB2.0_16P" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 22.225 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "USB_C_Receptacle_USB2.0_16P" + (at 0 19.685 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 3.81 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" + (at 3.81 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB 2.0-only 16P Type-C Receptacle connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "usb universal serial bus type-C USB2.0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "USB*C*Receptacle*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "USB_C_Receptacle_USB2.0_16P_0_0" + (rectangle + (start -0.254 -17.78) + (end 0.254 -16.764) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -14.986) + (end 9.144 -15.494) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -12.446) + (end 9.144 -12.954) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -4.826) + (end 9.144 -5.334) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -2.286) + (end 9.144 -2.794) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 0.254) + (end 9.144 -0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 2.794) + (end 9.144 2.286) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 7.874) + (end 9.144 7.366) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 10.414) + (end 9.144 9.906) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 15.494) + (end 9.144 14.986) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "USB_C_Receptacle_USB2.0_16P_0_1" + (rectangle + (start -10.16 17.78) + (end 10.16 -17.78) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (arc + (start -8.89 -3.81) + (mid -6.985 -5.7067) + (end -5.08 -3.81) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 -3.81) + (mid -6.985 -4.4423) + (end -6.35 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 -3.81) + (mid -6.985 -4.4423) + (end -6.35 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 -3.81) + (end -6.35 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -6.35 3.81) + (mid -6.985 4.4423) + (end -7.62 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -6.35 3.81) + (mid -6.985 4.4423) + (end -7.62 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -5.08 3.81) + (mid -6.985 5.7067) + (end -8.89 3.81) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -2.54 1.143) + (radius 0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 0 -5.842) + (radius 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -8.89 -3.81) (xy -8.89 3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 3.81) (xy -5.08 -3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -5.842) (xy 0 4.318) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -3.302) (xy -2.54 -0.762) (xy -2.54 0.508) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -2.032) (xy 2.54 0.508) (xy 2.54 1.778) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 4.318) (xy 0 6.858) (xy 1.27 4.318) (xy -1.27 4.318) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 1.905 1.778) + (end 3.175 3.048) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "USB_C_Receptacle_USB2.0_16P_1_1" + (pin passive line + (at 0 -22.86 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 10.16 180) + (length 5.08) + (name "CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -2.54 180) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 2.54 180) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -12.7 180) + (length 5.08) + (name "SBU1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 7.62 180) + (length 5.08) + (name "CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -5.08 180) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 0 180) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -15.24 180) + (length 5.08) + (name "SBU2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 -22.86 90) + (length 5.08) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Mechanical:MountingHole" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "H" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.175 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Mounting Hole without connection" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "mounting hole" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "MountingHole*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MountingHole_0_1" + (circle + (center 0 0) + (radius 1.27) + (stroke + (width 1.27) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 43.18 82.55) + (diameter 0) + (color 0 0 0 0) + (uuid "142b7f56-c655-4950-851f-d858f1ecc883") + ) + (junction + (at 72.39 80.01) + (diameter 0) + (color 0 0 0 0) + (uuid "bf5901c0-daf4-45af-a380-5243d8455cd9") + ) + (junction + (at 62.23 62.23) + (diameter 0) + (color 0 0 0 0) + (uuid "e0fd23ff-7ee6-4bae-9985-b56544823d46") + ) + (junction + (at 62.23 57.15) + (diameter 0) + (color 0 0 0 0) + (uuid "e893d0b8-52a7-4c2e-afa0-d0df7578cae6") + ) + (no_connect + (at 62.23 74.93) + (uuid "c919a6fc-ea93-4c0f-a4d2-e46e6b4eb69c") + ) + (no_connect + (at 62.23 72.39) + (uuid "db067a41-77e1-4f0d-ad47-4dd0df5ef7e1") + ) + (wire + (pts + (xy 115.57 76.2) (xy 129.54 76.2) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "066d6649-7da9-4473-adde-64635ca5293b") + ) + (wire + (pts + (xy 186.69 130.81) (xy 195.58 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0960173d-4d3a-4077-97d1-109a5780d489") + ) + (wire + (pts + (xy 180.34 96.52) (xy 180.34 111.76) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0b18ae4b-e508-4f6f-a23a-00f2ca64dfe7") + ) + (wire + (pts + (xy 113.03 48.26) (xy 129.54 48.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e") + ) + (wire + (pts + (xy 186.69 53.34) (xy 214.63 53.34) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "14f9e820-8d3f-4833-ac31-9b9e9028d8dc") + ) + (wire + (pts + (xy 62.23 52.07) (xy 74.93 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "19ecf363-8282-4d88-8cbf-f045ad2274f8") + ) + (wire + (pts + (xy 186.69 68.58) (xy 214.63 68.58) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "213a2af1-412b-47f4-ab3b-c5f43b6be7a6") + ) + (wire + (pts + (xy 115.57 57.15) (xy 115.57 50.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "21a8ebe3-7776-4de9-97a7-450b4f8b5c07") + ) + (wire + (pts + (xy 43.18 83.82) (xy 43.18 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "26eed24a-a6fe-4994-877d-88ca1bd022b3") + ) + (wire + (pts + (xy 186.69 43.18) (xy 214.63 43.18) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2d6718e7-f18d-444d-9792-ddf1a113460c") + ) + (wire + (pts + (xy 72.39 80.01) (xy 83.82 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "39d79b58-5a57-4b31-9f92-5bb5950bd5d6") + ) + (wire + (pts + (xy 62.23 62.23) (xy 113.03 62.23) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "44be5912-68f6-48ac-a8ab-e4a6332bc32b") + ) + (wire + (pts + (xy 149.86 96.52) (xy 149.86 111.76) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "44f248e5-7e3d-4277-981e-868f83cad8fe") + ) + (wire + (pts + (xy 116.84 133.35) (xy 129.54 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "532c6793-fcef-48e2-94ae-3d6f4bca00a7") + ) + (wire + (pts + (xy 186.69 57.15) (xy 214.63 57.15) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "573ee3b8-d265-4b77-9337-75b96bd8afff") + ) + (wire + (pts + (xy 113.03 48.26) (xy 113.03 62.23) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "59d43607-0f19-4477-88e6-8d4e79b5589b") + ) + (wire + (pts + (xy 186.69 50.8) (xy 214.63 50.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "71c77456-1405-42e3-95ed-69e629de0558") + ) + (wire + (pts + (xy 72.39 80.01) (xy 72.39 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "79fb0591-2d1a-49fe-9fbe-de0dec22a571") + ) + (wire + (pts + (xy 170.18 96.52) (xy 170.18 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7aaa8496-fa91-4cdd-a95c-0fb4934a563f") + ) + (wire + (pts + (xy 186.69 64.77) (xy 214.63 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7f3eb118-a20c-4239-b800-c9211c66847d") + ) + (wire + (pts + (xy 62.23 44.45) (xy 87.63 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "88848e1a-94f9-4abe-8312-936be7b01e84") + ) + (wire + (pts + (xy 62.23 62.23) (xy 62.23 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8914a1da-840c-4607-a046-7ced2fd9e5e7") + ) + (wire + (pts + (xy 72.39 72.39) (xy 83.82 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8a953fbc-8812-47cd-a07e-673d270bd824") + ) + (wire + (pts + (xy 242.57 64.77) (xy 255.27 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "909b030b-fa1a-4fe8-b1ee-422b4d9e23cf") + ) + (wire + (pts + (xy 186.69 72.39) (xy 214.63 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a8690438-b6c5-46ae-bc23-906e22bda6c7") + ) + (wire + (pts + (xy 43.18 82.55) (xy 46.99 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b38f69e2-7f84-451a-9316-b038cdf98445") + ) + (wire + (pts + (xy 186.69 59.69) (xy 214.63 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b4f385c6-872a-4056-a543-aa8bf444002f") + ) + (wire + (pts + (xy 39.37 82.55) (xy 43.18 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b6f04b7a-c69b-4cd7-b0d6-4a8037de5722") + ) + (wire + (pts + (xy 62.23 49.53) (xy 74.93 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b9744f9b-9a63-4a4e-a7bf-6a2450c51591") + ) + (wire + (pts + (xy 146.05 96.52) (xy 146.05 111.76) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b994142f-02ac-4881-9587-6d3df53c96d2") + ) + (wire + (pts + (xy 186.69 125.73) (xy 195.58 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bf0336c2-46fc-4f66-b979-ab598cfb2f81") + ) + (wire + (pts + (xy 62.23 57.15) (xy 62.23 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d4dd2ef9-2819-4beb-9f6e-9d30176e6ff8") + ) + (wire + (pts + (xy 116.84 130.81) (xy 129.54 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d87ec662-6851-453c-bedf-778aa8c258c8") + ) + (wire + (pts + (xy 115.57 72.39) (xy 129.54 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "dcc1b707-1c31-480b-a92c-629b791978dc") + ) + (wire + (pts + (xy 115.57 50.8) (xy 129.54 50.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e83e0227-ac0f-4180-82bd-68d3a7b56476") + ) + (wire + (pts + (xy 186.69 45.72) (xy 214.63 45.72) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f144a97d-c3f0-423f-b0a9-3f7dbc42478b") + ) + (wire + (pts + (xy 62.23 57.15) (xy 115.57 57.15) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f1f3a160-e530-44d2-9a4b-2d9f99bce435") + ) + (wire + (pts + (xy 186.69 76.2) (xy 214.63 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fa92842d-37e8-4687-b4f4-0cfd415b8d84") + ) + (text "Connectors\n-------\nEthernet\nSDCARD\n40way RPI\nJumpers\nFan\nBattery" + (exclude_from_sim no) + (at 150.876 147.066 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3cfcbcc7-4f45-46ab-82a8-c414c7972161") + ) + (text "Connectors\n------\nM2 MKey" + (exclude_from_sim no) + (at 228.092 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4d609e7c-74c9-4ae9-a26d-946ff00c167d") + ) + (text "Discharge Resistor\nNeeded by some\nType C PSUs" + (exclude_from_sim no) + (at 99.314 48.514 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "710a1632-709e-4159-b2c0-e34b4ead79a5") + ) + (text "TypeC Power connector" + (exclude_from_sim no) + (at 36.068 33.528 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "83a16201-aa87-4b79-ab8b-ea9be47b79ef") + ) + (text "Connectors\n-------\nHDMI 0\nHDMI 1\nCSI/DSI 0\nCSI/DSI 1" + (exclude_from_sim no) + (at 148.59 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a501555e-bbc7-4b58-ad89-28a0cd3dd6d0") + ) + (label "+5v" + (at 72.39 72.39 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "09f3f04e-f789-44e1-b801-79a009ead9da") + ) + (label "CC1" + (at 119.38 130.81 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "28c76331-1bb2-429e-88ba-1bacab9de126") + ) + (label "CC2" + (at 119.38 133.35 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "472fd7ea-ce2f-4e97-bffc-46e1b7b99dbe") + ) + (label "+5v" + (at 246.38 64.77 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4e66a44f-7fa6-4e16-bf9b-62ec864301a5") + ) + (label "+5v" + (at 189.23 125.73 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "55992e35-fe7b-468a-9b7a-1e4dc931b904") + ) + (label "+5v" + (at 120.015 72.39 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5740c959-93d8-47fd-8f68-62f0109e753d") + ) + (label "USB2_P" + (at 74.93 62.23 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "78e172c5-2c2b-4fcb-8b42-831736ce03f0") + ) + (label "CC1" + (at 64.77 49.53 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7d5a2b2f-0ea3-4086-b538-65807005ae2a") + ) + (label "USB2_N" + (at 74.93 57.15 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "8fb87edd-d458-4791-a78f-346acfa66542") + ) + (label "+3.3v" + (at 189.23 130.81 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a06e8e78-f567-42e6-b645-013b1073ca31") + ) + (label "+3.3v" + (at 120.015 76.2 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c3c93de0-69b1-4a04-8e0b-d78caf487c63") + ) + (label "CC2" + (at 64.77 52.07 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ce8037f3-217c-4454-a069-39d88cd6d016") + ) + (label "+5v" + (at 64.77 44.45 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d4106691-9af4-4d1a-b5eb-d17aeb47a3f6") + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 22.86 180.975 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e3b1a1d") + (property "Reference" "H4" + (at 25.4 179.832 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 25.4 182.118 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MountingHole_2.7mm_M2.5_DIN965" + (at 22.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 22.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 22.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 22.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 22.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 22.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 22.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M2.5 mounting hole" + (at 22.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 22.86 175.895 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e3b25a9") + (property "Reference" "H3" + (at 25.4 174.752 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 25.4 177.038 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MountingHole_2.7mm_M2.5_DIN965" + (at 22.86 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 22.86 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 22.86 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 22.86 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 22.86 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 22.86 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 22.86 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M2.5 mounting hole" + (at 22.86 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 22.86 170.815 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e3b2cb2") + (property "Reference" "H2" + (at 25.4 169.672 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 25.4 171.958 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MountingHole_2.7mm_M2.5_DIN965" + (at 22.86 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 22.86 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 22.86 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 22.86 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 22.86 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 22.86 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 22.86 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M2.5 mounting hole" + (at 22.86 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 22.86 165.735 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e3b2f75") + (property "Reference" "H1" + (at 25.4 164.592 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 25.4 166.878 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MountingHole_2.7mm_M2.5_DIN965" + (at 22.86 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 22.86 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 22.86 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 22.86 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 22.86 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 22.86 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 22.86 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M2.5 mounting hole" + (at 22.86 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 43.815 165.735 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e3b32fa") + (property "Reference" "H5" + (at 46.355 164.592 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 46.355 166.878 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MountingHole_2.7mm_M2.5_DIN965" + (at 43.815 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 43.815 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 43.815 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 43.815 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 43.815 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 43.815 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 43.815 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M2.5 mounting hole" + (at 43.815 165.735 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 43.815 180.975 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e3b330c") + (property "Reference" "H8" + (at 46.355 179.832 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 46.355 182.118 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MountingHole_2.7mm_M2.5_DIN965" + (at 43.815 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 43.815 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 43.815 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 43.815 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 43.815 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 43.815 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 43.815 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M2.5 mounting hole" + (at 43.815 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 43.815 175.895 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e3b331e") + (property "Reference" "H7" + (at 46.355 174.752 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 46.355 177.038 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MountingHole_2.7mm_M2.5_DIN965" + (at 43.815 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 43.815 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 43.815 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 43.815 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 43.815 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 43.815 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 43.815 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M2.5 mounting hole" + (at 43.815 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 43.815 170.815 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e3b3330") + (property "Reference" "H6" + (at 46.355 169.672 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 46.355 171.958 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MountingHole_2.7mm_M2.5_DIN965" + (at 43.815 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 43.815 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 43.815 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 43.815 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 43.815 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 43.815 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 43.815 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M2.5 mounting hole" + (at 43.815 170.815 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 87.63 52.07 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0f587d05-4aa1-46ea-a0c4-07798c4d83f9") + (property "Reference" "#PWR031" + (at 87.63 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 87.757 56.4642 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 87.63 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 87.63 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 87.63 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c7f90bb2-0431-4d78-adca-17ef654f711b") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR031") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 83.82 76.2 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3c5f4bb0-04d2-46c1-9c7f-c06460df6a62") + (property "Reference" "C18" + (at 86.741 75.0316 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 86.741 77.343 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" + (at 84.7852 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" + (at 83.82 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 83.82 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 83.82 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2611911" + (at 83.82 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RM EMK105 B7104KV-F" + (at 83.82 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "TAIYO YUDEN EUROPE GMBH" + (at 83.82 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "110091611" + (at 83.82 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" + (at 83.82 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "291ccd32-a37d-4fac-b11d-c12157e045a7") + ) + (pin "2" + (uuid "d83594dc-e88c-4a0a-8e24-5cdfbaac4255") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "C18") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:USB_C_Receptacle_USB2.0_16P") + (at 46.99 59.69 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "97d07611-189f-4c78-a601-68743dc1d983") + (property "Reference" "J11" + (at 46.99 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "USB_C_Receptacle_USB2.0" + (at 46.99 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_USB:USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal" + (at 50.8 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" + (at 50.8 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 46.99 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "USBF31-0171" + (at 46.99 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "USBF31-0171" + (at 46.99 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "MTCONN" + (at 46.99 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "USBC USB2 data and power connector" + (at 46.99 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "A1" + (uuid "fdf87c87-2aff-495c-a0ce-0704592f00f8") + ) + (pin "A12" + (uuid "1225c31b-5aa5-476d-9ffe-f4363f88ba1b") + ) + (pin "A4" + (uuid "11b4082e-6643-4bd1-b1b7-e03eb59b4036") + ) + (pin "A5" + (uuid "363f2685-0414-4375-bec6-f880ae7df0e9") + ) + (pin "A6" + (uuid "aa6866ec-e6ca-4f00-90f5-2e7828451b2d") + ) + (pin "A7" + (uuid "b485a3c8-1661-46c2-a7bb-653a1cd7e2c4") + ) + (pin "A8" + (uuid "7ccabdf1-f918-446c-8096-2f1259971a32") + ) + (pin "A9" + (uuid "cf9f7eed-4497-4917-8463-9f268f832fee") + ) + (pin "B1" + (uuid "96ca13c5-8648-46b1-8e8b-3a60911609c7") + ) + (pin "B12" + (uuid "c4f6d189-b8f2-4c82-a8cc-b05c36f261a6") + ) + (pin "B4" + (uuid "74034120-6d0a-4565-8f62-35c865c1ca9e") + ) + (pin "B5" + (uuid "8c8a9e1a-325a-4fd2-aa94-bcf4a72cb62b") + ) + (pin "B6" + (uuid "10904109-2072-4f5e-9581-12c97e37134f") + ) + (pin "B7" + (uuid "0066139c-d638-4dcf-8af9-25b5585967e3") + ) + (pin "B8" + (uuid "3dd824a5-6584-4178-b78b-53f1a01f7d25") + ) + (pin "B9" + (uuid "5f8aacc9-9bae-4abd-9a47-260ac0d2084a") + ) + (pin "S1" + (uuid "50951762-fdee-419e-aeb0-b7310ba2514e") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "J11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 87.63 48.26 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b30c000d-795b-488f-8e69-a058391ab578") + (property "Reference" "R9" + (at 83.058 46.355 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2.2K 1%" + (at 77.978 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 85.852 48.26 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 87.63 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 87.63 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 87.63 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "" + (at 87.63 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "" + (at 87.63 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "" + (at 87.63 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 2.2K M1005 1% 63mW" + (at 87.63 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "" + (at 87.63 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "31bcfe0a-bb6a-4e1b-98c4-465ef952edcd") + ) + (pin "2" + (uuid "b96ce79e-de64-4bb5-8b7f-4429c99aa19f") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "R9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 72.39 76.2 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cf24492d-8526-4d53-a0eb-2486aa3ca298") + (property "Reference" "C9" + (at 75.311 75.0316 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 75.311 77.343 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" + (at 73.3552 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" + (at 72.39 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 72.39 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 72.39 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2611911" + (at 72.39 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RM EMK105 B7104KV-F" + (at 72.39 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "TAIYO YUDEN EUROPE GMBH" + (at 72.39 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "110091611" + (at 72.39 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" + (at 72.39 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b8d7b860-3ed6-457c-a4fe-755e37bbede8") + ) + (pin "2" + (uuid "6f6e9283-9dfc-4003-89e3-ea1d47079c07") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "C9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 43.18 83.82 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d6b70213-377b-49d4-af00-2b8f315d1786") + (property "Reference" "#PWR02" + (at 43.18 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 43.307 88.2142 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 43.18 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 43.18 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 43.18 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cda5947c-c30d-4019-9c99-4366d9097258") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 72.39 82.55 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "fc0d6f0d-075c-4218-becf-ed01d64d2241") + (property "Reference" "#PWR013" + (at 72.39 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 72.517 86.9442 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 72.39 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 72.39 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 72.39 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0dbfcac6-1605-43aa-90dc-4a5b4c38b7be") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (sheet + (at 129.54 111.76) + (size 57.15 38.735) + (stroke + (width 0.1524) + (type solid) + (color 132 0 132 1) + ) + (fill + (color 255 255 255 0.0000) + ) + (uuid "00000000-0000-0000-0000-00005cff706a") + (property "Sheetname" "CM5_GPIO ( Ethernet, GPIO, SDCARD)" + (at 129.54 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Sheetfile" "CM5_GPIO.kicad_sch" + (at 129.54 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (pin "ID_SC" output + (at 149.86 111.76 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "ac264c30-3e9a-4be2-b97a-9949b68bd497") + ) + (pin "ID_SD" output + (at 146.05 111.76 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "54365317-1355-4216-bb75-829375abc4ec") + ) + (pin "+5v" input + (at 186.69 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "efeac2a2-7682-4dc7-83ee-f6f1b23da506") + ) + (pin "+3.3v" output + (at 186.69 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "5fc27c35-3e1c-4f96-817c-93b5570858a6") + ) + (pin "GPIO_VREF" output + (at 180.34 111.76 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "b1086f75-01ba-4188-8d36-75a9e2828ca9") + ) + (pin "CC1" output + (at 129.54 130.81 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "79a90b88-0173-4019-b6c5-e1009f0c139f") + ) + (pin "USBOTG" output + (at 170.18 111.76 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d6d4dc9c-0e44-420e-8240-37c70ea3c763") + ) + (pin "CC2" output + (at 129.54 133.35 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "37882526-c078-4e94-a0b9-fffe82b129e1") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (page "3") + ) + ) + ) + ) + (sheet + (at 129.54 34.29) + (size 57.15 62.23) + (stroke + (width 0.1524) + (type solid) + (color 132 0 132 1) + ) + (fill + (color 255 255 255 0.0000) + ) + (uuid "00000000-0000-0000-0000-00005cff70b1") + (property "Sheetname" "CM5_HighSpeed" + (at 129.54 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Sheetfile" "CM5_HighSpeed.kicad_sch" + (at 129.54 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (pin "USB2_N" bidirectional + (at 129.54 50.8 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "704d6d51-bb34-4cbf-83d8-841e208048d8") + ) + (pin "USB2_P" bidirectional + (at 129.54 48.26 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "0eaa98f0-9565-4637-ace3-42a5231b07f7") + ) + (pin "ID_SC" input + (at 149.86 96.52 270) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "181abe7a-f941-42b6-bd46-aaa3131f90fb") + ) + (pin "ID_SD" input + (at 146.05 96.52 270) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "ce83728b-bebd-48c2-8734-b6a50d837931") + ) + (pin "+5v" input + (at 129.54 72.39 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "0f22151c-f260-4674-b486-4710a2c42a55") + ) + (pin "PCIE_CLK_P" output + (at 186.69 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "fe8d9267-7834-48d6-a191-c8724b2ee78d") + ) + (pin "PCIE_CLK_N" output + (at 186.69 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "0b21a65d-d20b-411e-920a-75c343ac5136") + ) + (pin "PCIE_TX_P" output + (at 186.69 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "3cd1bda0-18db-417d-b581-a0c50623df68") + ) + (pin "PCIE_TX_N" output + (at 186.69 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d57dcfee-5058-4fc2-a68b-05f9a48f685b") + ) + (pin "PCIE_nRST" output + (at 186.69 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "03c52831-5dc5-43c5-a442-8d23643b46fb") + ) + (pin "PCIE_RX_P" input + (at 186.69 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5") + ) + (pin "PCIE_RX_N" input + (at 186.69 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "29e78086-2175-405e-9ba3-c48766d2f50c") + ) + (pin "PCIE_nCLKREQ" input + (at 186.69 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "94a873dc-af67-4ef9-8159-1f7c93eeb3d7") + ) + (pin "+3.3v" input + (at 129.54 76.2 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "4c8eb964-bdf4-44de-90e9-e2ab82dd5313") + ) + (pin "USBOTG_ID" input + (at 170.18 96.52 270) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "aa14c3bd-4acc-4908-9d28-228585a22a9d") + ) + (pin "GPIO_VREF" input + (at 180.34 96.52 270) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "9bb20359-0f8b-45bc-9d38-6626ed3a939d") + ) + (pin "PCIE_PWR_EN" output + (at 186.69 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "e445000d-94a3-4ed1-b023-6aae972d0a39") + ) + (pin "PCIE_nWAKE" input + (at 186.69 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "31cb0f66-393a-491f-95aa-c50644299a5d") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (page "2") + ) + ) + ) + ) + (sheet + (at 214.63 34.29) + (size 27.94 52.07) + (fields_autoplaced yes) + (stroke + (width 0.152) + (type solid) + (color 132 0 132 1) + ) + (fill + (color 255 255 255 0.0000) + ) + (uuid "00000000-0000-0000-0000-00005ed4bb5b") + (property "Sheetname" "PCIe-M2" + (at 214.63 33.5786 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Sheetfile" "PCIe-M2.kicad_sch" + (at 214.63 86.9444 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left top) + ) + ) + (pin "PCIE_CLK_P" input + (at 214.63 57.15 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "ee27d19c-8dca-4ac8-a760-6dfd54d28071") + ) + (pin "PCIE_CLK_N" input + (at 214.63 59.69 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "9b0a1687-7e1b-4a04-a30b-c27a072a2949") + ) + (pin "PCIE_TX_P" input + (at 214.63 43.18 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b") + ) + (pin "PCIE_TX_N" input + (at 214.63 45.72 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "9e1b837f-0d34-4a18-9644-9ee68f141f46") + ) + (pin "PCIE_nCLKREQ" output + (at 214.63 68.58 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "63ff1c93-3f96-4c33-b498-5dd8c33bccc0") + ) + (pin "PCIE_nRST" input + (at 214.63 64.77 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "b88717bd-086f-46cd-9d3f-0396009d0996") + ) + (pin "PCIE_RX_P" output + (at 214.63 50.8 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "61fe293f-6808-4b7f-9340-9aaac7054a97") + ) + (pin "PCIE_RX_N" output + (at 214.63 53.34 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "2f215f15-3d52-4c91-93e6-3ea03a95622f") + ) + (pin "+5v" input + (at 242.57 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "0217dfc4-fc13-4699-99ad-d9948522648e") + ) + (pin "PCIE_PWR_EN" input + (at 214.63 72.39 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "97775b76-6935-4c0f-9fc9-91db55c7f4d2") + ) + (pin "PCIE_nWAKE" output + (at 214.63 76.2 180) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "29caf48f-b190-47ea-a0b4-a078d43caa04") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (page "4") + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) +) diff --git a/carrier/CM5IO.kicad_sym b/carrier/CM5IO.kicad_sym new file mode 100644 index 0000000..8eea764 --- /dev/null +++ b/carrier/CM5IO.kicad_sym @@ -0,0 +1,10220 @@ +(kicad_symbol_lib + (version 20231120) + (generator "kicad_symbol_editor") + (generator_version "8.0") + (symbol "74LVC1G07_copy" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -2.54 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "74LVC1G07_copy" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-353_SC-70-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single Buffer Gate w/ Open Drain, Low-Voltage CMOS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Single Gate Buff LVC CMOS Open Drain" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT* SG-*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "74LVC1G07_copy_0_1" + (polyline + (pts + (xy -2.54 -0.635) (xy -1.27 -0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.81 2.54) (xy -3.81 -2.54) (xy 2.54 0) (xy -3.81 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 0.635) (xy -2.54 0) (xy -1.905 -0.635) (xy -1.27 0) (xy -1.905 0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "74LVC1G07_copy_1_1" + (pin no_connect line + (at -6.35 -2.54 0) + (length 2.54) + (name "nc" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 0 0) + (length 3.81) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 0 -2.54 270) + (length 0) + (name "GND" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin open_collector line + (at 6.35 0 180) + (length 3.81) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 0 2.54 90) + (length 0) + (name "VCC" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + ) + (symbol "AP2553W6" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP2553W6" + (at -3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP255x.pdf" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "AP2553W6-7DICT-ND" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AP2553W6_0_0" + (pin power_in line + (at -8.89 2.54 0) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -8.89 0 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -8.89 -2.54 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 7.62 -2.54 180) + (length 2.54) + (name "nFault" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (name "ILIM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 2.54 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "AP2553W6_0_1" + (rectangle + (start -6.35 5.08) + (end 5.08 -5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "AP3441SHE-7B" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -6.35 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP3441SHE-7B" + (at 0 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_DFN_QFN:DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm" + (at 1.27 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP3441-L.pdf" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AP3441SHE-7B_0_1" + (rectangle + (start -6.35 6.35) + (end 6.35 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "AP3441SHE-7B_1_1" + (pin passive line + (at -8.89 5.08 0) + (length 2.54) + (name "FB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at -8.89 2.54 0) + (length 2.54) + (name "PG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 0 0) + (length 2.54) + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 -2.54 0) + (length 2.54) + (name "PGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 8.89 -2.54 180) + (length 2.54) + (name "nc" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 8.89 0 180) + (length 2.54) + (name "LX" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 8.89 2.54 180) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 5.08 180) + (length 2.54) + (name "SGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 1.27 -6.35 90) + (length 2.54) + (name "PAD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "ASEK-32.768KHZ-L-R-T" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -5.08 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ASEK-32.768KHZ-L-R-T" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" + (at 1.27 -8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://abracon.com/Oscillators/ASEK.pdf" + (at 0 -11.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ASEK-32.768KHZ-L-R-T_0_1" + (rectangle + (start -6.35 5.08) + (end 6.35 -5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "ASEK-32.768KHZ-L-R-T_1_1" + (pin input line + (at -8.89 3.81 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 -3.81 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 8.89 -3.81 180) + (length 2.54) + (name "Out" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 3.81 180) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Bus_M.2_Socket_M" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -22.86 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Bus_M.2_Socket_M" + (at 30.988 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "M.2 Socket 3 Mechanical Key M" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "M2 NGNF PCI-E" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "*M*2*M*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Bus_M.2_Socket_M_0_1" + (rectangle + (start -22.86 45.72) + (end 22.86 -45.72) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "Bus_M.2_Socket_M_1_1" + (pin power_in line + (at -20.32 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 -10.16 180) + (length 2.54) + (name "DAS/~{DSS}/~{LED1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 0 0) + (length 2.54) + (name "PERn3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -3.81 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 2.54 0) + (length 2.54) + (name "PERp3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -1.27 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -12.7 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 1.27 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 5.08 0) + (length 2.54) + (name "PETn2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 3.81 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 7.62 0) + (length 2.54) + (name "PETp2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 2.54 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -10.16 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 5.08 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 10.16 0) + (length 2.54) + (name "PERn2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 7.62 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 12.7 0) + (length 2.54) + (name "PERp2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 10.16 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 12.7 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 15.24 0) + (length 2.54) + (name "PETn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -17.78 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 15.24 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 17.78 0) + (length 2.54) + (name "PETp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 17.78 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 20.32 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 20.32 0) + (length 2.54) + (name "PERn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 22.86 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 22.86 0) + (length 2.54) + (name "PERp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -22.86 0) + (length 2.54) + (name "DEVSLP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -6.35 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 25.4 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 25.4 0) + (length 2.54) + (name "PETn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 27.94 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 27.94 0) + (length 2.54) + (name "PETp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 30.48 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 33.02 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 30.48 0) + (length 2.54) + (name "PERn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 35.56 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 33.02 0) + (length 2.54) + (name "PERp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -5.08 0) + (length 2.54) + (name "PETn3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 43.18 0) + (length 2.54) + (name "~{PERST}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 40.64 0) + (length 2.54) + (name "~{CLKREQ}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -38.1 0) + (length 2.54) + (name "REFCLKn" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 38.1 0) + (length 2.54) + (name "~{PEWAKE}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -35.56 0) + (length 2.54) + (name "REFCLKp" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 38.1 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 5.08 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 40.64 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 -2.54 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 -5.08 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 25.4 -27.94 180) + (length 2.54) + (name "SUSCLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -20.32 180) + (length 2.54) + (name "PEDET" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "69" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -2.54 0) + (length 2.54) + (name "PETp3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 6.35 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "70" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 7.62 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "71" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "72" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 10.16 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "73" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 11.43 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "74" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 12.7 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "75" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 0 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -15.24 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -39.37 180) + (length 2.54) + (name "GND2230" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -36.83 180) + (length 2.54) + (name "GND2242" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -34.29 180) + (length 2.54) + (name "GND2260" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -31.75 180) + (length 2.54) + (name "GND2280" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -41.91 180) + (length 2.54) + (name "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -44.45 180) + (length 2.54) + (name "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Module" + (at 113.03 -68.58 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ComputeModule5-CM5" + (at 140.97 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "CM5IO:Raspberry-Pi-5-Compute-Module" + (at 142.24 -26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 142.24 -26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RaspberryPi Compute module 5 " + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Amphenol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field5" "2x 10164227-1001A1RLF" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "ComputeModule5-CM5_1_0" + (text "GPIO" + (at 0 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5_1_1" + (rectangle + (start -30.48 -71.12) + (end 25.4 58.42) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "600mA Max" + (at -8.89 -53.34 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "600mA Max" + (at -8.89 -48.26 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "NB SD signals are only available" + (at -1.27 -27.94 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "on modules without eMMC" + (at -1.27 -30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin power_in line + (at 27.94 55.88 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 45.72 0) + (length 2.54) + (name "Ethernet_Pair0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -68.58 0) + (length 2.54) + (name "CAM_GPIO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "100" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 43.18 180) + (length 2.54) + (name "Ethernet_Pair2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 43.18 0) + (length 2.54) + (name "Ethernet_Pair0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 40.64 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 40.64 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 38.1 180) + (length 2.54) + (name "Ethernet_nLED3(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -33.02 38.1 0) + (length 2.54) + (name "FAN_TACHO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 35.56 180) + (length 2.54) + (name "Ethernet_nLED2(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -33.02 35.56 0) + (length 2.54) + (name "Ethernet_SYNC_OUT(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 33.02 180) + (length 2.54) + (name "FAN_PWM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 55.88 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 33.02 0) + (length 2.54) + (name "EEPROM_nWP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 27.94 30.48 180) + (length 2.54) + (name "LED_nACT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 30.48 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 27.94 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 27.94 0) + (length 2.54) + (name "GPIO26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 25.4 180) + (length 2.54) + (name "GPIO21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 25.4 0) + (length 2.54) + (name "GPIO19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 22.86 180) + (length 2.54) + (name "GPIO20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 22.86 0) + (length 2.54) + (name "GPIO13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 20.32 180) + (length 2.54) + (name "GPIO16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 53.34 180) + (length 2.54) + (name "Ethernet_Pair3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 20.32 0) + (length 2.54) + (name "GPIO6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 17.78 180) + (length 2.54) + (name "GPIO12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 17.78 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 15.24 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 15.24 0) + (length 2.54) + (name "GPIO5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 12.7 180) + (length 2.54) + (name "ID_SC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 12.7 0) + (length 2.54) + (name "ID_SD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 10.16 180) + (length 2.54) + (name "GPIO7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 10.16 0) + (length 2.54) + (name "GPIO11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 7.62 180) + (length 2.54) + (name "GPIO8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 53.34 0) + (length 2.54) + (name "Ethernet_Pair1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 7.62 0) + (length 2.54) + (name "GPIO9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 5.08 180) + (length 2.54) + (name "GPIO25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 5.08 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 2.54 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 2.54 0) + (length 2.54) + (name "GPIO10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 0 180) + (length 2.54) + (name "GPIO24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 0 0) + (length 2.54) + (name "GPIO22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -2.54 180) + (length 2.54) + (name "GPIO23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -2.54 0) + (length 2.54) + (name "GPIO27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -5.08 180) + (length 2.54) + (name "GPIO18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 50.8 180) + (length 2.54) + (name "Ethernet_Pair3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -5.08 0) + (length 2.54) + (name "GPIO17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -7.62 180) + (length 2.54) + (name "GPIO15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -7.62 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -10.16 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -10.16 0) + (length 2.54) + (name "GPIO4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -12.7 180) + (length 2.54) + (name "GPIO14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -12.7 0) + (length 2.54) + (name "GPIO3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -15.24 180) + (length 2.54) + (name "SD_CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -15.24 0) + (length 2.54) + (name "GPIO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -17.78 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "59" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 50.8 0) + (length 2.54) + (name "Ethernet_Pair1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -17.78 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "60" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -20.32 180) + (length 2.54) + (name "SD_DAT3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "61" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -20.32 0) + (length 2.54) + (name "SD_CMD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "62" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -22.86 180) + (length 2.54) + (name "SD_DAT0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "63" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -22.86 0) + (length 2.54) + (name "SD_DAT5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "64" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -25.4 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "65" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -25.4 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "66" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -27.94 180) + (length 2.54) + (name "SD_DAT1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -27.94 0) + (length 2.54) + (name "SD_DAT4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -30.48 180) + (length 2.54) + (name "SD_DAT2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "69" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 48.26 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -30.48 0) + (length 2.54) + (name "SD_DAT7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "70" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -33.02 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "71" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -33.02 0) + (length 2.54) + (name "SD_DAT6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "72" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -35.56 180) + (length 2.54) + (name "SD_VDD_Override" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "73" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -35.56 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "74" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 -38.1 180) + (length 2.54) + (name "SD_PWR_ON" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "75" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -38.1 0) + (length 2.54) + (name "VBAT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "76" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -40.64 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "77" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -40.64 0) + (length 2.54) + (name "GPIO_VREF(1.8v/3.3v_Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "78" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -43.18 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "79" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 48.26 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -43.18 0) + (length 2.54) + (name "SCL0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "80" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -45.72 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "81" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -45.72 0) + (length 2.54) + (name "SDA0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "82" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -48.26 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "83" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -33.02 -48.26 0) + (length 2.54) + (name "+3.3v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "84" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -50.8 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "85" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -50.8 0) + (length 2.54) + (name "+3.3v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "86" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -53.34 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "87" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -33.02 -53.34 0) + (length 2.54) + (name "+1.8v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "88" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -55.88 180) + (length 2.54) + (name "WiFi_nDisable" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "89" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 45.72 180) + (length 2.54) + (name "Ethernet_Pair2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -55.88 0) + (length 2.54) + (name "+1.8v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "90" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -58.42 180) + (length 2.54) + (name "BT_nDisable" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "91" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -58.42 0) + (length 2.54) + (name "PWR_BUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "92" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -60.96 180) + (length 2.54) + (name "nRPIBOOT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "93" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -60.96 0) + (length 2.54) + (name "CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "94" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 -63.5 180) + (length 2.54) + (name "LED_nPWR" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "95" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -63.5 0) + (length 2.54) + (name "CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "96" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -66.04 180) + (length 2.54) + (name "CAM_GPIO0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "97" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -66.04 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "98" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -68.58 180) + (length 2.54) + (name "PMIC_ENABLE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "99" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5_2_1" + (rectangle + (start 114.3 -66.04) + (end 165.1 63.5) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "High Speed Serial" + (at 140.97 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin input line + (at 170.18 60.96 180) + (length 5.08) + (name "USB_OTG_ID" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "101" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 60.96 0) + (length 5.08) + (name "PCIe_nCLKREQ" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "102" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 58.42 180) + (length 5.08) + (name "USB2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "103" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 58.42 0) + (length 5.08) + (name "PCIE_nWAKE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "104" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 55.88 180) + (length 5.08) + (name "USB2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "105" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 55.88 0) + (length 5.08) + (name "PCIE_PWR_EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "106" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 53.34 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "107" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 53.34 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "108" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 50.8 180) + (length 5.08) + (name "PCIe_nRST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "109" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 50.8 0) + (length 5.08) + (name "PCIe_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "110" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 48.26 180) + (length 5.08) + (name "VBUS_EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "111" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 48.26 0) + (length 5.08) + (name "PCIe_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "112" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 45.72 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "113" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 45.72 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "114" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 43.18 180) + (length 5.08) + (name "MIPI0_D0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "115" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 43.18 0) + (length 5.08) + (name "PCIe_RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "116" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 40.64 180) + (length 5.08) + (name "MIPI0_D0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "117" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 40.64 0) + (length 5.08) + (name "PCIe_RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "118" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 38.1 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "119" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 38.1 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "120" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 35.56 180) + (length 5.08) + (name "MIPI0_D1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "121" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 35.56 0) + (length 5.08) + (name "PCIe_TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "122" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 33.02 180) + (length 5.08) + (name "MIPI0_D1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "123" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 33.02 0) + (length 5.08) + (name "PCIe_TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "124" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "125" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 30.48 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "126" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 27.94 180) + (length 5.08) + (name "MIPI0_C_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "127" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 27.94 0) + (length 5.08) + (name "USB3-0-RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "128" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 25.4 180) + (length 5.08) + (name "MIPI0_C_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "129" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 25.4 0) + (length 5.08) + (name "USB3-0-RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "130" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 22.86 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "131" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 22.86 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "132" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 20.32 180) + (length 5.08) + (name "MIPI0_D2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "133" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 109.22 20.32 0) + (length 5.08) + (name "USB3-0-D_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "134" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 17.78 180) + (length 5.08) + (name "MIPI0_D2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "135" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 109.22 17.78 0) + (length 5.08) + (name "USB3-0-D_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "136" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 15.24 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "137" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 15.24 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "138" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 12.7 180) + (length 5.08) + (name "MIPI0_D3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "139" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 12.7 0) + (length 5.08) + (name "USB3-0-TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "140" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 10.16 180) + (length 5.08) + (name "MIPI0_D3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "141" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 10.16 0) + (length 5.08) + (name "USB3-0-TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "142" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 7.62 180) + (length 5.08) + (name "HDMI1_HOTPLUG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "143" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 7.62 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "144" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 170.18 5.08 180) + (length 5.08) + (name "HDMI1_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "145" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 5.08 0) + (length 5.08) + (name "HDMI1_TX2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "146" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 2.54 180) + (length 5.08) + (name "HDMI1_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "147" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 2.54 0) + (length 5.08) + (name "HDMI1_TX2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "148" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 0 180) + (length 5.08) + (name "HDMI1_CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "149" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 0 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "150" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 -2.54 180) + (length 5.08) + (name "HDMI0_CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "151" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -2.54 0) + (length 5.08) + (name "HDMI1_TX1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "152" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -5.08 180) + (length 5.08) + (name "HDMI0_HOTPLUG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "153" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -5.08 0) + (length 5.08) + (name "HDMI1_TX1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "154" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -7.62 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "155" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -7.62 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "156" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -10.16 180) + (length 5.08) + (name "USB3-1-RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "157" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -10.16 0) + (length 5.08) + (name "HDMI1_TX0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "158" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -12.7 180) + (length 5.08) + (name "USB3-1-RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "159" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -12.7 0) + (length 5.08) + (name "HDMI1_TX0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "160" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -15.24 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "161" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -15.24 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "162" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 -17.78 180) + (length 5.08) + (name "USB3-1-D_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "163" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -17.78 0) + (length 5.08) + (name "HDMI1_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "164" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 -20.32 180) + (length 5.08) + (name "USB3-1-D_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "165" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -20.32 0) + (length 5.08) + (name "HDMI1_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "166" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -22.86 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "167" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -22.86 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "168" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -25.4 180) + (length 5.08) + (name "USB3-1-TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "169" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -25.4 0) + (length 5.08) + (name "HDMI0_TX2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "170" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -27.94 180) + (length 5.08) + (name "USB3-1-TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "171" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -27.94 0) + (length 5.08) + (name "HDMI0_TX2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "172" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "173" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -30.48 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "174" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -33.02 180) + (length 5.08) + (name "MIPI1_D0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "175" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -33.02 0) + (length 5.08) + (name "HDMI0_TX1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "176" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -35.56 180) + (length 5.08) + (name "MIPI1_D0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "177" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -35.56 0) + (length 5.08) + (name "HDMI0_TX1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "178" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -38.1 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "179" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -38.1 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "180" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -40.64 180) + (length 5.08) + (name "MIPI1_D1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "181" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -40.64 0) + (length 5.08) + (name "HDMI0_TX0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "182" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -43.18 180) + (length 5.08) + (name "MIPI1_D1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "183" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -43.18 0) + (length 5.08) + (name "HDMI0_TX0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "184" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -45.72 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "185" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -45.72 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "186" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -48.26 180) + (length 5.08) + (name "MIPI1_C_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "187" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -48.26 0) + (length 5.08) + (name "HDMI0_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "188" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -50.8 180) + (length 5.08) + (name "MIPI1_C_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "189" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -50.8 0) + (length 5.08) + (name "HDMI0_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "190" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -53.34 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "191" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -53.34 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "192" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -55.88 180) + (length 5.08) + (name "MIPI1_D2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "193" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -55.88 0) + (length 5.08) + (name "MIPI1_D3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "194" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -58.42 180) + (length 5.08) + (name "MIPI1_D2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "195" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -58.42 0) + (length 5.08) + (name "MIPI1_D3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "196" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -60.96 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "197" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -60.96 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "198" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 170.18 -63.5 180) + (length 5.08) + (name "HDMI0_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "199" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 109.22 -63.5 0) + (length 5.08) + (name "HDMI0_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "200" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "HDMI_A_1.4" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -6.35 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "HDMI_A_1.4" + (at 10.16 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0.635 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://en.wikipedia.org/wiki/HDMI" + (at 0.635 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "HDMI 1.4+ type A connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "hdmi conn" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "HDMI*A*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "HDMI_A_1.4_0_0" + (polyline + (pts + (xy 8.128 16.51) (xy 8.128 18.034) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 16.51) (xy 0 18.034) (xy 0 17.272) (xy 1.905 17.272) (xy 1.905 18.034) (xy 1.905 16.51) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.667 18.034) (xy 4.318 18.034) (xy 4.572 17.78) (xy 4.572 16.764) (xy 4.318 16.51) (xy 2.667 16.51) + (xy 2.667 17.272) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "HDMI_A_1.4_0_1" + (rectangle + (start -7.62 25.4) + (end 10.16 -25.4) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 2.54 8.89) (xy 3.81 8.89) (xy 5.08 6.35) (xy 5.08 -5.715) (xy 3.81 -8.255) (xy 2.54 -8.255) + (xy 2.54 8.89) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 5.334 16.51) (xy 5.334 18.034) (xy 6.35 18.034) (xy 6.35 16.51) (xy 6.35 18.034) (xy 7.112 18.034) + (xy 7.366 17.78) (xy 7.366 16.51) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 12.7) (xy 0 -12.7) (xy 3.81 -12.7) (xy 5.08 -10.16) (xy 7.62 -8.89) (xy 7.62 8.89) (xy 5.08 10.16) + (xy 3.81 12.7) (xy 0 12.7) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "HDMI_A_1.4_1_1" + (pin passive line + (at -10.16 20.32 0) + (length 2.54) + (name "D2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 5.08 0) + (length 2.54) + (name "CK+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -27.94 90) + (length 2.54) + (name "CKS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 2.54 0) + (length 2.54) + (name "CK-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -10.16 -2.54 0) + (length 2.54) + (name "CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -15.24 0) + (length 2.54) + (name "UTILITY/HEAC+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -7.62 0) + (length 2.54) + (name "SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -10.16 -10.16 0) + (length 2.54) + (name "SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 5.08 -27.94 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 27.94 270) + (length 2.54) + (name "+5V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -17.78 0) + (length 2.54) + (name "HPD/HEAC-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -27.94 90) + (length 2.54) + (name "D2S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 17.78 0) + (length 2.54) + (name "D2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 15.24 0) + (length 2.54) + (name "D1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -27.94 90) + (length 2.54) + (name "D1S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 12.7 0) + (length 2.54) + (name "D1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 10.16 0) + (length 2.54) + (name "D0+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -27.94 90) + (length 2.54) + (name "D0S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 7.62 0) + (length 2.54) + (name "D0-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "M.2_Screw" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board no) + (property "Reference" "M" + (at -0.254 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "M.2 Screw" + (at 0.254 -8.636 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "M.2_Screw_0_1" + (polyline + (pts + (xy -5.08 0) (xy -5.08 -6.35) (xy -3.81 -6.35) (xy -3.81 -5.08) (xy -2.54 -5.08) (xy -2.54 -2.54) + (xy -1.27 -2.54) (xy -1.27 -5.08) (xy 0 -5.08) (xy 0 -2.54) (xy 1.27 -1.27) (xy 2.54 -2.54) (xy 3.81 -1.27) + (xy 5.08 -2.54) (xy 6.35 -1.27) (xy 6.35 1.27) (xy 5.08 2.54) (xy 3.81 1.27) (xy 2.54 2.54) (xy 1.27 1.27) + (xy 0 2.54) (xy 0 5.08) (xy -1.27 5.08) (xy -1.27 2.54) (xy -2.54 2.54) (xy -2.54 5.08) (xy -3.81 5.08) + (xy -3.81 6.35) (xy -5.08 6.35) (xy -5.08 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "MagJack-A70-112-331N126" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MagJack-A70-112-331N126" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MagJack-A70-112-331N126_0_1" + (polyline + (pts + (xy 1.27 40.64) (xy -5.08 40.64) (xy -5.08 48.26) (xy -2.54 48.26) (xy -5.08 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 60.96) (xy -5.08 60.96) (xy -5.08 68.58) (xy -2.54 68.58) (xy -5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "MagJack-A70-112-331N126_1_1" + (rectangle + (start -17.78 1.27) + (end 12.7 74.93) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (arc + (start -2.54 42.545) + (mid -1.905 41.9127) + (end -1.27 42.545) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 50.165) + (mid -1.905 49.5327) + (end -1.27 50.165) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 62.865) + (mid -1.905 62.2327) + (end -1.27 62.865) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 70.485) + (mid -1.905 69.8527) + (end -1.27 70.485) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 38.735) + (mid -1.905 39.3673) + (end -2.54 38.735) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 42.545) + (mid -0.635 41.9127) + (end 0 42.545) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 46.355) + (mid -1.905 46.9873) + (end -2.54 46.355) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 50.165) + (mid -0.635 49.5327) + (end 0 50.165) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 59.055) + (mid -1.905 59.6873) + (end -2.54 59.055) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 62.865) + (mid -0.635 62.2327) + (end 0 62.865) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 66.675) + (mid -1.905 67.3073) + (end -2.54 66.675) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 70.485) + (mid -0.635 69.8527) + (end 0 70.485) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 27.94) (xy -10.16 27.94) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 30.48) (xy -10.16 30.48) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 33.02) (xy -10.16 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 33.02) (xy -10.16 34.29) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 13.335) (xy -7.62 13.335) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 18.415) (xy -7.62 18.415) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 48.26) (xy -5.08 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 31.75) (xy -3.175 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 48.26) (xy 1.27 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 68.58) (xy 1.27 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 38.735) (xy -10.795 38.735) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 42.545) (xy -10.795 42.545) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 46.355) (xy -10.795 46.355) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 50.165) (xy -10.795 50.165) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 59.055) (xy -10.795 59.055) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 62.865) (xy -10.795 62.865) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 66.675) (xy -10.795 66.675) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 70.485) (xy -10.795 70.485) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 33.02) (xy -1.905 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.635 33.02) (xy -0.635 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 33.02) (xy 0.635 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.905 33.02) (xy 1.905 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.175 33.02) (xy 3.175 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 38.1) (xy 5.08 38.1) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 40.64) (xy 5.08 40.64) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 43.18) (xy 5.08 43.18) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 45.72) (xy 5.08 45.72) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 48.26) (xy 5.08 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 50.8) (xy 5.08 50.8) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 58.42) (xy 5.08 58.42) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 60.96) (xy 5.08 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 63.5) (xy 5.08 63.5) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 66.04) (xy 5.08 66.04) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 68.58) (xy 5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 71.12) (xy 5.08 71.12) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.445 31.75) (xy 4.445 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 40.64) (xy 8.89 40.64) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 48.26) (xy 8.89 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 60.96) (xy 8.89 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.715 31.75) (xy 5.715 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 18.415) (xy 10.16 18.415) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 19.05) (xy 10.16 19.05) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 8.89 15.24) (xy 8.89 17.78) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 8.89 19.05) (xy 8.89 34.29) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 33.02) (xy -10.16 25.4) (xy -12.7 25.4) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 12.7) (xy -6.35 12.7) (xy -6.35 13.335) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 15.24) (xy -6.35 15.24) (xy -6.35 14.605) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 20.32) (xy -6.35 20.32) (xy -6.35 19.685) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -6.35 18.415) (xy -6.35 17.78) (xy -8.636 17.78) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 38.735) (xy 0 38.1) (xy 1.27 38.1) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 46.355) (xy 0 45.72) (xy 1.27 45.72) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 59.055) (xy 0 58.42) (xy 1.27 58.42) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 66.675) (xy 0 66.04) (xy 1.27 66.04) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 43.18) (xy 0 43.18) (xy 0 42.545) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 50.8) (xy 0 50.8) (xy 0 50.165) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 63.5) (xy 0 63.5) (xy 0 62.865) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 71.12) (xy 0 71.12) (xy 0 70.485) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 53.34) (xy -5.08 53.34) (xy -5.08 55.88) (xy -11.43 55.88) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 34.29) (xy 8.89 34.29) (xy 8.89 68.58) (xy 5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 19.685) (xy -5.08 19.685) (xy -6.35 18.415) (xy -7.62 19.685) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 14.605) (xy -7.62 14.605) (xy -6.35 13.335) (xy -5.08 14.605) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 5.08) (xy -8.89 5.08) (xy -8.89 7.62) (xy -10.16 7.62) (xy -8.89 7.62) (xy 8.89 7.62) + (xy 8.89 11.43) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -4.445 33.02) (xy 6.985 33.02) (xy 6.985 22.86) (xy 4.445 22.86) (xy 4.445 21.59) (xy 3.175 21.59) + (xy 3.175 20.32) (xy -0.635 20.32) (xy -0.635 21.59) (xy -1.905 21.59) (xy -1.905 22.86) (xy -4.445 22.86) + (xy -4.445 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 38.735) + (mid -0.635 39.3673) + (end -1.27 38.735) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 46.355) + (mid -0.635 46.9873) + (end -1.27 46.355) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 59.055) + (mid -0.635 59.6873) + (end -1.27 59.055) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 66.675) + (mid -0.635 67.3073) + (end -1.27 66.675) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 38.1) + (mid 1.9023 38.735) + (end 1.27 39.37) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 39.37) + (mid 1.9023 40.005) + (end 1.27 40.64) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 40.64) + (mid 1.9023 41.275) + (end 1.27 41.91) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 41.91) + (mid 1.9023 42.545) + (end 1.27 43.18) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 45.72) + (mid 1.9023 46.355) + (end 1.27 46.99) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 46.99) + (mid 1.9023 47.625) + (end 1.27 48.26) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 48.26) + (mid 1.9023 48.895) + (end 1.27 49.53) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 49.53) + (mid 1.9023 50.165) + (end 1.27 50.8) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 58.42) + (mid 1.9023 59.055) + (end 1.27 59.69) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 59.69) + (mid 1.9023 60.325) + (end 1.27 60.96) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 60.96) + (mid 1.9023 61.595) + (end 1.27 62.23) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 62.23) + (mid 1.9023 62.865) + (end 1.27 63.5) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 66.04) + (mid 1.9023 66.675) + (end 1.27 67.31) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 67.31) + (mid 1.9023 67.945) + (end 1.27 68.58) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 68.58) + (mid 1.9023 69.215) + (end 1.27 69.85) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 69.85) + (mid 1.9023 70.485) + (end 1.27 71.12) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 39.37) + (mid 3.1777 38.735) + (end 3.81 38.1) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 40.64) + (mid 3.1777 40.005) + (end 3.81 39.37) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 41.91) + (mid 3.1777 41.275) + (end 3.81 40.64) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 43.18) + (mid 3.1777 42.545) + (end 3.81 41.91) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 46.99) + (mid 3.1777 46.355) + (end 3.81 45.72) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 48.26) + (mid 3.1777 47.625) + (end 3.81 46.99) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 49.53) + (mid 3.1777 48.895) + (end 3.81 48.26) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 50.8) + (mid 3.1777 50.165) + (end 3.81 49.53) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 59.69) + (mid 3.1777 59.055) + (end 3.81 58.42) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 60.96) + (mid 3.1777 60.325) + (end 3.81 59.69) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 62.23) + (mid 3.1777 61.595) + (end 3.81 60.96) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 63.5) + (mid 3.1777 62.865) + (end 3.81 62.23) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 67.31) + (mid 3.1777 66.675) + (end 3.81 66.04) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 68.58) + (mid 3.1777 67.945) + (end 3.81 67.31) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 69.85) + (mid 3.1777 69.215) + (end 3.81 68.58) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 71.12) + (mid 3.1777 70.485) + (end 3.81 69.85) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 9.525 12.065) + (end 8.255 14.605) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "1000pF" + (at 6.35 17.399 0) + (effects + (font + (size 0.762 0.762) + ) + ) + ) + (text "75" + (at 8.89 13.335 900) + (effects + (font + (size 0.762 0.762) + ) + ) + ) + (text "C1" + (at 6.985 71.755 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C2" + (at 6.985 66.675 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C3" + (at 6.985 64.135 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C4" + (at 6.985 51.435 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C5" + (at 6.985 46.355 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C6" + (at 6.985 59.055 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C7" + (at 6.985 43.815 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C8" + (at 6.985 38.735 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "GREEN" + (at -4.445 12.7 0) + (effects + (font + (size 0.762 0.762) + ) + (justify left) + ) + ) + (text "YELLOW" + (at -4.445 17.78 0) + (effects + (font + (size 0.762 0.762) + ) + (justify left) + ) + ) + (pin passive line + (at -21.59 71.12 0) + (length 3.81) + (name "TRD0+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 38.1 0) + (length 3.81) + (name "TRD3-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 33.02 0) + (length 3.81) + (name "VC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 30.48 0) + (length 3.81) + (name "VC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 27.94 0) + (length 3.81) + (name "VC3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 25.4 0) + (length 3.81) + (name "VC4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 20.32 0) + (length 3.81) + (name "LEDY_A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 17.78 0) + (length 3.81) + (name "LEDY_K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 15.24 0) + (length 3.81) + (name "LEDG_A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 12.7 0) + (length 3.81) + (name "LEDG_K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 7.62 0) + (length 3.81) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 66.04 0) + (length 3.81) + (name "TRD0-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 5.08 0) + (length 3.81) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 63.5 0) + (length 3.81) + (name "TRD1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 55.88 0) + (length 3.81) + (name "CT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 53.34 0) + (length 3.81) + (name "CT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 58.42 0) + (length 3.81) + (name "TRD1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 50.8 0) + (length 3.81) + (name "TRD2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 45.72 0) + (length 3.81) + (name "TRD2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 43.18 0) + (length 3.81) + (name "TRD3+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "RT9742GGJ5" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RT9742GGJ5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-00.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A load switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RT9742GGJ5_0_0" + (pin power_out line + (at -8.89 10.16 0) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 7.62 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at -8.89 5.08 0) + (length 2.54) + (name "nFLG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 6.35 5.08 180) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 6.35 10.16 180) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "RT9742GGJ5_0_1" + (rectangle + (start -6.35 12.7) + (end 3.81 2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "RT9742SNGV" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -2.54 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RT9742SNGV" + (at 3.81 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:TSOT-23_HandSoldering" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "500mA Load Switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RT9742SNGV_0_1" + (rectangle + (start -2.54 6.35) + (end 7.62 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "RT9742SNGV_1_1" + (pin power_in line + (at -5.08 3.81 0) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 10.16 3.81 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -2.54 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "SolderNut" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim yes) + (in_bom yes) + (on_board no) + (property "Reference" "M" + (at -6.35 -3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "M.2 Solder Nut" + (at 0.254 -5.842 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SolderNut_0_1" + (circle + (center 0 0) + (radius 2.8398) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0) + (radius 4.0161) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "TPD4EUSB30" + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -0.635 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TPD4EUSB30" + (at 8.89 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_SON:USON-10_2.5x1.0mm_P0.5mm" + (at -24.13 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "4-Channel ESD Protection for Super-Speed USB 3.0 Interface, USON-10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "ESD protection USB 3.0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "USON*2.5x1.0mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TPD4EUSB30_0_0" + (rectangle + (start -5.715 6.477) + (end 5.715 -6.604) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 -6.604) (xy -3.175 6.477) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 6.477) (xy 0 -6.604) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.175 6.477) (xy 3.175 -6.604) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TPD4EUSB30_0_1" + (rectangle + (start -7.62 7.62) + (end 7.62 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (circle + (center -5.715 -2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 0 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -7.747 2.54) (xy -3.175 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 -2.54) (xy -5.715 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -3.81) (xy -6.35 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 5.08) (xy -6.35 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -3.81) (xy -3.81 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 5.08) (xy -3.81 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.635 0.889) (xy -1.016 0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -6.604) (xy 0 -7.62) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.889) (xy -0.635 0.889) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.889) (xy 1.016 1.143) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -3.81) (xy 2.54 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 5.08) (xy 2.54 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -3.81) (xy 5.08 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 5.08) (xy 5.08 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -2.54) (xy 3.175 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 2.54) (xy 5.715 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -5.08) (xy -6.35 -5.08) (xy -5.715 -3.81) (xy -5.08 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 3.81) (xy -6.35 3.81) (xy -5.715 5.08) (xy -5.08 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -5.08) (xy -3.81 -5.08) (xy -3.175 -3.81) (xy -2.54 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 3.81) (xy -3.81 3.81) (xy -3.175 5.08) (xy -2.54 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -0.381) (xy -0.635 -0.381) (xy 0 0.889) (xy 0.635 -0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -5.08) (xy 2.54 -5.08) (xy 3.175 -3.81) (xy 3.81 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 3.81) (xy 2.54 3.81) (xy 3.175 5.08) (xy 3.81 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -5.08) (xy 5.08 -5.08) (xy 5.715 -3.81) (xy 6.35 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 3.81) (xy 5.08 3.81) (xy 5.715 5.08) (xy 6.35 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 -2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 5.715 2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "TPD4EUSB30_1_1" + (pin passive line + (at -12.7 2.54 0) + (length 5.08) + (name "D1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 2.54 0) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 -2.54 0) + (length 5.08) + (name "D1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -12.7 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 2.54 180) + (length 5.08) + (name "D2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 -2.54 180) + (length 5.08) + (name "D2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 -2.54 180) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 2.54 180) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -12.7 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 -2.54 0) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "USB3_A" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -10.16 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "USB3_A" + (at 10.16 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 3.81 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 3.81 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB 3.0 A connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "usb universal serial bus" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "USB3_A_1_1" + (rectangle + (start -8.89 4.064) + (end -7.874 3.556) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 6.604) + (end -7.874 6.096) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 11.684) + (end -7.874 11.176) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 14.224) + (end -7.874 13.716) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 19.304) + (end -7.874 18.796) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 21.844) + (end -7.874 21.336) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 26.924) + (end -7.874 26.416) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -7.62 -2.286) + (end -8.636 -2.794) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -7.62 0.254) + (end -8.636 -0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -2.286 -11.176) + (end 10.16 -15.24) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -2.286 -4.826) + (end 10.16 -8.89) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.016 -12.446) + (end 8.636 -13.716) + (stroke + (width 0.508) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -1.016 -6.096) + (end 8.636 -7.366) + (stroke + (width 0.508) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 4.572 6.35) (xy 4.572 15.24) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.572 7.62) (xy 7.112 10.16) (xy 7.112 11.43) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.572 8.89) (xy 2.032 11.43) (xy 2.032 12.7) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.842 15.24) (xy 4.572 17.78) (xy 3.302 15.24) (xy 5.842 15.24) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 1.016 -13.97) + (end 1.778 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 1.016 -7.62) + (end 1.778 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.667 12.7) + (end 1.397 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 2.794 -13.97) + (end 3.556 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.794 -7.62) + (end 3.556 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 4.572 -13.97) + (end 5.334 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 4.572 -7.62) + (end 5.334 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 6.35 -13.97) + (end 7.112 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 6.35 -7.62) + (end 7.112 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.112 12.065) + (radius 0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 11.43 30.48) + (end -8.89 -39.37) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (text "SS" + (at 4.572 3.175 900) + (effects + (font + (size 5.08 5.08) + (bold yes) + (italic yes) + ) + ) + ) + (pin passive line + (at 13.97 -36.83 180) + (length 2.54) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 26.67 0) + (length 2.54) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 19.05 0) + (length 2.54) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 21.59 0) + (length 2.54) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 0 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 11.43 0) + (length 2.54) + (name "SSRX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 13.97 0) + (length 2.54) + (name "SSRX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -2.54 0) + (length 2.54) + (name "DRAIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 3.81 0) + (length 2.54) + (name "SSTX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 6.35 0) + (length 2.54) + (name "SSTX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -7.62 0) + (length 2.54) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -15.24 0) + (length 2.54) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -12.7 0) + (length 2.54) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -34.29 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -22.86 0) + (length 2.54) + (name "SSRX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -20.32 0) + (length 2.54) + (name "SSRX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -36.83 0) + (length 2.54) + (name "DRAIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -30.48 0) + (length 2.54) + (name "SSTX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -27.94 0) + (length 2.54) + (name "SSTX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +) diff --git a/carrier/CM5_GPIO.kicad_sch b/carrier/CM5_GPIO.kicad_sch new file mode 100644 index 0000000..b596853 --- /dev/null +++ b/carrier/CM5_GPIO.kicad_sch @@ -0,0 +1,19656 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "a7d728a2-9639-442c-9b0f-3544c5006fbb") + (paper "A4") + (title_block + (title "Compute Module 5 IO Board - GPIO - Ethernet") + (rev "1") + (company "Copyright © 2024 Raspberry Pi Ltd.") + (comment 1 "www.raspberrypi.com") + ) + (lib_symbols + (symbol "CM5IO:74LVC1G07_copy" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -2.54 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "74LVC1G07_copy" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-353_SC-70-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single Buffer Gate w/ Open Drain, Low-Voltage CMOS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Single Gate Buff LVC CMOS Open Drain" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT* SG-*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "74LVC1G07_copy_0_1" + (polyline + (pts + (xy -2.54 -0.635) (xy -1.27 -0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.81 2.54) (xy -3.81 -2.54) (xy 2.54 0) (xy -3.81 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 0.635) (xy -2.54 0) (xy -1.905 -0.635) (xy -1.27 0) (xy -1.905 0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "74LVC1G07_copy_1_1" + (pin no_connect line + (at -6.35 -2.54 0) + (length 2.54) + (name "nc" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 0 0) + (length 3.81) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 0 -2.54 270) + (length 0) + (name "GND" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin open_collector line + (at 6.35 0 180) + (length 3.81) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 0 2.54 90) + (length 0) + (name "VCC" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:ComputeModule5-CM5" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Module" + (at 113.03 -68.58 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ComputeModule5-CM5" + (at 140.97 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "CM5IO:Raspberry-Pi-5-Compute-Module" + (at 142.24 -26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 142.24 -26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RaspberryPi Compute module 5 " + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Amphenol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field5" "2x 10164227-1001A1RLF" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "ComputeModule5-CM5_1_0" + (text "GPIO" + (at 0 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5_1_1" + (rectangle + (start -30.48 -71.12) + (end 25.4 58.42) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "600mA Max" + (at -8.89 -53.34 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "600mA Max" + (at -8.89 -48.26 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "NB SD signals are only available" + (at -1.27 -27.94 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "on modules without eMMC" + (at -1.27 -30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin power_in line + (at 27.94 55.88 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 45.72 0) + (length 2.54) + (name "Ethernet_Pair0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -68.58 0) + (length 2.54) + (name "CAM_GPIO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "100" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 43.18 180) + (length 2.54) + (name "Ethernet_Pair2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 43.18 0) + (length 2.54) + (name "Ethernet_Pair0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 40.64 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 40.64 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 38.1 180) + (length 2.54) + (name "Ethernet_nLED3(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -33.02 38.1 0) + (length 2.54) + (name "FAN_TACHO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 35.56 180) + (length 2.54) + (name "Ethernet_nLED2(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -33.02 35.56 0) + (length 2.54) + (name "Ethernet_SYNC_OUT(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 33.02 180) + (length 2.54) + (name "FAN_PWM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 55.88 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 33.02 0) + (length 2.54) + (name "EEPROM_nWP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 27.94 30.48 180) + (length 2.54) + (name "LED_nACT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 30.48 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 27.94 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 27.94 0) + (length 2.54) + (name "GPIO26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 25.4 180) + (length 2.54) + (name "GPIO21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 25.4 0) + (length 2.54) + (name "GPIO19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 22.86 180) + (length 2.54) + (name "GPIO20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 22.86 0) + (length 2.54) + (name "GPIO13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 20.32 180) + (length 2.54) + (name "GPIO16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 53.34 180) + (length 2.54) + (name "Ethernet_Pair3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 20.32 0) + (length 2.54) + (name "GPIO6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 17.78 180) + (length 2.54) + (name "GPIO12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 17.78 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 15.24 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 15.24 0) + (length 2.54) + (name "GPIO5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 12.7 180) + (length 2.54) + (name "ID_SC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 12.7 0) + (length 2.54) + (name "ID_SD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 10.16 180) + (length 2.54) + (name "GPIO7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 10.16 0) + (length 2.54) + (name "GPIO11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 7.62 180) + (length 2.54) + (name "GPIO8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 53.34 0) + (length 2.54) + (name "Ethernet_Pair1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 7.62 0) + (length 2.54) + (name "GPIO9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 5.08 180) + (length 2.54) + (name "GPIO25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 5.08 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 2.54 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 2.54 0) + (length 2.54) + (name "GPIO10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 0 180) + (length 2.54) + (name "GPIO24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 0 0) + (length 2.54) + (name "GPIO22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -2.54 180) + (length 2.54) + (name "GPIO23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -2.54 0) + (length 2.54) + (name "GPIO27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -5.08 180) + (length 2.54) + (name "GPIO18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 50.8 180) + (length 2.54) + (name "Ethernet_Pair3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -5.08 0) + (length 2.54) + (name "GPIO17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -7.62 180) + (length 2.54) + (name "GPIO15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -7.62 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -10.16 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -10.16 0) + (length 2.54) + (name "GPIO4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -12.7 180) + (length 2.54) + (name "GPIO14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -12.7 0) + (length 2.54) + (name "GPIO3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -15.24 180) + (length 2.54) + (name "SD_CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -15.24 0) + (length 2.54) + (name "GPIO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -17.78 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "59" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 50.8 0) + (length 2.54) + (name "Ethernet_Pair1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -17.78 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "60" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -20.32 180) + (length 2.54) + (name "SD_DAT3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "61" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -20.32 0) + (length 2.54) + (name "SD_CMD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "62" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -22.86 180) + (length 2.54) + (name "SD_DAT0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "63" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -22.86 0) + (length 2.54) + (name "SD_DAT5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "64" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -25.4 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "65" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -25.4 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "66" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -27.94 180) + (length 2.54) + (name "SD_DAT1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -27.94 0) + (length 2.54) + (name "SD_DAT4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -30.48 180) + (length 2.54) + (name "SD_DAT2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "69" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 48.26 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -30.48 0) + (length 2.54) + (name "SD_DAT7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "70" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -33.02 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "71" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -33.02 0) + (length 2.54) + (name "SD_DAT6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "72" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -35.56 180) + (length 2.54) + (name "SD_VDD_Override" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "73" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -35.56 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "74" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 -38.1 180) + (length 2.54) + (name "SD_PWR_ON" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "75" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -38.1 0) + (length 2.54) + (name "VBAT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "76" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -40.64 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "77" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -40.64 0) + (length 2.54) + (name "GPIO_VREF(1.8v/3.3v_Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "78" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -43.18 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "79" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 48.26 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -43.18 0) + (length 2.54) + (name "SCL0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "80" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -45.72 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "81" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -45.72 0) + (length 2.54) + (name "SDA0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "82" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -48.26 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "83" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -33.02 -48.26 0) + (length 2.54) + (name "+3.3v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "84" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -50.8 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "85" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -50.8 0) + (length 2.54) + (name "+3.3v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "86" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -53.34 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "87" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -33.02 -53.34 0) + (length 2.54) + (name "+1.8v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "88" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -55.88 180) + (length 2.54) + (name "WiFi_nDisable" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "89" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 45.72 180) + (length 2.54) + (name "Ethernet_Pair2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -55.88 0) + (length 2.54) + (name "+1.8v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "90" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -58.42 180) + (length 2.54) + (name "BT_nDisable" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "91" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -58.42 0) + (length 2.54) + (name "PWR_BUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "92" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -60.96 180) + (length 2.54) + (name "nRPIBOOT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "93" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -60.96 0) + (length 2.54) + (name "CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "94" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 -63.5 180) + (length 2.54) + (name "LED_nPWR" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "95" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -63.5 0) + (length 2.54) + (name "CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "96" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -66.04 180) + (length 2.54) + (name "CAM_GPIO0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "97" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -66.04 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "98" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -68.58 180) + (length 2.54) + (name "PMIC_ENABLE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "99" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5_2_1" + (rectangle + (start 114.3 -66.04) + (end 165.1 63.5) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "High Speed Serial" + (at 140.97 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin input line + (at 170.18 60.96 180) + (length 5.08) + (name "USB_OTG_ID" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "101" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 60.96 0) + (length 5.08) + (name "PCIe_nCLKREQ" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "102" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 58.42 180) + (length 5.08) + (name "USB2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "103" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 58.42 0) + (length 5.08) + (name "PCIE_nWAKE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "104" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 55.88 180) + (length 5.08) + (name "USB2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "105" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 55.88 0) + (length 5.08) + (name "PCIE_PWR_EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "106" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 53.34 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "107" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 53.34 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "108" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 50.8 180) + (length 5.08) + (name "PCIe_nRST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "109" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 50.8 0) + (length 5.08) + (name "PCIe_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "110" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 48.26 180) + (length 5.08) + (name "VBUS_EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "111" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 48.26 0) + (length 5.08) + (name "PCIe_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "112" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 45.72 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "113" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 45.72 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "114" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 43.18 180) + (length 5.08) + (name "MIPI0_D0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "115" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 43.18 0) + (length 5.08) + (name "PCIe_RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "116" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 40.64 180) + (length 5.08) + (name "MIPI0_D0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "117" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 40.64 0) + (length 5.08) + (name "PCIe_RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "118" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 38.1 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "119" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 38.1 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "120" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 35.56 180) + (length 5.08) + (name "MIPI0_D1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "121" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 35.56 0) + (length 5.08) + (name "PCIe_TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "122" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 33.02 180) + (length 5.08) + (name "MIPI0_D1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "123" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 33.02 0) + (length 5.08) + (name "PCIe_TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "124" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "125" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 30.48 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "126" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 27.94 180) + (length 5.08) + (name "MIPI0_C_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "127" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 27.94 0) + (length 5.08) + (name "USB3-0-RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "128" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 25.4 180) + (length 5.08) + (name "MIPI0_C_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "129" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 25.4 0) + (length 5.08) + (name "USB3-0-RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "130" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 22.86 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "131" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 22.86 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "132" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 20.32 180) + (length 5.08) + (name "MIPI0_D2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "133" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 109.22 20.32 0) + (length 5.08) + (name "USB3-0-D_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "134" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 17.78 180) + (length 5.08) + (name "MIPI0_D2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "135" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 109.22 17.78 0) + (length 5.08) + (name "USB3-0-D_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "136" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 15.24 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "137" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 15.24 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "138" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 12.7 180) + (length 5.08) + (name "MIPI0_D3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "139" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 12.7 0) + (length 5.08) + (name "USB3-0-TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "140" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 10.16 180) + (length 5.08) + (name "MIPI0_D3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "141" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 10.16 0) + (length 5.08) + (name "USB3-0-TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "142" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 7.62 180) + (length 5.08) + (name "HDMI1_HOTPLUG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "143" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 7.62 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "144" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 170.18 5.08 180) + (length 5.08) + (name "HDMI1_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "145" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 5.08 0) + (length 5.08) + (name "HDMI1_TX2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "146" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 2.54 180) + (length 5.08) + (name "HDMI1_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "147" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 2.54 0) + (length 5.08) + (name "HDMI1_TX2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "148" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 0 180) + (length 5.08) + (name "HDMI1_CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "149" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 0 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "150" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 -2.54 180) + (length 5.08) + (name "HDMI0_CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "151" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -2.54 0) + (length 5.08) + (name "HDMI1_TX1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "152" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -5.08 180) + (length 5.08) + (name "HDMI0_HOTPLUG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "153" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -5.08 0) + (length 5.08) + (name "HDMI1_TX1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "154" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -7.62 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "155" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -7.62 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "156" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -10.16 180) + (length 5.08) + (name "USB3-1-RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "157" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -10.16 0) + (length 5.08) + (name "HDMI1_TX0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "158" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -12.7 180) + (length 5.08) + (name "USB3-1-RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "159" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -12.7 0) + (length 5.08) + (name "HDMI1_TX0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "160" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -15.24 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "161" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -15.24 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "162" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 -17.78 180) + (length 5.08) + (name "USB3-1-D_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "163" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -17.78 0) + (length 5.08) + (name "HDMI1_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "164" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 -20.32 180) + (length 5.08) + (name "USB3-1-D_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "165" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -20.32 0) + (length 5.08) + (name "HDMI1_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "166" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -22.86 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "167" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -22.86 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "168" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -25.4 180) + (length 5.08) + (name "USB3-1-TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "169" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -25.4 0) + (length 5.08) + (name "HDMI0_TX2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "170" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -27.94 180) + (length 5.08) + (name "USB3-1-TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "171" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -27.94 0) + (length 5.08) + (name "HDMI0_TX2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "172" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "173" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -30.48 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "174" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -33.02 180) + (length 5.08) + (name "MIPI1_D0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "175" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -33.02 0) + (length 5.08) + (name "HDMI0_TX1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "176" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -35.56 180) + (length 5.08) + (name "MIPI1_D0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "177" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -35.56 0) + (length 5.08) + (name "HDMI0_TX1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "178" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -38.1 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "179" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -38.1 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "180" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -40.64 180) + (length 5.08) + (name "MIPI1_D1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "181" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -40.64 0) + (length 5.08) + (name "HDMI0_TX0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "182" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -43.18 180) + (length 5.08) + (name "MIPI1_D1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "183" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -43.18 0) + (length 5.08) + (name "HDMI0_TX0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "184" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -45.72 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "185" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -45.72 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "186" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -48.26 180) + (length 5.08) + (name "MIPI1_C_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "187" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -48.26 0) + (length 5.08) + (name "HDMI0_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "188" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -50.8 180) + (length 5.08) + (name "MIPI1_C_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "189" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -50.8 0) + (length 5.08) + (name "HDMI0_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "190" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -53.34 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "191" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -53.34 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "192" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -55.88 180) + (length 5.08) + (name "MIPI1_D2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "193" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -55.88 0) + (length 5.08) + (name "MIPI1_D3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "194" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -58.42 180) + (length 5.08) + (name "MIPI1_D2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "195" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -58.42 0) + (length 5.08) + (name "MIPI1_D3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "196" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -60.96 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "197" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -60.96 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "198" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 170.18 -63.5 180) + (length 5.08) + (name "HDMI0_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "199" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 109.22 -63.5 0) + (length 5.08) + (name "HDMI0_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "200" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:MagJack-A70-112-331N126" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MagJack-A70-112-331N126" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MagJack-A70-112-331N126_0_1" + (polyline + (pts + (xy 1.27 40.64) (xy -5.08 40.64) (xy -5.08 48.26) (xy -2.54 48.26) (xy -5.08 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 60.96) (xy -5.08 60.96) (xy -5.08 68.58) (xy -2.54 68.58) (xy -5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "MagJack-A70-112-331N126_1_1" + (rectangle + (start -17.78 1.27) + (end 12.7 74.93) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (arc + (start -2.54 42.545) + (mid -1.905 41.9127) + (end -1.27 42.545) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 50.165) + (mid -1.905 49.5327) + (end -1.27 50.165) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 62.865) + (mid -1.905 62.2327) + (end -1.27 62.865) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 70.485) + (mid -1.905 69.8527) + (end -1.27 70.485) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 38.735) + (mid -1.905 39.3673) + (end -2.54 38.735) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 42.545) + (mid -0.635 41.9127) + (end 0 42.545) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 46.355) + (mid -1.905 46.9873) + (end -2.54 46.355) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 50.165) + (mid -0.635 49.5327) + (end 0 50.165) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 59.055) + (mid -1.905 59.6873) + (end -2.54 59.055) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 62.865) + (mid -0.635 62.2327) + (end 0 62.865) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 66.675) + (mid -1.905 67.3073) + (end -2.54 66.675) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 70.485) + (mid -0.635 69.8527) + (end 0 70.485) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 27.94) (xy -10.16 27.94) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 30.48) (xy -10.16 30.48) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 33.02) (xy -10.16 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 33.02) (xy -10.16 34.29) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 13.335) (xy -7.62 13.335) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 18.415) (xy -7.62 18.415) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 48.26) (xy -5.08 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 31.75) (xy -3.175 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 48.26) (xy 1.27 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 68.58) (xy 1.27 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 38.735) (xy -10.795 38.735) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 42.545) (xy -10.795 42.545) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 46.355) (xy -10.795 46.355) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 50.165) (xy -10.795 50.165) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 59.055) (xy -10.795 59.055) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 62.865) (xy -10.795 62.865) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 66.675) (xy -10.795 66.675) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 70.485) (xy -10.795 70.485) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 33.02) (xy -1.905 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.635 33.02) (xy -0.635 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 33.02) (xy 0.635 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.905 33.02) (xy 1.905 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.175 33.02) (xy 3.175 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 38.1) (xy 5.08 38.1) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 40.64) (xy 5.08 40.64) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 43.18) (xy 5.08 43.18) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 45.72) (xy 5.08 45.72) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 48.26) (xy 5.08 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 50.8) (xy 5.08 50.8) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 58.42) (xy 5.08 58.42) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 60.96) (xy 5.08 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 63.5) (xy 5.08 63.5) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 66.04) (xy 5.08 66.04) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 68.58) (xy 5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 71.12) (xy 5.08 71.12) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.445 31.75) (xy 4.445 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 40.64) (xy 8.89 40.64) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 48.26) (xy 8.89 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 60.96) (xy 8.89 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.715 31.75) (xy 5.715 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 18.415) (xy 10.16 18.415) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 19.05) (xy 10.16 19.05) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 8.89 15.24) (xy 8.89 17.78) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 8.89 19.05) (xy 8.89 34.29) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 33.02) (xy -10.16 25.4) (xy -12.7 25.4) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 12.7) (xy -6.35 12.7) (xy -6.35 13.335) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 15.24) (xy -6.35 15.24) (xy -6.35 14.605) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 20.32) (xy -6.35 20.32) (xy -6.35 19.685) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -6.35 18.415) (xy -6.35 17.78) (xy -8.636 17.78) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 38.735) (xy 0 38.1) (xy 1.27 38.1) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 46.355) (xy 0 45.72) (xy 1.27 45.72) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 59.055) (xy 0 58.42) (xy 1.27 58.42) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 66.675) (xy 0 66.04) (xy 1.27 66.04) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 43.18) (xy 0 43.18) (xy 0 42.545) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 50.8) (xy 0 50.8) (xy 0 50.165) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 63.5) (xy 0 63.5) (xy 0 62.865) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 71.12) (xy 0 71.12) (xy 0 70.485) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 53.34) (xy -5.08 53.34) (xy -5.08 55.88) (xy -11.43 55.88) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 34.29) (xy 8.89 34.29) (xy 8.89 68.58) (xy 5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 19.685) (xy -5.08 19.685) (xy -6.35 18.415) (xy -7.62 19.685) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 14.605) (xy -7.62 14.605) (xy -6.35 13.335) (xy -5.08 14.605) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 5.08) (xy -8.89 5.08) (xy -8.89 7.62) (xy -10.16 7.62) (xy -8.89 7.62) (xy 8.89 7.62) + (xy 8.89 11.43) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -4.445 33.02) (xy 6.985 33.02) (xy 6.985 22.86) (xy 4.445 22.86) (xy 4.445 21.59) (xy 3.175 21.59) + (xy 3.175 20.32) (xy -0.635 20.32) (xy -0.635 21.59) (xy -1.905 21.59) (xy -1.905 22.86) (xy -4.445 22.86) + (xy -4.445 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 38.735) + (mid -0.635 39.3673) + (end -1.27 38.735) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 46.355) + (mid -0.635 46.9873) + (end -1.27 46.355) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 59.055) + (mid -0.635 59.6873) + (end -1.27 59.055) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 66.675) + (mid -0.635 67.3073) + (end -1.27 66.675) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 38.1) + (mid 1.9023 38.735) + (end 1.27 39.37) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 39.37) + (mid 1.9023 40.005) + (end 1.27 40.64) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 40.64) + (mid 1.9023 41.275) + (end 1.27 41.91) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 41.91) + (mid 1.9023 42.545) + (end 1.27 43.18) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 45.72) + (mid 1.9023 46.355) + (end 1.27 46.99) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 46.99) + (mid 1.9023 47.625) + (end 1.27 48.26) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 48.26) + (mid 1.9023 48.895) + (end 1.27 49.53) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 49.53) + (mid 1.9023 50.165) + (end 1.27 50.8) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 58.42) + (mid 1.9023 59.055) + (end 1.27 59.69) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 59.69) + (mid 1.9023 60.325) + (end 1.27 60.96) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 60.96) + (mid 1.9023 61.595) + (end 1.27 62.23) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 62.23) + (mid 1.9023 62.865) + (end 1.27 63.5) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 66.04) + (mid 1.9023 66.675) + (end 1.27 67.31) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 67.31) + (mid 1.9023 67.945) + (end 1.27 68.58) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 68.58) + (mid 1.9023 69.215) + (end 1.27 69.85) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 69.85) + (mid 1.9023 70.485) + (end 1.27 71.12) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 39.37) + (mid 3.1777 38.735) + (end 3.81 38.1) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 40.64) + (mid 3.1777 40.005) + (end 3.81 39.37) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 41.91) + (mid 3.1777 41.275) + (end 3.81 40.64) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 43.18) + (mid 3.1777 42.545) + (end 3.81 41.91) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 46.99) + (mid 3.1777 46.355) + (end 3.81 45.72) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 48.26) + (mid 3.1777 47.625) + (end 3.81 46.99) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 49.53) + (mid 3.1777 48.895) + (end 3.81 48.26) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 50.8) + (mid 3.1777 50.165) + (end 3.81 49.53) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 59.69) + (mid 3.1777 59.055) + (end 3.81 58.42) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 60.96) + (mid 3.1777 60.325) + (end 3.81 59.69) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 62.23) + (mid 3.1777 61.595) + (end 3.81 60.96) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 63.5) + (mid 3.1777 62.865) + (end 3.81 62.23) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 67.31) + (mid 3.1777 66.675) + (end 3.81 66.04) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 68.58) + (mid 3.1777 67.945) + (end 3.81 67.31) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 69.85) + (mid 3.1777 69.215) + (end 3.81 68.58) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 71.12) + (mid 3.1777 70.485) + (end 3.81 69.85) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 9.525 12.065) + (end 8.255 14.605) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "1000pF" + (at 6.35 17.399 0) + (effects + (font + (size 0.762 0.762) + ) + ) + ) + (text "75" + (at 8.89 13.335 900) + (effects + (font + (size 0.762 0.762) + ) + ) + ) + (text "C1" + (at 6.985 71.755 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C2" + (at 6.985 66.675 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C3" + (at 6.985 64.135 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C4" + (at 6.985 51.435 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C5" + (at 6.985 46.355 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C6" + (at 6.985 59.055 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C7" + (at 6.985 43.815 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C8" + (at 6.985 38.735 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "GREEN" + (at -4.445 12.7 0) + (effects + (font + (size 0.762 0.762) + ) + (justify left) + ) + ) + (text "YELLOW" + (at -4.445 17.78 0) + (effects + (font + (size 0.762 0.762) + ) + (justify left) + ) + ) + (pin passive line + (at -21.59 71.12 0) + (length 3.81) + (name "TRD0+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 38.1 0) + (length 3.81) + (name "TRD3-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 33.02 0) + (length 3.81) + (name "VC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 30.48 0) + (length 3.81) + (name "VC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 27.94 0) + (length 3.81) + (name "VC3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 25.4 0) + (length 3.81) + (name "VC4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 20.32 0) + (length 3.81) + (name "LEDY_A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 17.78 0) + (length 3.81) + (name "LEDY_K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 15.24 0) + (length 3.81) + (name "LEDG_A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 12.7 0) + (length 3.81) + (name "LEDG_K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 7.62 0) + (length 3.81) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 66.04 0) + (length 3.81) + (name "TRD0-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 5.08 0) + (length 3.81) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 63.5 0) + (length 3.81) + (name "TRD1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 55.88 0) + (length 3.81) + (name "CT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 53.34 0) + (length 3.81) + (name "CT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 58.42 0) + (length 3.81) + (name "TRD1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 50.8 0) + (length 3.81) + (name "TRD2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 45.72 0) + (length 3.81) + (name "TRD2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 43.18 0) + (length 3.81) + (name "TRD3+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:RT9742GGJ5" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RT9742GGJ5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-00.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A load switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RT9742GGJ5_0_0" + (pin power_out line + (at -8.89 10.16 0) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 7.62 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at -8.89 5.08 0) + (length 2.54) + (name "nFLG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 6.35 5.08 180) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 6.35 10.16 180) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "RT9742GGJ5_0_1" + (rectangle + (start -6.35 12.7) + (end 3.81 2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "CM5IO:TPD4EUSB30" + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -0.635 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TPD4EUSB30" + (at 8.89 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_SON:USON-10_2.5x1.0mm_P0.5mm" + (at -24.13 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "4-Channel ESD Protection for Super-Speed USB 3.0 Interface, USON-10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "ESD protection USB 3.0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "USON*2.5x1.0mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TPD4EUSB30_0_0" + (rectangle + (start -5.715 6.477) + (end 5.715 -6.604) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 -6.604) (xy -3.175 6.477) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 6.477) (xy 0 -6.604) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.175 6.477) (xy 3.175 -6.604) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TPD4EUSB30_0_1" + (rectangle + (start -7.62 7.62) + (end 7.62 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (circle + (center -5.715 -2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 0 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -7.747 2.54) (xy -3.175 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 -2.54) (xy -5.715 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -3.81) (xy -6.35 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 5.08) (xy -6.35 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -3.81) (xy -3.81 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 5.08) (xy -3.81 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.635 0.889) (xy -1.016 0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -6.604) (xy 0 -7.62) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.889) (xy -0.635 0.889) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.889) (xy 1.016 1.143) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -3.81) (xy 2.54 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 5.08) (xy 2.54 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -3.81) (xy 5.08 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 5.08) (xy 5.08 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -2.54) (xy 3.175 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 2.54) (xy 5.715 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -5.08) (xy -6.35 -5.08) (xy -5.715 -3.81) (xy -5.08 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 3.81) (xy -6.35 3.81) (xy -5.715 5.08) (xy -5.08 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -5.08) (xy -3.81 -5.08) (xy -3.175 -3.81) (xy -2.54 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 3.81) (xy -3.81 3.81) (xy -3.175 5.08) (xy -2.54 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -0.381) (xy -0.635 -0.381) (xy 0 0.889) (xy 0.635 -0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -5.08) (xy 2.54 -5.08) (xy 3.175 -3.81) (xy 3.81 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 3.81) (xy 2.54 3.81) (xy 3.175 5.08) (xy 3.81 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -5.08) (xy 5.08 -5.08) (xy 5.715 -3.81) (xy 6.35 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 3.81) (xy 5.08 3.81) (xy 5.715 5.08) (xy 6.35 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 -2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 5.715 2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "TPD4EUSB30_1_1" + (pin passive line + (at -12.7 2.54 0) + (length 5.08) + (name "D1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 2.54 0) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 -2.54 0) + (length 5.08) + (name "D1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -12.7 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 2.54 180) + (length 5.08) + (name "D2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 -2.54 180) + (length 5.08) + (name "D2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 -2.54 180) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 2.54 180) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -12.7 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 -2.54 0) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Micro_SD_Card_Det2" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -16.51 17.78 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Micro_SD_Card_Det2" + (at 16.51 17.78 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 52.07 17.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.hirose.com/en/product/document?clcode=&productname=&series=DM3&documenttype=Catalog&lang=en&documentid=D49662_en" + (at 2.54 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Micro SD Card Socket with two card detection pins" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector SD microsd" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "microSD*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Micro_SD_Card_Det2_0_1" + (rectangle + (start -7.62 -6.985) + (end -5.08 -8.255) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 -4.445) + (end -5.08 -5.715) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 -1.905) + (end -5.08 -3.175) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 0.635) + (end -5.08 -0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 3.175) + (end -5.08 1.905) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 5.715) + (end -5.08 4.445) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 8.255) + (end -5.08 6.985) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 10.795) + (end -5.08 9.525) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 16.51 15.24) (xy 16.51 16.51) (xy -19.05 16.51) (xy -19.05 -16.51) (xy 16.51 -16.51) (xy 16.51 -8.89) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.89 -8.89) (xy -8.89 11.43) (xy -1.27 11.43) (xy 2.54 15.24) (xy 3.81 15.24) (xy 3.81 13.97) + (xy 6.35 13.97) (xy 7.62 15.24) (xy 20.32 15.24) (xy 20.32 -8.89) (xy -8.89 -8.89) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "Micro_SD_Card_Det2_1_1" + (pin bidirectional line + (at -22.86 10.16 0) + (length 3.81) + (name "DAT2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -22.86 -10.16 0) + (length 3.81) + (name "DET_A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 20.32 -12.7 180) + (length 3.81) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 7.62 0) + (length 3.81) + (name "DAT3/CD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -22.86 5.08 0) + (length 3.81) + (name "CMD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -22.86 2.54 0) + (length 3.81) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -22.86 0 0) + (length 3.81) + (name "CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -22.86 -2.54 0) + (length 3.81) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -5.08 0) + (length 3.81) + (name "DAT0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -22.86 -7.62 0) + (length 3.81) + (name "DAT1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -22.86 -12.7 0) + (length 3.81) + (name "DET_B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:TestPoint" + (pin_numbers hide) + (pin_names + (offset 0.762) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "TP" + (at 0 6.858 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TestPoint" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "test point tp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Pin* Test*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TestPoint_0_1" + (circle + (center 0 3.302) + (radius 0.762) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TestPoint_1_1" + (pin passive line + (at 0 0 90) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x03" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.81) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_01x04" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x04" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x04_1_1" + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.81) + (end 1.27 -6.35) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_02x02_Odd_Even" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 1.27 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_02x02_Odd_Even" + (at 1.27 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_02x02_Odd_Even_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 1.27) + (end 3.81 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start 3.81 -2.413) + (end 2.54 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 0.127) + (end 2.54 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -2.54 180) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_02x07_Odd_Even" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 1.27 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_02x07_Odd_Even" + (at 1.27 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, double row, 02x07, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_02x07_Odd_Even_1_1" + (rectangle + (start -1.27 -7.493) + (end 0 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 7.747) + (end 0 7.493) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 8.89) + (end 3.81 -8.89) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start 3.81 -7.493) + (end 2.54 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -4.953) + (end 2.54 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -2.413) + (end 2.54 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 0.127) + (end 2.54 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 2.667) + (end 2.54 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 5.207) + (end 2.54 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 7.747) + (end 2.54 7.493) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 7.62 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -2.54 180) + (length 3.81) + (name "Pin_10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -5.08 180) + (length 3.81) + (name "Pin_12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 0) + (length 3.81) + (name "Pin_13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -7.62 180) + (length 3.81) + (name "Pin_14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 7.62 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 5.08 180) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 2.54 180) + (length 3.81) + (name "Pin_6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 3.81) + (name "Pin_8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_02x20_Odd_Even" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 1.27 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_02x20_Odd_Even" + (at 1.27 -27.94 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, double row, 02x20, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_02x20_Odd_Even_1_1" + (rectangle + (start -1.27 -25.273) + (end 0 -25.527) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -22.733) + (end 0 -22.987) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -20.193) + (end 0 -20.447) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -17.653) + (end 0 -17.907) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -15.113) + (end 0 -15.367) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -12.573) + (end 0 -12.827) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -10.033) + (end 0 -10.287) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -7.493) + (end 0 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 7.747) + (end 0 7.493) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 10.287) + (end 0 10.033) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 12.827) + (end 0 12.573) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 15.367) + (end 0 15.113) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 17.907) + (end 0 17.653) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 20.447) + (end 0 20.193) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 22.987) + (end 0 22.733) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 24.13) + (end 3.81 -26.67) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start 3.81 -25.273) + (end 2.54 -25.527) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -22.733) + (end 2.54 -22.987) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -20.193) + (end 2.54 -20.447) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -17.653) + (end 2.54 -17.907) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -15.113) + (end 2.54 -15.367) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -12.573) + (end 2.54 -12.827) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -10.033) + (end 2.54 -10.287) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -7.493) + (end 2.54 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -4.953) + (end 2.54 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -2.413) + (end 2.54 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 0.127) + (end 2.54 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 2.667) + (end 2.54 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 5.207) + (end 2.54 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 7.747) + (end 2.54 7.493) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 10.287) + (end 2.54 10.033) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 12.827) + (end 2.54 12.573) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 15.367) + (end 2.54 15.113) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 17.907) + (end 2.54 17.653) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 20.447) + (end 2.54 20.193) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 22.987) + (end 2.54 22.733) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 22.86 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 12.7 180) + (length 3.81) + (name "Pin_10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 10.16 0) + (length 3.81) + (name "Pin_11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 10.16 180) + (length 3.81) + (name "Pin_12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 7.62 0) + (length 3.81) + (name "Pin_13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 7.62 180) + (length 3.81) + (name "Pin_14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 5.08 180) + (length 3.81) + (name "Pin_16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 2.54 180) + (length 3.81) + (name "Pin_18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 22.86 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 3.81) + (name "Pin_20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -2.54 180) + (length 3.81) + (name "Pin_22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -5.08 180) + (length 3.81) + (name "Pin_24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 0) + (length 3.81) + (name "Pin_25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -7.62 180) + (length 3.81) + (name "Pin_26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -10.16 0) + (length 3.81) + (name "Pin_27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -10.16 180) + (length 3.81) + (name "Pin_28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -12.7 0) + (length 3.81) + (name "Pin_29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 20.32 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -12.7 180) + (length 3.81) + (name "Pin_30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -15.24 0) + (length 3.81) + (name "Pin_31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -15.24 180) + (length 3.81) + (name "Pin_32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -17.78 0) + (length 3.81) + (name "Pin_33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -17.78 180) + (length 3.81) + (name "Pin_34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -20.32 0) + (length 3.81) + (name "Pin_35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -20.32 180) + (length 3.81) + (name "Pin_36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -22.86 0) + (length 3.81) + (name "Pin_37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -22.86 180) + (length 3.81) + (name "Pin_38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -25.4 0) + (length 3.81) + (name "Pin_39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 20.32 180) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -25.4 180) + (length 3.81) + (name "Pin_40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 17.78 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 17.78 180) + (length 3.81) + (name "Pin_6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 15.24 0) + (length 3.81) + (name "Pin_7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 15.24 180) + (length 3.81) + (name "Pin_8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 12.7 0) + (length 3.81) + (name "Pin_9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:Battery_Cell" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "BT" + (at 2.54 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Battery_Cell" + (at 2.54 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 1.524 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 1.524 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single-cell battery" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "battery cell" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Battery_Cell_0_1" + (rectangle + (start -2.286 1.778) + (end 2.286 1.524) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -1.524 1.016) + (end 1.524 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 0 0.762) (xy 0 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 1.778) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 3.048) (xy 1.778 3.048) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 3.556) (xy 1.27 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Battery_Cell_1_1" + (pin passive line + (at 0 5.08 270) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:LED" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LED" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "LED diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LED_0_1" + (polyline + (pts + (xy -1.27 -1.27) (xy -1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy 1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "LED_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "LED_1" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LED" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "LED diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LED_1_0_1" + (polyline + (pts + (xy -1.27 -1.27) (xy -1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy 1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "LED_1_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Switch:SW_Push" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "SW" + (at 1.27 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SW_Push" + (at 0 -1.524 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Push button switch, generic, two pins" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "switch normally-open pushbutton push-button" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SW_Push_0_1" + (circle + (center -2.032 0) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 1.27) (xy 0 3.048) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 1.27) (xy -2.54 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.032 0) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 2.54) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 101.6 36.83) + (diameter 1.016) + (color 0 0 0 0) + (uuid "01f83146-4808-4dce-868e-509173e2f2d2") + ) + (junction + (at 245.11 72.39) + (diameter 1.016) + (color 0 0 0 0) + (uuid "09446760-860d-46e4-a2cb-b4efb2197664") + ) + (junction + (at 101.6 29.21) + (diameter 1.016) + (color 0 0 0 0) + (uuid "0c7dd312-a329-45c9-b655-54816fe7a0d8") + ) + (junction + (at 101.6 102.87) + (diameter 1.016) + (color 0 0 0 0) + (uuid "0ddd913a-01fd-481e-b154-5f1b5423e9cd") + ) + (junction + (at 38.1 113.03) + (diameter 1.016) + (color 0 0 0 0) + (uuid "0e6865fe-4e04-44c2-874d-f26c6b58e9dd") + ) + (junction + (at 246.38 87.63) + (diameter 1.016) + (color 0 0 0 0) + (uuid "1e6b4bb3-3eca-4d8f-9fee-303ed579a46d") + ) + (junction + (at 38.1 46.99) + (diameter 1.016) + (color 0 0 0 0) + (uuid "2dc6e2fb-c613-4b10-8cd4-8c427cd8b3b9") + ) + (junction + (at 100.33 125.73) + (diameter 1.016) + (color 0 0 0 0) + (uuid "2e8f0d38-d9a4-4756-b73d-115434410a2d") + ) + (junction + (at 151.13 54.61) + (diameter 1.016) + (color 0 0 0 0) + (uuid "3234a86c-96a3-4c56-805c-943fb18854fb") + ) + (junction + (at 166.37 39.37) + (diameter 1.016) + (color 0 0 0 0) + (uuid "375f294e-3277-4ea1-8dfb-a816af1d5545") + ) + (junction + (at 21.59 175.26) + (diameter 0) + (color 0 0 0 0) + (uuid "3991db45-6b52-4414-990c-2a61fa05413b") + ) + (junction + (at 38.1 72.39) + (diameter 1.016) + (color 0 0 0 0) + (uuid "42198247-7404-4437-9b4d-7a47b904f11e") + ) + (junction + (at 100.33 123.19) + (diameter 1.016) + (color 0 0 0 0) + (uuid "572def52-9267-40af-9e6d-1bcf66b96a05") + ) + (junction + (at 38.1 143.51) + (diameter 1.016) + (color 0 0 0 0) + (uuid "5d1de36e-0591-465f-a55e-a456bc8d900f") + ) + (junction + (at 166.37 59.69) + (diameter 1.016) + (color 0 0 0 0) + (uuid "5d503fda-9a47-407e-8971-e2fb41c46bdb") + ) + (junction + (at 38.1 59.69) + (diameter 1.016) + (color 0 0 0 0) + (uuid "68b1cfb0-f603-4a17-a333-c498c12b2e4f") + ) + (junction + (at 101.6 62.23) + (diameter 1.016) + (color 0 0 0 0) + (uuid "68d5716c-39ed-4b45-ac19-32a5be0d9a55") + ) + (junction + (at 38.1 95.25) + (diameter 1.016) + (color 0 0 0 0) + (uuid "6a8b8413-8e59-4e68-a535-8f5e8b45f9c3") + ) + (junction + (at 100.33 118.11) + (diameter 1.016) + (color 0 0 0 0) + (uuid "6e9efc33-f983-4f3b-8a53-1b607511aaf7") + ) + (junction + (at 101.6 95.25) + (diameter 1.016) + (color 0 0 0 0) + (uuid "739b591f-ee89-4e4b-a089-6321966edc77") + ) + (junction + (at 166.37 64.77) + (diameter 1.016) + (color 0 0 0 0) + (uuid "7451c90d-0ac1-4167-b535-6d5bd1a11100") + ) + (junction + (at 210.82 128.27) + (diameter 1.016) + (color 0 0 0 0) + (uuid "77257261-5047-4726-8bb9-c51a3d9690d5") + ) + (junction + (at 166.37 24.13) + (diameter 1.016) + (color 0 0 0 0) + (uuid "84d4acf2-95da-4bde-aaf9-948b78559314") + ) + (junction + (at 101.6 87.63) + (diameter 1.016) + (color 0 0 0 0) + (uuid "8642366e-14d5-4a4a-acc5-de8c0e7dc7d5") + ) + (junction + (at 166.37 46.99) + (diameter 1.016) + (color 0 0 0 0) + (uuid "8eafe96b-e358-4fb5-a4aa-165e62856b90") + ) + (junction + (at 38.1 85.09) + (diameter 1.016) + (color 0 0 0 0) + (uuid "91660baf-326e-48a4-991d-b0cf8125a873") + ) + (junction + (at 100.33 120.65) + (diameter 1.016) + (color 0 0 0 0) + (uuid "91686bb5-7a82-42fb-9000-db29e45a41fa") + ) + (junction + (at 172.72 124.46) + (diameter 0) + (color 0 0 0 0) + (uuid "96fdea46-808b-478f-b07f-9feb6cc1653b") + ) + (junction + (at 38.1 36.83) + (diameter 1.016) + (color 0 0 0 0) + (uuid "9aea78df-3dca-44b6-a4c7-387472e7d15c") + ) + (junction + (at 39.37 125.73) + (diameter 1.016) + (color 0 0 0 0) + (uuid "9f1c6574-d23a-419e-b919-1dc55a0404ca") + ) + (junction + (at 21.59 172.72) + (diameter 0) + (color 0 0 0 0) + (uuid "a6dcae4f-2b7c-4539-9fa4-79b851ef63c4") + ) + (junction + (at 38.1 102.87) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a78d65ce-1ebe-48d4-902e-55f5beb03611") + ) + (junction + (at 160.02 91.44) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a8761ae8-82cc-4f21-a73e-d7a72c17af3d") + ) + (junction + (at 38.1 29.21) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a92045c5-4f45-4090-af92-e196e8719e05") + ) + (junction + (at 21.59 177.8) + (diameter 0) + (color 0 0 0 0) + (uuid "b464d649-b842-4758-82f0-3e959aee5e59") + ) + (junction + (at 245.11 36.83) + (diameter 1.016) + (color 0 0 0 0) + (uuid "b5d3f096-4ffd-4330-ac44-75253f8f3315") + ) + (junction + (at 100.33 128.27) + (diameter 1.016) + (color 0 0 0 0) + (uuid "b8834576-b2f1-484c-934f-325a1fb1b67b") + ) + (junction + (at 116.84 34.29) + (diameter 0) + (color 0 0 0 0) + (uuid "be9300d1-d498-451a-8aba-c36b19bc90bd") + ) + (junction + (at 151.13 72.39) + (diameter 1.016) + (color 0 0 0 0) + (uuid "cddc9cef-9af1-487a-a149-58cdefb033b4") + ) + (junction + (at 21.59 185.42) + (diameter 0) + (color 0 0 0 0) + (uuid "d24c6036-a229-4a1d-b4b8-306ef7a8ae84") + ) + (junction + (at 101.6 110.49) + (diameter 1.016) + (color 0 0 0 0) + (uuid "d348d117-4b9d-47d4-9150-4630fb2e9cf8") + ) + (junction + (at 101.6 134.62) + (diameter 1.016) + (color 0 0 0 0) + (uuid "d98ff9ae-e1f8-4424-8c9a-9e8a74700dc5") + ) + (junction + (at 101.6 49.53) + (diameter 1.016) + (color 0 0 0 0) + (uuid "daf70a07-a3d2-4ced-9e93-1c9d8ce83d0f") + ) + (junction + (at 21.59 182.88) + (diameter 0) + (color 0 0 0 0) + (uuid "e06b9b66-7c86-4cc5-97aa-f7018e1961f1") + ) + (junction + (at 21.59 180.34) + (diameter 0) + (color 0 0 0 0) + (uuid "e230156b-a7fc-4f25-a51d-c1b94280856d") + ) + (junction + (at 101.6 74.93) + (diameter 1.016) + (color 0 0 0 0) + (uuid "ebc05d4e-ad2b-4267-bddb-704aafe43beb") + ) + (junction + (at 149.86 24.13) + (diameter 1.016) + (color 0 0 0 0) + (uuid "fc4733a3-c200-4f8e-9f63-f3b7c6201473") + ) + (no_connect + (at 39.37 107.95) + (uuid "3561e74a-3b9b-4754-9c3b-0a6e0ad07bbe") + ) + (no_connect + (at 100.33 113.03) + (uuid "426744f5-151b-4336-9db2-19b96ec1a6aa") + ) + (no_connect + (at 39.37 100.33) + (uuid "6489fbbd-1bc4-4ea3-ab88-9e537d0c503b") + ) + (no_connect + (at 39.37 105.41) + (uuid "75ba5b33-e060-4096-9e03-9e491baa032d") + ) + (no_connect + (at 44.45 177.8) + (uuid "ba7e77aa-8b7c-41ca-9e43-d38072e94671") + ) + (no_connect + (at 39.37 110.49) + (uuid "c399657a-fff5-4af1-9c4f-92ee20314fd7") + ) + (wire + (pts + (xy 101.6 110.49) (xy 101.6 134.62) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "01f8b511-43b6-4be5-9a9b-f237d246e930") + ) + (polyline + (pts + (xy 138.43 13.97) (xy 138.43 80.01) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0206e765-825a-4e51-9371-9f239143e77c") + ) + (wire + (pts + (xy 44.45 175.26) (xy 58.42 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "02bc6b3e-0522-400e-b6b8-d18c2cfd2960") + ) + (polyline + (pts + (xy 138.43 80.01) (xy 179.07 80.01) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0366978a-3e89-4bad-abec-cf07fade1137") + ) + (wire + (pts + (xy 100.33 135.89) (xy 118.11 135.89) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "05e5f229-ee1b-4890-b97c-8e7ece60ba60") + ) + (wire + (pts + (xy 100.33 102.87) (xy 101.6 102.87) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "09526a0f-66b4-4763-b3df-6bad533d60b5") + ) + (wire + (pts + (xy 24.13 90.17) (xy 39.37 90.17) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "095f082d-56ea-46a2-99cc-e27367978094") + ) + (wire + (pts + (xy 39.37 133.35) (xy 39.37 130.81) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0b9e7ca0-9d50-423a-94c8-1dda9a2eaa73") + ) + (wire + (pts + (xy 237.49 41.91) (xy 246.38 41.91) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0c0e6b8f-cbf6-44d9-be38-4e8b1191ac1f") + ) + (wire + (pts + (xy 165.1 52.07) (xy 176.53 52.07) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0c1f89ce-0c30-4b40-9919-454d5a2b39e2") + ) + (wire + (pts + (xy 24.13 44.45) (xy 39.37 44.45) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0cc87e31-a196-4965-ac0f-ac41abe2a337") + ) + (wire + (pts + (xy 100.33 95.25) (xy 101.6 95.25) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0ceef4c0-1081-4e21-b370-88a8d72ec333") + ) + (wire + (pts + (xy 165.1 34.29) (xy 176.53 34.29) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0dda1646-a646-4a28-a8d2-393b8c94d637") + ) + (wire + (pts + (xy 101.6 102.87) (xy 101.6 110.49) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0df6109b-09d2-45fb-ae96-95a5ff5e96e3") + ) + (wire + (pts + (xy 217.17 74.93) (xy 228.6 74.93) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0ea184c9-73d1-4b8a-8896-3886b45cbf01") + ) + (wire + (pts + (xy 39.37 128.27) (xy 39.37 125.73) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0f426fa1-fc2f-405a-ad53-6e830f7ee04b") + ) + (wire + (pts + (xy 21.59 172.72) (xy 31.75 172.72) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0f47421c-1e82-4036-b8e8-a06d02b43b87") + ) + (wire + (pts + (xy 111.76 171.45) (xy 120.65 171.45) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0fa1afbd-502b-4b48-9569-f2135f4a446c") + ) + (wire + (pts + (xy 100.33 118.11) (xy 114.3 118.11) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0fa594db-6fe0-4ea8-92c4-4e1c8599e0fb") + ) + (wire + (pts + (xy 101.6 36.83) (xy 101.6 49.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "114181eb-7392-4a8c-8162-9def16899b0d") + ) + (wire + (pts + (xy 44.45 172.72) (xy 58.42 172.72) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "115c8e86-c44c-49a7-bc69-7044c5ce83c9") + ) + (polyline + (pts + (xy 179.07 83.82) (xy 179.07 100.33) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "11a85d83-ca23-4a66-9a7a-3b010acc3da7") + ) + (wire + (pts + (xy 24.13 92.71) (xy 39.37 92.71) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "11c5b40a-374a-41a1-a6d6-686d5951b8b7") + ) + (wire + (pts + (xy 116.84 36.83) (xy 116.84 34.29) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "137b3fef-8b87-4da9-a1e4-8bcd4c388b4b") + ) + (wire + (pts + (xy 24.13 31.75) (xy 39.37 31.75) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "14b25b18-bec9-4720-ade2-c25b4acf1fbf") + ) + (wire + (pts + (xy 24.13 77.47) (xy 39.37 77.47) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "165b1d6b-0bde-449d-b13e-7c8c08638114") + ) + (wire + (pts + (xy 100.33 29.21) (xy 101.6 29.21) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "18c86c44-f8fe-4b42-a28c-0fca03224b5f") + ) + (wire + (pts + (xy 21.59 170.18) (xy 31.75 170.18) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "1913ae2c-1bc2-48d9-914f-4c532d02ffb4") + ) + (wire + (pts + (xy 100.33 90.17) (xy 114.3 90.17) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "1b6100b1-6db6-46ed-838f-9445ada9c264") + ) + (wire + (pts + (xy 21.59 185.42) (xy 31.75 185.42) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "1bdf1ae3-75b3-4478-9463-32e3a3943aed") + ) + (wire + (pts + (xy 24.13 82.55) (xy 39.37 82.55) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "1c51eda1-36b7-4ae2-aa1f-5d80edb4ea07") + ) + (wire + (pts + (xy 166.37 64.77) (xy 166.37 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "1cf58251-c1b2-4126-887d-6d7eeec86d3e") + ) + (wire + (pts + (xy 24.13 80.01) (xy 39.37 80.01) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "23004319-8511-4151-9b10-6403cf81d240") + ) + (wire + (pts + (xy 100.33 34.29) (xy 113.03 34.29) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "23fd8ab2-9115-4418-91e6-98eecb4fbf95") + ) + (wire + (pts + (xy 39.37 36.83) (xy 38.1 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2418aed3-fab0-4ebf-be99-31f25345da31") + ) + (wire + (pts + (xy 100.33 44.45) (xy 113.03 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "24dba7df-1920-481c-a78f-99e08575168f") + ) + (wire + (pts + (xy 100.33 31.75) (xy 113.03 31.75) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "263f14b8-9b4a-4116-ad3c-e465fa3d78c4") + ) + (wire + (pts + (xy 102.87 133.35) (xy 102.87 130.81) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "27785605-ef8c-4fa7-8f40-8dba236a9cba") + ) + (wire + (pts + (xy 24.13 67.31) (xy 39.37 67.31) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "27857518-158f-4e1c-9129-c2ac0153382a") + ) + (wire + (pts + (xy 237.49 59.69) (xy 246.38 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "278f19a2-5733-4692-9e34-9325919f9eaf") + ) + (wire + (pts + (xy 104.14 133.35) (xy 118.11 133.35) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "29440566-f617-45c7-8f5f-efafe2f0d24b") + ) + (wire + (pts + (xy 100.33 87.63) (xy 101.6 87.63) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2a393301-5f42-4cdb-951b-80f063c75605") + ) + (wire + (pts + (xy 166.37 39.37) (xy 166.37 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2ac31afe-6dde-403d-bbdc-3366c8b144f8") + ) + (wire + (pts + (xy 24.13 39.37) (xy 39.37 39.37) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2bdb988f-3bdd-4ab6-9ab7-f0110dd83690") + ) + (wire + (pts + (xy 39.37 21.59) (xy 38.1 21.59) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2c7f194e-4495-4fdc-8feb-e71a81fd860a") + ) + (wire + (pts + (xy 101.6 21.59) (xy 101.6 29.21) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2ce8fc04-dee9-4db8-90b8-839b250529bc") + ) + (wire + (pts + (xy 236.22 80.01) (xy 246.38 80.01) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2d1af4b2-022f-4455-819b-78883658e880") + ) + (wire + (pts + (xy 101.6 29.21) (xy 101.6 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2d57ee89-a9fd-4528-970a-f239cc711ad1") + ) + (wire + (pts + (xy 38.1 143.51) (xy 38.1 151.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2e1e6281-0991-4814-9e62-4e28c44fa195") + ) + (wire + (pts + (xy 165.1 67.31) (xy 176.53 67.31) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2f680110-9ea0-4f48-b5a6-990648d3cde2") + ) + (wire + (pts + (xy 146.05 172.72) (xy 146.05 180.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "307dbcd5-f6c8-4fe2-8716-3657053ad7e0") + ) + (wire + (pts + (xy 219.71 33.02) (xy 227.33 33.02) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3154fe1e-b45f-4d3b-8bab-828e398110b6") + ) + (wire + (pts + (xy 165.1 142.24) (xy 165.1 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "33529587-bbb4-4ca0-bcdf-15fd64295461") + ) + (wire + (pts + (xy 100.33 57.15) (xy 114.3 57.15) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3398ffa0-8151-4ab9-9a1e-05a8f3e68625") + ) + (wire + (pts + (xy 167.64 124.46) (xy 172.72 124.46) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "345d0db5-afa8-4790-839b-293d8c7171b3") + ) + (wire + (pts + (xy 165.1 137.16) (xy 165.1 132.08) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "36ab2ee8-a550-4312-900e-fe60a1ab52df") + ) + (wire + (pts + (xy 166.37 46.99) (xy 165.1 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3972d90f-ee24-4cf5-8d82-ff4abccf2f2b") + ) + (wire + (pts + (xy 100.33 80.01) (xy 114.3 80.01) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3a11d195-28e0-457d-8a65-fd02d49a1f78") + ) + (wire + (pts + (xy 151.13 72.39) (xy 151.13 73.66) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3a8d75eb-08de-4bf6-ad23-f62b27a89da1") + ) + (wire + (pts + (xy 25.4 138.43) (xy 39.37 138.43) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3af941ac-2cea-46a8-8535-299207a910e4") + ) + (wire + (pts + (xy 101.6 95.25) (xy 101.6 102.87) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3b74bf39-a850-41ab-80d6-abe0d70218a3") + ) + (wire + (pts + (xy 38.1 72.39) (xy 38.1 85.09) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3bad0292-560e-4959-9af2-db7bbf622092") + ) + (wire + (pts + (xy 213.36 92.71) (xy 224.79 92.71) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3c480991-e59f-463a-a3ee-fd8cbf828098") + ) + (wire + (pts + (xy 101.6 49.53) (xy 101.6 62.23) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3dd3167d-34d1-4cd3-a8bc-97b26d5a6d71") + ) + (wire + (pts + (xy 143.51 95.25) (xy 152.4 95.25) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3ea03728-7a77-4313-bf8a-27a007c9d6a6") + ) + (wire + (pts + (xy 24.13 74.93) (xy 39.37 74.93) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3f14ea49-be66-46f4-9926-3bd40ac115b6") + ) + (polyline + (pts + (xy 182.88 13.97) (xy 283.21 13.97) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "40480825-a2e7-4339-bc0c-57c639418bad") + ) + (wire + (pts + (xy 100.33 140.97) (xy 116.84 140.97) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4193c934-e0cb-4ad9-94c5-4a60e078c3b7") + ) + (wire + (pts + (xy 165.1 36.83) (xy 176.53 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "43e1e6bc-da65-4644-935c-20e1310f6db3") + ) + (wire + (pts + (xy 149.86 44.45) (xy 152.4 44.45) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "44e721b9-a161-4059-8ad4-0330db8573e5") + ) + (wire + (pts + (xy 39.37 29.21) (xy 38.1 29.21) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4512e1de-1ae8-4271-aab5-cfad75ab4cbf") + ) + (wire + (pts + (xy 21.59 180.34) (xy 31.75 180.34) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4559dd26-8d90-4217-a8b2-1adb39d7efbd") + ) + (wire + (pts + (xy 213.36 90.17) (xy 224.79 90.17) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4583b099-356b-4a04-b729-523bb48053d4") + ) + (wire + (pts + (xy 44.45 182.88) (xy 58.42 182.88) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "45b2a9f6-7bba-4234-9d93-c97415ec396e") + ) + (polyline + (pts + (xy 179.07 13.97) (xy 138.43 13.97) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "45d6e2c6-b846-4a31-b2e4-41223b271484") + ) + (wire + (pts + (xy 25.4 140.97) (xy 39.37 140.97) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "45dc6788-a6ca-4954-b773-6fcc3cd9a485") + ) + (wire + (pts + (xy 25.4 135.89) (xy 39.37 135.89) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4613e1dd-ddaa-4616-a143-d8286cfedb2f") + ) + (wire + (pts + (xy 189.23 90.17) (xy 200.66 90.17) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "46f1fe2c-bc01-4b14-852f-f73c7cee1411") + ) + (wire + (pts + (xy 100.33 128.27) (xy 100.33 130.81) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4805cbab-da73-4d3e-afa3-21868e76e954") + ) + (wire + (pts + (xy 44.45 170.18) (xy 58.42 170.18) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4b9a1e55-d75d-425c-9459-6ce1d0c58dbe") + ) + (wire + (pts + (xy 246.38 36.83) (xy 245.11 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4c8413d4-dc71-4cd7-a62e-95ffe5554e70") + ) + (wire + (pts + (xy 194.31 64.77) (xy 185.42 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4ce03590-e0e1-4703-b46c-7b385c2aeba2") + ) + (wire + (pts + (xy 140.97 49.53) (xy 152.4 49.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4d68bfd0-600e-4f1c-a4c7-76529ae0afbb") + ) + (wire + (pts + (xy 100.33 41.91) (xy 113.03 41.91) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4d6acc38-20a2-49b8-8ec8-88bfa5c9826b") + ) + (wire + (pts + (xy 21.59 177.8) (xy 21.59 180.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4d8f6872-33e2-4cfe-a328-7dfb9a896a65") + ) + (wire + (pts + (xy 24.13 26.67) (xy 39.37 26.67) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4f367558-6a61-4bdc-a05a-2c9336e78c42") + ) + (wire + (pts + (xy 166.37 24.13) (xy 171.45 24.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4fa99099-f9f2-4dd5-ac40-ec35aef9f960") + ) + (wire + (pts + (xy 217.17 80.01) (xy 228.6 80.01) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "52a1d204-b22e-4db5-8d92-714309c2afa6") + ) + (wire + (pts + (xy 24.13 49.53) (xy 39.37 49.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "53601def-9dee-4e38-a35e-d28ee2e95715") + ) + (wire + (pts + (xy 140.97 59.69) (xy 152.4 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "53ded23b-dad2-4c6d-9d77-91fa13f8ed66") + ) + (wire + (pts + (xy 100.33 120.65) (xy 100.33 123.19) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "55d77ab4-691b-4b46-af02-3a8de5ec7d03") + ) + (wire + (pts + (xy 237.49 26.67) (xy 246.38 26.67) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "572bf966-40b4-4074-84f8-0470619143e0") + ) + (wire + (pts + (xy 100.33 74.93) (xy 101.6 74.93) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "59b84cf5-8fad-4fea-b0b7-c97376d20370") + ) + (wire + (pts + (xy 100.33 39.37) (xy 113.03 39.37) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5af7677d-8b5c-4dfa-a482-9a873acac0d3") + ) + (wire + (pts + (xy 140.97 67.31) (xy 152.4 67.31) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5b55646c-afd9-4127-85d7-7d899753820b") + ) + (wire + (pts + (xy 165.1 41.91) (xy 176.53 41.91) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5bc6c1c5-1078-47c0-bb58-2c09d06acf6d") + ) + (polyline + (pts + (xy 139.7 83.82) (xy 179.07 83.82) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5e79d815-3e66-452c-bc9d-447f9c537736") + ) + (polyline + (pts + (xy 283.21 162.56) (xy 205.74 162.56) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "609c03aa-db26-47fb-b858-1a8c9396360a") + ) + (wire + (pts + (xy 140.97 46.99) (xy 152.4 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "648efa99-1bab-4fd0-bb68-0877ea0a00d2") + ) + (wire + (pts + (xy 100.33 138.43) (xy 118.11 138.43) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "650fff61-ef4c-4b55-9677-4b68e7f23f78") + ) + (wire + (pts + (xy 38.1 95.25) (xy 39.37 95.25) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "66aa1bc3-ffb7-43d4-88ae-6c86417d54bc") + ) + (wire + (pts + (xy 44.45 185.42) (xy 58.42 185.42) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "677aafeb-ccf6-4f72-9609-f4102fa4c15d") + ) + (wire + (pts + (xy 38.1 102.87) (xy 38.1 113.03) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "67d86072-2f7f-4489-beb0-6ba3aea587e9") + ) + (wire + (pts + (xy 38.1 85.09) (xy 38.1 95.25) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "6828e5b1-9686-4f2b-afeb-e93e9ba5ac33") + ) + (wire + (pts + (xy 116.84 19.05) (xy 116.84 24.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "68a0beb7-36cd-4564-8402-3501800a8ad9") + ) + (wire + (pts + (xy 152.4 34.29) (xy 151.13 34.29) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "6a208df9-979b-4538-9095-200a47936ed0") + ) + (wire + (pts + (xy 237.49 64.77) (xy 246.38 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "6cc0d10d-dc8b-4db1-81e5-cf2206998221") + ) + (wire + (pts + (xy 21.59 175.26) (xy 31.75 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "6d025ced-6ac4-4b51-9abd-c7c1dda9f9b8") + ) + (wire + (pts + (xy 116.84 34.29) (xy 116.84 31.75) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7087eb60-8768-46f6-a30a-c818144536a3") + ) + (wire + (pts + (xy 236.22 74.93) (xy 246.38 74.93) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "74af2b77-c1c9-4eae-bff8-96bc046b8c06") + ) + (wire + (pts + (xy 140.97 62.23) (xy 152.4 62.23) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "77da69f1-4a7e-4daf-b100-27fb75871e8c") + ) + (wire + (pts + (xy 237.49 29.21) (xy 246.38 29.21) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "79c29df9-918f-4473-b11b-3fedd120bff2") + ) + (wire + (pts + (xy 165.1 72.39) (xy 176.53 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7a7c8fd8-e6cb-4215-acf6-72a01929c4aa") + ) + (wire + (pts + (xy 165.1 24.13) (xy 166.37 24.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7b22b3c7-87af-4c06-91e6-d5b323c7430d") + ) + (wire + (pts + (xy 104.14 134.62) (xy 104.14 133.35) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7bd5b512-af4d-43db-aa46-0fc231d1db36") + ) + (wire + (pts + (xy 101.6 134.62) (xy 101.6 151.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7cb4adc7-e689-43cd-a738-0ba18c62365e") + ) + (wire + (pts + (xy 38.1 59.69) (xy 38.1 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7da3ae6c-1a5f-4a26-ad9b-821390937dee") + ) + (wire + (pts + (xy 21.59 177.8) (xy 31.75 177.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7dc1ce1b-568c-4602-a1cf-8ad58eddd87c") + ) + (wire + (pts + (xy 38.1 113.03) (xy 39.37 113.03) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7e61ab51-cbb1-4b94-801a-34a87b40bc16") + ) + (wire + (pts + (xy 38.1 72.39) (xy 39.37 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7f0c1ea5-31ba-4e3c-b23d-dc37801fb19b") + ) + (wire + (pts + (xy 24.13 54.61) (xy 39.37 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7f6c64d0-de67-4b74-b5d8-420e361384dc") + ) + (wire + (pts + (xy 100.33 52.07) (xy 114.3 52.07) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "80974d09-14d4-49e4-885a-2070ecdadbdc") + ) + (wire + (pts + (xy 246.38 87.63) (xy 246.38 90.17) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "818111a6-1429-497e-b8d7-f2616a7ec373") + ) + (wire + (pts + (xy 25.4 130.81) (xy 39.37 130.81) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "83058c9b-309f-4f4d-b8e7-c7c6ed97bc4b") + ) + (wire + (pts + (xy 237.49 49.53) (xy 246.38 49.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "849f4f89-7de2-4aea-bdf4-77006099f5f6") + ) + (wire + (pts + (xy 24.13 24.13) (xy 39.37 24.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "84dea790-d322-4142-adfd-28c76d8064cf") + ) + (polyline + (pts + (xy 283.21 100.33) (xy 283.21 162.56) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "850230a1-e985-4aec-bfc1-cca85f47f39d") + ) + (wire + (pts + (xy 100.33 62.23) (xy 101.6 62.23) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "866c2804-79f0-42ad-b60b-35330f41683f") + ) + (wire + (pts + (xy 143.51 24.13) (xy 149.86 24.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "86bba780-a183-42d2-86e6-b1ca627942a1") + ) + (wire + (pts + (xy 246.38 85.09) (xy 246.38 87.63) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "875855ef-0e49-4c33-b3c6-eba229f835d9") + ) + (wire + (pts + (xy 100.33 24.13) (xy 113.03 24.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "88437818-a1b8-44b4-bc00-e42bba625dc9") + ) + (wire + (pts + (xy 100.33 36.83) (xy 101.6 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "89a5c41e-d361-4706-aae5-5c9b84b69e11") + ) + (wire + (pts + (xy 38.1 95.25) (xy 38.1 102.87) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8acaf6b9-a3a5-456a-a486-3bf8ee9b4b79") + ) + (wire + (pts + (xy 172.72 133.35) (xy 172.72 139.7) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8b398452-7864-4ae1-87b2-f3c31f993db8") + ) + (wire + (pts + (xy 39.37 143.51) (xy 38.1 143.51) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8e10817d-5099-439b-9504-1c054cce61ce") + ) + (wire + (pts + (xy 24.13 57.15) (xy 39.37 57.15) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8f9be11e-1269-410d-862a-0fd43d2c4c47") + ) + (wire + (pts + (xy 166.37 64.77) (xy 166.37 73.66) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "906df0a0-5839-47c0-b332-cec00bfc8d50") + ) + (wire + (pts + (xy 185.42 59.69) (xy 194.31 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "907bca71-7218-4f03-b4bd-586121fcf8e0") + ) + (wire + (pts + (xy 245.11 39.37) (xy 245.11 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "90dc18a7-d136-49c5-aca7-9f578dd2dde7") + ) + (wire + (pts + (xy 38.1 113.03) (xy 38.1 143.51) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "93214faa-922d-478e-8ec1-80d24a2b2723") + ) + (wire + (pts + (xy 165.1 132.08) (xy 156.21 132.08) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9399a2b1-4c2e-41f3-8f9a-0a23f3b4fe50") + ) + (wire + (pts + (xy 237.49 72.39) (xy 245.11 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "951ff854-9b87-48ab-8827-7adbe6fee82c") + ) + (wire + (pts + (xy 172.72 123.19) (xy 172.72 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "95373110-3923-4941-a46e-2100bad8babe") + ) + (wire + (pts + (xy 228.6 36.83) (xy 245.11 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "971da4aa-7a1c-47f1-a56d-06807cbf9be9") + ) + (wire + (pts + (xy 102.87 130.81) (xy 118.11 130.81) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "97660885-3db5-4ad6-a54d-91f2fd79e84a") + ) + (wire + (pts + (xy 100.33 146.05) (xy 116.84 146.05) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "982b7bd6-301a-4a29-b4bb-333ee127a858") + ) + (wire + (pts + (xy 100.33 64.77) (xy 114.3 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "994fc6db-04e3-467f-a34e-4a116e6eee69") + ) + (wire + (pts + (xy 140.97 36.83) (xy 152.4 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9a685b37-4a30-4b2a-9c54-4a8e4fc58508") + ) + (wire + (pts + (xy 259.08 151.13) (xy 274.32 151.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9ab92207-1da7-4613-a632-d3972813f57b") + ) + (wire + (pts + (xy 101.6 87.63) (xy 101.6 95.25) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9aba9eaa-06af-4d38-b822-b427891cc96f") + ) + (wire + (pts + (xy 147.32 172.72) (xy 146.05 172.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9be0d816-881a-4c4b-a87f-c108c514f24b") + ) + (wire + (pts + (xy 100.33 54.61) (xy 114.3 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9ce7d010-913b-4e34-8311-b9fad075fcaf") + ) + (wire + (pts + (xy 245.11 77.47) (xy 245.11 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9d2bfb75-3655-468a-99b3-1689c86cc127") + ) + (wire + (pts + (xy 237.49 21.59) (xy 246.38 21.59) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9d98d134-0903-4480-ac01-2f2837a27307") + ) + (wire + (pts + (xy 116.84 46.99) (xy 116.84 44.45) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9dbceeba-9770-4d28-bb56-72cb3d7824e2") + ) + (wire + (pts + (xy 100.33 133.35) (xy 102.87 133.35) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9dcf989b-04cd-40f0-a8ff-a3c29c952c7a") + ) + (wire + (pts + (xy 100.33 69.85) (xy 114.3 69.85) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9e68a39c-8e96-496e-9540-23ea32b85a2c") + ) + (polyline + (pts + (xy 283.21 96.52) (xy 182.88 96.52) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a174da27-94f5-429b-8d08-28d0331b42e5") + ) + (wire + (pts + (xy 25.4 118.11) (xy 39.37 118.11) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a27f7727-7dd2-4cb4-a780-123706d8c0c2") + ) + (wire + (pts + (xy 140.97 29.21) (xy 152.4 29.21) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a4649f24-d20d-45cd-afcf-e14e3a6451b5") + ) + (wire + (pts + (xy 219.71 27.94) (xy 227.33 27.94) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a4c4d437-bfda-443b-b6ba-40a4fa35f626") + ) + (wire + (pts + (xy 21.59 180.34) (xy 21.59 182.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a506ba1b-2d7b-4d73-93d8-d4ed15d4c77d") + ) + (polyline + (pts + (xy 182.88 96.52) (xy 182.88 13.97) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a523695c-35b4-4859-b781-154824ab5ca9") + ) + (wire + (pts + (xy 100.33 85.09) (xy 114.3 85.09) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a7065f1e-dcee-43b5-a342-a4982c31c272") + ) + (polyline + (pts + (xy 205.74 162.56) (xy 205.74 100.33) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a80899eb-c281-402c-81c0-5d5b22336f45") + ) + (wire + (pts + (xy 135.89 170.18) (xy 147.32 170.18) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a8b311bd-9d87-4612-b6dd-722a312865cc") + ) + (wire + (pts + (xy 143.51 91.44) (xy 152.4 91.44) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a99fd9b5-8940-4c26-9884-c49137a564b7") + ) + (wire + (pts + (xy 140.97 26.67) (xy 152.4 26.67) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "aa9c9fa8-922d-4661-b6ba-f949438fcd13") + ) + (wire + (pts + (xy 166.37 59.69) (xy 166.37 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "abaf618d-6655-4799-acfb-78bd7f6588da") + ) + (wire + (pts + (xy 24.13 34.29) (xy 39.37 34.29) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "abbc6fd4-ca2e-4f14-b684-2a7fe1b8da2d") + ) + (wire + (pts + (xy 25.4 115.57) (xy 39.37 115.57) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ac5eb4a7-a387-48d6-b4f5-8a76d938534b") + ) + (wire + (pts + (xy 165.1 31.75) (xy 176.53 31.75) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ad660c70-c749-4a2b-b6f8-2d6803a806d8") + ) + (wire + (pts + (xy 165.1 62.23) (xy 176.53 62.23) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ae5d10fb-0c1f-487f-bf73-01918e8dbf6f") + ) + (wire + (pts + (xy 140.97 57.15) (xy 152.4 57.15) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "aed451a7-38ba-4d37-91a4-86065f3970c8") + ) + (wire + (pts + (xy 185.42 27.94) (xy 194.31 27.94) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "af344df5-f8f1-4300-8c40-51d1681a9cb2") + ) + (wire + (pts + (xy 25.4 125.73) (xy 39.37 125.73) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "af881887-5cc6-4605-8c4c-7bf922a8bf80") + ) + (wire + (pts + (xy 165.1 59.69) (xy 166.37 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b28b3aad-ce7a-4d5e-8b52-2d16de7b6b1e") + ) + (wire + (pts + (xy 100.33 59.69) (xy 114.3 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b2a6f153-6152-4b4a-a95b-ba79228f774c") + ) + (wire + (pts + (xy 166.37 39.37) (xy 165.1 39.37) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b36ced1f-5291-481a-8fe7-e37301bca3e6") + ) + (wire + (pts + (xy 245.11 72.39) (xy 246.38 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b40f7e0e-63a8-4843-8bd1-9c6ba9993089") + ) + (wire + (pts + (xy 135.89 175.26) (xy 147.32 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b43536d1-43a9-495b-95c7-526b195691f6") + ) + (polyline + (pts + (xy 205.74 100.33) (xy 283.21 100.33) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b5e21c8b-4f23-470f-94c9-40687ea53ea2") + ) + (wire + (pts + (xy 151.13 34.29) (xy 151.13 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b69731dc-a74d-4be9-8b11-0a21dad4be18") + ) + (wire + (pts + (xy 100.33 67.31) (xy 114.3 67.31) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b7378d4f-15e7-48c2-b38c-9dd31063481b") + ) + (wire + (pts + (xy 140.97 31.75) (xy 152.4 31.75) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b8e9f158-11ed-47d8-aeca-b823f9f18779") + ) + (wire + (pts + (xy 140.97 39.37) (xy 152.4 39.37) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b9601a0d-d977-4b3d-b39f-d76ae64bf1a5") + ) + (polyline + (pts + (xy 179.07 13.97) (xy 179.07 80.01) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b9f93fb3-7ced-4059-90cb-aad416d993c2") + ) + (polyline + (pts + (xy 283.21 13.97) (xy 283.21 96.52) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "bb67cd1c-91b3-4ba9-a62d-4d4173d20f22") + ) + (wire + (pts + (xy 149.86 24.13) (xy 149.86 44.45) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "bb6903ed-84a9-4c39-98ce-b2fbbf83ed6c") + ) + (wire + (pts + (xy 21.59 182.88) (xy 31.75 182.88) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "bc643a5b-1f9a-4506-9df6-1f26b4fe94cd") + ) + (wire + (pts + (xy 166.37 29.21) (xy 166.37 39.37) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "bce33354-18a7-44b2-9dba-ee85e434d6ee") + ) + (wire + (pts + (xy 24.13 64.77) (xy 39.37 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "bdd769c4-bb00-4e5a-8931-5f5c7932ae17") + ) + (wire + (pts + (xy 172.72 139.7) (xy 171.45 139.7) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "bea25862-abba-489f-bceb-f737bbb678c5") + ) + (wire + (pts + (xy 165.1 26.67) (xy 166.37 26.67) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c02cb16b-594f-4980-84bc-d3a41f893fe1") + ) + (wire + (pts + (xy 38.1 36.83) (xy 38.1 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c14872e9-a94b-4975-8e29-9f8e477e2679") + ) + (wire + (pts + (xy 100.33 46.99) (xy 116.84 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c15f1642-2bad-485f-ac22-f9329a013e94") + ) + (wire + (pts + (xy 151.13 72.39) (xy 152.4 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c4358a16-7fbe-4322-9284-f64d477b6623") + ) + (wire + (pts + (xy 185.42 33.02) (xy 194.31 33.02) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c469846c-a104-4bfc-aae8-66d18a7e7de0") + ) + (wire + (pts + (xy 24.13 52.07) (xy 39.37 52.07) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c51236ef-c793-47a1-9813-b44a2f2ba8b1") + ) + (wire + (pts + (xy 151.13 54.61) (xy 152.4 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c5b352a6-6b4e-44b1-94d3-3d0f300f9efb") + ) + (polyline + (pts + (xy 138.43 100.33) (xy 138.43 83.82) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c638678c-430a-49cf-a0d4-86651f3fbb2f") + ) + (wire + (pts + (xy 160.02 91.44) (xy 175.26 91.44) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c7a234a1-ffa5-48e7-99f2-0165a3be0943") + ) + (wire + (pts + (xy 140.97 69.85) (xy 152.4 69.85) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c9549976-7e08-4d60-8899-3ba07e9939f9") + ) + (wire + (pts + (xy 237.49 67.31) (xy 246.38 67.31) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c970f863-2eeb-4363-945c-2275a112fd4c") + ) + (wire + (pts + (xy 219.71 59.69) (xy 228.6 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ca48b8c9-42a1-436b-92cc-1c6a5ab062ae") + ) + (wire + (pts + (xy 172.72 115.57) (xy 168.91 115.57) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "caa4298d-02d5-4f80-9b9d-47f1bd739f15") + ) + (wire + (pts + (xy 21.59 185.42) (xy 21.59 186.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cb043ddc-124c-4725-84cc-e8e3f0436784") + ) + (wire + (pts + (xy 100.33 72.39) (xy 114.3 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cb0f55e2-3db9-424f-95d5-cc3e943c6710") + ) + (wire + (pts + (xy 38.1 29.21) (xy 38.1 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cb9df0ef-ece0-455c-bce6-7041640241fe") + ) + (wire + (pts + (xy 100.33 21.59) (xy 101.6 21.59) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cbf52acc-7d17-4162-af1b-92c9f7574539") + ) + (wire + (pts + (xy 165.1 49.53) (xy 176.53 49.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cc35063f-3def-4196-bca4-fc65afdf4d1b") + ) + (wire + (pts + (xy 237.49 34.29) (xy 246.38 34.29) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cc4add4e-41d8-4e86-bb36-d2dc878e8d00") + ) + (wire + (pts + (xy 100.33 110.49) (xy 101.6 110.49) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cc576a5e-88e5-4abe-8854-daea569a0ede") + ) + (wire + (pts + (xy 246.38 77.47) (xy 245.11 77.47) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ce5b0dfe-37f0-4d1b-9f56-10ae411d36e6") + ) + (wire + (pts + (xy 143.51 139.7) (xy 157.48 139.7) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ceb6cdcb-8e0b-4367-b390-08e19d41682c") + ) + (wire + (pts + (xy 24.13 69.85) (xy 39.37 69.85) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cedfad79-223b-4114-b540-a59dbf7954f3") + ) + (wire + (pts + (xy 24.13 87.63) (xy 39.37 87.63) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cf2ef21f-2685-4484-924d-4da5a1500639") + ) + (wire + (pts + (xy 100.33 118.11) (xy 100.33 120.65) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cfcf83b1-0e49-4dd8-a896-3cd24e007c9e") + ) + (wire + (pts + (xy 21.59 170.18) (xy 21.59 172.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d1718049-ea50-43e8-93c7-73a9aba2e36a") + ) + (wire + (pts + (xy 111.76 19.05) (xy 116.84 19.05) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d227fc0c-bf2f-4fed-b7fc-74a4cfce6442") + ) + (wire + (pts + (xy 100.33 49.53) (xy 101.6 49.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d4271cdf-2b7a-4efd-8fa1-f506ca5d8e3f") + ) + (wire + (pts + (xy 151.13 54.61) (xy 151.13 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d42754be-232c-4f72-91c3-410cdb7a8c00") + ) + (wire + (pts + (xy 100.33 26.67) (xy 113.03 26.67) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d5e4519a-6c2a-4312-baa7-395373ccf3bd") + ) + (wire + (pts + (xy 165.1 44.45) (xy 176.53 44.45) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d6ace78d-04f5-4e4f-a59a-9296b53097d3") + ) + (wire + (pts + (xy 24.13 62.23) (xy 39.37 62.23) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d7322664-d6dd-4eb4-b2ef-8843e8473b65") + ) + (wire + (pts + (xy 237.49 46.99) (xy 246.38 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d8a29fd7-0b89-410f-b975-b8c97fb9c5da") + ) + (wire + (pts + (xy 237.49 62.23) (xy 246.38 62.23) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d9e4bb90-e4df-4aae-93aa-3267aceb0fcc") + ) + (wire + (pts + (xy 219.71 64.77) (xy 228.6 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "db076b15-ed3c-497e-91a0-4c967b3f7f23") + ) + (wire + (pts + (xy 24.13 41.91) (xy 39.37 41.91) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "db58a393-95ba-45ff-8e31-509a8acf9ad4") + ) + (wire + (pts + (xy 21.59 172.72) (xy 21.59 175.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ddc1a6fc-9334-488d-8057-29ba2f9d90e4") + ) + (wire + (pts + (xy 189.23 92.71) (xy 200.66 92.71) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "de759948-161e-4bbe-93f4-670a576de500") + ) + (wire + (pts + (xy 101.6 74.93) (xy 101.6 87.63) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "df586b02-02b3-429d-a0c0-fe4a87110a37") + ) + (polyline + (pts + (xy 139.7 83.82) (xy 138.43 83.82) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "df68d577-4fdb-42a9-a618-f997c5cb205b") + ) + (wire + (pts + (xy 100.33 123.19) (xy 100.33 125.73) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e2dc4785-3e17-472a-82b9-5050a49344b6") + ) + (wire + (pts + (xy 228.6 38.1) (xy 228.6 36.83) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e30fb371-7146-4845-9860-595357c2a1b2") + ) + (wire + (pts + (xy 140.97 64.77) (xy 152.4 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e48c2411-8cec-4a56-a964-fc311cc46655") + ) + (wire + (pts + (xy 38.1 46.99) (xy 39.37 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e5c3c323-3462-4dd1-b98c-36f997c5b6c0") + ) + (wire + (pts + (xy 140.97 52.07) (xy 152.4 52.07) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e70e5b60-a459-4c08-abff-54232432d8fa") + ) + (wire + (pts + (xy 73.66 170.18) (xy 80.01 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e7850d99-4821-4d2c-87c8-137a50f59b9b") + ) + (wire + (pts + (xy 237.49 54.61) (xy 246.38 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e84fc25e-a81d-4015-bf9c-a56f90ec2647") + ) + (wire + (pts + (xy 140.97 41.91) (xy 152.4 41.91) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e904e67d-687b-4696-862e-14a432e67103") + ) + (wire + (pts + (xy 38.1 21.59) (xy 38.1 29.21) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "eabde296-8108-4f58-988b-0a8aad10b025") + ) + (wire + (pts + (xy 135.89 167.64) (xy 147.32 167.64) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ebcd0dc8-9487-4b2c-82a3-c3ae292efd5f") + ) + (wire + (pts + (xy 38.1 85.09) (xy 39.37 85.09) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ecdb34a2-4cdc-4a30-a88c-cbf5ac83399c") + ) + (wire + (pts + (xy 165.1 64.77) (xy 166.37 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ed792a35-5756-44dd-82cf-7918ecc06d2f") + ) + (wire + (pts + (xy 100.33 125.73) (xy 100.33 128.27) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ee7c5229-8122-44df-afad-d951332531ee") + ) + (wire + (pts + (xy 160.02 91.44) (xy 160.02 95.25) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "efc35da1-a63a-4255-80cb-ee36b2acd693") + ) + (wire + (pts + (xy 100.33 77.47) (xy 114.3 77.47) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f08b78e3-00cc-4545-b76f-007757fa75b3") + ) + (wire + (pts + (xy 38.1 102.87) (xy 39.37 102.87) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f094a04e-97d3-4bf8-800d-8371147afe46") + ) + (wire + (pts + (xy 38.1 59.69) (xy 39.37 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f10ca11b-8e6e-41c6-8cce-e4f8cb2a7363") + ) + (polyline + (pts + (xy 179.07 100.33) (xy 139.7 100.33) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f178515b-b448-485d-b4f3-17f976e8a7a0") + ) + (wire + (pts + (xy 152.4 24.13) (xy 149.86 24.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f1a8edab-bf46-4526-a465-5634381ae6a3") + ) + (wire + (pts + (xy 165.1 69.85) (xy 176.53 69.85) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f2578955-12d7-4c02-87e0-8a8e60f919b9") + ) + (wire + (pts + (xy 172.72 124.46) (xy 172.72 125.73) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f28736d6-1125-4cc0-b54b-7d5c5c3e60ea") + ) + (wire + (pts + (xy 246.38 39.37) (xy 245.11 39.37) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f352e561-93ae-4eda-af14-a930a36aa74a") + ) + (wire + (pts + (xy 166.37 26.67) (xy 166.37 24.13) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f48f0041-ce42-4bd4-9cbf-e7a61f40b63d") + ) + (wire + (pts + (xy 44.45 180.34) (xy 58.42 180.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f612c023-1a29-4c76-9f61-5f96b8089924") + ) + (wire + (pts + (xy 21.59 182.88) (xy 21.59 185.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f659ef3b-b75b-4b6d-8c13-5ab55283a67a") + ) + (wire + (pts + (xy 100.33 82.55) (xy 114.3 82.55) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f6bd7aba-1f99-4f1e-b21f-516a44b7739d") + ) + (wire + (pts + (xy 116.84 34.29) (xy 123.19 34.29) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f6d80c07-f1bb-4215-a565-9714fdcb6ed6") + ) + (wire + (pts + (xy 101.6 62.23) (xy 101.6 74.93) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f9f43e84-340b-4af7-8310-0549b26e116e") + ) + (wire + (pts + (xy 38.1 46.99) (xy 38.1 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "fa731abd-5343-4a3a-97a6-2fafda7929ea") + ) + (wire + (pts + (xy 165.1 57.15) (xy 176.53 57.15) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "fab03173-e991-4b31-9f3e-4fd52fb45287") + ) + (wire + (pts + (xy 21.59 175.26) (xy 21.59 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fac50c5f-0604-45f1-99ac-7dca4b201fc0") + ) + (wire + (pts + (xy 101.6 134.62) (xy 104.14 134.62) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "faea1312-325a-42de-ac79-3fa8abc809f3") + ) + (wire + (pts + (xy 165.1 54.61) (xy 176.53 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "fcad587d-8ae7-4c7d-a56f-02c87f607c8d") + ) + (wire + (pts + (xy 165.1 29.21) (xy 166.37 29.21) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ff0e0c14-7ce9-493b-9fd4-786183bf280d") + ) + (polyline + (pts + (xy 138.43 100.33) (xy 139.7 100.33) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ff54cdc2-4b40-4994-8140-ac296a31bdc0") + ) + (text "40Way GPIO Header" + (exclude_from_sim no) + (at 143.51 19.05 0) + (effects + (font + (size 2.007 2.007) + ) + (justify left bottom) + ) + (uuid "26499fda-28f0-49df-ae6e-bde6da76eedc") + ) + (text "Activity LED" + (exclude_from_sim no) + (at 119.634 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "33e14999-b5ae-46d2-ac28-01787a512419") + ) + (text "FAN connector\n" + (exclude_from_sim no) + (at 140.335 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4d2ba834-d802-4bfb-bc1b-6110be48d065") + ) + (text "Ethernet POE\nProtection" + (exclude_from_sim no) + (at 189.23 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "726d5642-3df2-46ac-8dab-77f2dd7a181f") + ) + (text "GPIO Voltage select\n" + (exclude_from_sim no) + (at 167.64 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "8b0e77d6-7888-4840-a867-95c0b6bc01b5") + ) + (text "Not Fitted header" + (exclude_from_sim no) + (at 132.715 123.825 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "b8fcd648-8385-4e85-ba16-e9b058ae3ba3") + ) + (text "POE Header" + (exclude_from_sim no) + (at 201.93 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c0b7f3c6-3a8b-4cbc-8e07-4879365e8103") + ) + (text "Force RPIBOOT = Jumper Pins 1-2 \n" + (exclude_from_sim no) + (at 60.325 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c78980a8-e749-4c70-b9e3-d042eb419706") + ) + (text "PWR LED" + (exclude_from_sim no) + (at 175.895 117.475 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "e4a9ddd8-7ada-440b-a9de-a5d7da8f72b2") + ) + (text "Ethernet" + (exclude_from_sim no) + (at 217.17 19.05 0) + (effects + (font + (size 2.0066 2.0066) + ) + (justify left bottom) + ) + (uuid "f7d43406-366f-4e28-b077-a5ba452fce9a") + ) + (text "CM5Lite SDCARD I/F" + (exclude_from_sim no) + (at 210.82 106.68 0) + (effects + (font + (size 2.007 2.007) + ) + (justify left bottom) + ) + (uuid "fffbe5d9-ab4f-4620-8b07-dfed6958ef21") + ) + (label "+1.8v" + (at 148.59 95.25 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "022a97fa-643b-4302-b44c-26a956146db7") + ) + (label "GPIO24" + (at 175.26 44.45 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "028825a5-a5a1-4471-a5f1-08090406bcd8") + ) + (label "+5v" + (at 170.18 24.13 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "05c1c0ae-f846-4942-b9ca-9f0f8f62492d") + ) + (label "GPIO5" + (at 24.13 62.23 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "09660697-d5c8-4aef-8c5c-0260789058fc") + ) + (label "TRD3_N" + (at 103.124 26.67 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0a6b5814-2972-4ec4-8bea-46828fb75039") + ) + (label "GPIO2" + (at 24.13 92.71 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0b832a58-f83d-46d7-8219-03220e6bbced") + ) + (label "GPIO9" + (at 24.13 69.85 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0cdebb81-7707-4273-b91b-84c97256655a") + ) + (label "TRD3_N" + (at 245.11 54.61 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1173c720-e467-4755-8b29-61c1af00679b") + ) + (label "ETH_LEDG" + (at 103.124 41.91 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1401aaf2-7f13-48d0-8a1f-1a41703e0721") + ) + (label "TRD1_N" + (at 193.04 64.77 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1427beee-3bac-4761-90c7-1d211b9ad51c") + ) + (label "+3.3v" + (at 148.59 24.13 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "14891ca4-c283-4a64-98dc-86c5d6e033a0") + ) + (label "GPIO10" + (at 24.13 74.93 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1525535f-a14f-4148-bf1a-2c1a2802f16c") + ) + (label "TRD3_P" + (at 103.124 24.13 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "167e0dc3-f820-4d48-81fb-4e2a58476c04") + ) + (label "GPIO6" + (at 24.13 57.15 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1748450e-a8ca-4e49-95b9-4d9e086df7db") + ) + (label "TRD0_P" + (at 227.33 64.77 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1787153b-aa75-4d9d-ba83-d6b350b998a0") + ) + (label "TRD3_P" + (at 193.04 27.94 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "17d647d2-36cd-405f-a8c1-4a4bb5cb57ac") + ) + (label "GPIO8" + (at 173.99 52.07 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "184b2fad-24f5-4073-ae78-9c4ec35fa867") + ) + (label "GPIO20" + (at 110.49 54.61 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "19aec941-d967-4940-a58a-9060a38854cb") + ) + (label "GPIO25" + (at 110.49 72.39 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1a9e2b11-80b9-435f-a9bf-a5b45e4a1043") + ) + (label "GPIO2" + (at 147.32 26.67 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1b77c8f9-b0fa-45ba-a726-522a68924cf1") + ) + (label "GPIO26" + (at 148.59 69.85 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1d27c77d-c33f-442a-bd7b-7b44d10eb43c") + ) + (label "GPIO15" + (at 110.49 85.09 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1d901cb2-360a-4708-b3ed-e4b172d3996f") + ) + (label "GPIO13" + (at 24.13 54.61 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1dfbb08e-4502-4041-b288-07dbab29f6fa") + ) + (label "TRD1_P" + (at 193.04 59.69 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1e3fd3d5-91a2-4915-bf3d-e5e3d46d180b") + ) + (label "GPIO7" + (at 109.22 67.31 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1eff450e-d239-4e31-9c3f-596e83e33a69") + ) + (label "GPIO14" + (at 110.49 90.17 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "1feb75da-52bc-4f54-bc22-6a4b1520ccea") + ) + (label "BT_nDis" + (at 112.8776 135.89 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "21930fd1-46a2-4b3e-9765-d207f0464a07") + ) + (label "GPIO7" + (at 173.99 54.61 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "28c42959-8e72-4709-83e0-fbb99eade23c") + ) + (label "ETH_LEDY" + (at 103.124 39.37 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2a24dffe-c9d6-428a-aa0a-97de6a340b8b") + ) + (label "VBAT" + (at 114.3 171.45 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2acd5cc2-9dd5-4a7d-87cb-dd4fd55911c1") + ) + (label "TR1_TAP" + (at 198.12 90.17 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "2bc709a0-58c7-4027-bd09-68d5e2408c67") + ) + (label "PWM" + (at 102.87 44.45 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2e95b89a-d151-4ceb-8ea1-75ed88f1541e") + ) + (label "GPIO4" + (at 24.13 87.63 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2ee514c3-8fe8-4bfc-bae8-2feff67b4a1c") + ) + (label "GPIO10" + (at 148.59 46.99 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "2efaba24-aee5-4bea-ae84-dbce9fb4b72e") + ) + (label "TRD1_P" + (at 24.13 24.13 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "30470147-1c1c-474c-b510-0051dbe7652d") + ) + (label "CC1" + (at 27.94 138.43 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "32af351e-30db-43fd-8004-85c42f0661d4") + ) + (label "TRD1_P" + (at 245.11 29.21 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "32f708e0-df94-44e7-a6ae-cda54a0cd338") + ) + (label "WL_nDis" + (at 113.665 130.81 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "3406438b-af44-4c6b-93b5-d0d24ae94a91") + ) + (label "GPIO6" + (at 147.32 62.23 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "3493c959-87a4-4c52-b026-4808a6774531") + ) + (label "+3.3v" + (at 274.32 151.13 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "34bc4df9-50ad-433a-a204-50b962ec67ce") + ) + (label "GPIO17" + (at 148.59 36.83 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "362755ad-ea41-482e-bb23-627c6eb15a40") + ) + (label "+3.3v" + (at 116.84 19.05 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "39b32332-d6eb-4066-9c5a-784c77cb509f") + ) + (label "GPIO19" + (at 148.59 67.31 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4227d0f4-4162-4ece-9ec9-195feb76c6dd") + ) + (label "GND" + (at 26.67 182.88 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4303c90f-8ff0-4fc1-b7b1-20991bf84853") + ) + (label "GPIO27" + (at 24.13 80.01 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4371cedd-a894-45a7-8f2e-b664b567a667") + ) + (label "EEPROM_nWP" + (at 24.13 44.45 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "439a0826-2a4b-4f2a-9a85-b9cbf2766a09") + ) + (label "GPIO_VREF" + (at 25.4 118.11 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "46d408fa-dd49-4762-9c6e-4858cc3099bc") + ) + (label "GPIO9" + (at 147.32 49.53 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4711680f-0033-4792-90b3-99dc2aa8a7cf") + ) + (label "GPIO20" + (at 175.26 69.85 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4c37a42c-e30e-4fbe-8a58-4d959e1e3766") + ) + (label "TR0_TAP" + (at 198.0184 92.71 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4c492959-c00a-430a-b92b-afb6f355a82a") + ) + (label "GPIO21" + (at 110.49 52.07 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4d4b0af0-8c15-45ad-960b-edd8bf430df4") + ) + (label "GPIO23" + (at 110.49 80.01 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4d9c5bb1-1a0b-4685-9b64-9623bdfa6e36") + ) + (label "ID_SD" + (at 147.32 57.15 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4da42412-11c8-43c1-a7e4-fee17c98b4ba") + ) + (label "GPIO16" + (at 175.26 67.31 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "530e1c0a-bb5b-44a7-b162-4c6f9e290093") + ) + (label "TRD0_N" + (at 24.13 31.75 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "533e0349-e9bd-4e8f-92c0-75eac764bdf1") + ) + (label "TRD3_P" + (at 245.11 49.53 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "5683492a-389e-4ac4-9c32-25f197b682fd") + ) + (label "ETH_LEDY" + (at 227.33 80.01 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "5a9cc8dc-b899-4016-9873-a99ec930a962") + ) + (label "TRD0_N" + (at 227.33 59.69 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "5c43dd51-b673-40c0-86bf-6d45aa01dce3") + ) + (label "TRD2_N" + (at 227.33 27.94 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "60e87dc7-656f-4705-b8d6-ece6cbaf41c3") + ) + (label "ETH_LEDG" + (at 227.33 74.93 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "6174394f-bb9b-4752-bb81-4ff9404b9295") + ) + (label "TRD0_N" + (at 245.11 26.67 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "64ab901b-ea46-43a5-9f7f-64cceeb0129b") + ) + (label "TR2_TAP" + (at 246.38 64.77 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "675cfbd2-e790-4842-b368-f626e1795786") + ) + (label "GPIO22" + (at 148.59 41.91 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "6dd24007-4e31-4437-a050-fa6e699c9468") + ) + (label "+1.8v" + (at 26.67 130.81 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6fa8342e-2989-40ca-b0ae-b207f17ca831") + ) + (label "SYNC_OUT" + (at 54.61 175.26 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "70396b64-ba42-4955-ac7d-aeff65748330") + ) + (label "PWR_BUT" + (at 73.66 170.18 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "706338b4-bf09-4e9b-b33a-d6b331c6d22e") + ) + (label "GPIO18" + (at 175.26 36.83 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "7134724f-277a-4c58-bbec-7ceaf30b9ed0") + ) + (label "TR2_TAP" + (at 221.9198 90.17 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "7844fa1c-c2e9-46d4-aee9-55128915096f") + ) + (label "GND" + (at 26.67 170.18 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "7e11542a-c428-4e80-830e-94b7e05e0716") + ) + (label "GPIO16" + (at 110.49 57.15 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "7e98c7bb-1d59-4b79-8dd7-3fc856d94f6e") + ) + (label "GPIO12" + (at 110.49 59.69 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "7ea5fa02-788a-478b-aebb-c1380934d36b") + ) + (label "GPIO23" + (at 175.26 41.91 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "80308ea8-7152-4634-99bf-492db3c9f37a") + ) + (label "+3.3v" + (at 26.67 125.73 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "815e38da-4e8a-4d91-9c77-2aa0746d5639") + ) + (label "PWM" + (at 136.525 170.18 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "82b76467-9726-492d-bb79-1351ee467f03") + ) + (label "ID_SC" + (at 173.99 57.15 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "83616a1b-53cb-4bc4-bfc7-a340c75ffaa4") + ) + (label "GPIO8" + (at 109.22 69.85 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "8538d430-1fd4-494f-ab17-e95325a71380") + ) + (label "GPIO17" + (at 24.13 82.55 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "88ce3174-a8b3-4149-886a-872ed4746e98") + ) + (label "SYNC_OUT" + (at 24.13 41.91 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "8a2747cd-9545-4996-b99f-a27623db4e36") + ) + (label "nPWR_LED" + (at 146.05 139.7 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "8a51259a-0b00-485b-ae12-40bbbcbb1fbf") + ) + (label "TRD0_P" + (at 245.11 21.59 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "8d461b4d-62dc-488b-8977-3c95555f9343") + ) + (label "GPIO18" + (at 110.49 82.55 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "8edcf05f-b0d5-49a3-b916-fcd5f9b197b1") + ) + (label "TRD2_N" + (at 102.87 31.75 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "917cd117-92bc-45a7-bf89-1770f5fb3f75") + ) + (label "GPIO15" + (at 175.26 34.29 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "91fb974e-99de-4e0c-bee5-7a6f88905951") + ) + (label "GPIO5" + (at 147.32 59.69 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "94b2d264-2d2c-4376-b127-a770616fcdbf") + ) + (label "nPWR_LED" + (at 104.14 140.97 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "99f2690c-1a6d-4fbb-ba61-f3d41eb4c0b7") + ) + (label "PMIC_ENABLE" + (at 57.785 182.88 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "9a6294f5-83f2-423d-91c2-6cfd1df081e7") + ) + (label "TR3_TAP" + (at 221.8944 92.71 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "9ae7e107-47c3-4f43-acc6-d14899796c06") + ) + (label "GPIO3" + (at 147.32 29.21 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "9c6800c7-760c-4f03-9c91-64575523dd35") + ) + (label "TRD0_P" + (at 24.13 34.29 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9fe6b1ab-b272-4c55-88f3-15c955c8b1f3") + ) + (label "nRPIBOOT" + (at 54.356 170.18 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "a5b2a88f-fa1e-47a1-b1fe-06f37e21ca1b") + ) + (label "+3.3v" + (at 148.59 91.44 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "a61b8793-ec96-4e3b-97b0-2185f1c8bd47") + ) + (label "GND" + (at 26.67 177.8 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "a8f3fb57-d72d-4e56-b518-98e829534921") + ) + (label "GND" + (at 26.67 185.42 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "ab5581c2-9435-4201-bfe2-a2137eb895e7") + ) + (label "GPIO26" + (at 24.13 49.53 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "adae0e75-68d2-4a2b-98da-d0b9556bd126") + ) + (label "TACHO" + (at 136.525 175.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "adae4e92-033f-4af1-ab17-18d807cdc010") + ) + (label "PWR_BUT" + (at 27.686 135.89 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b6d945bb-e2eb-4605-8009-e2c500075502") + ) + (label "GPIO12" + (at 175.26 62.23 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "b7986f62-ea7a-4dc5-91cd-26acb8e0379b") + ) + (label "+3.3v" + (at 161.29 132.08 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "b988d6e1-acde-48d5-aaac-780083f0a33d") + ) + (label "nRPIBOOT" + (at 104.14 138.43 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "bdc5ca11-10e5-4600-9ef9-bb85404d6bea") + ) + (label "EEPROM_nWP" + (at 57.658 172.72 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "be0005d6-fe27-4790-8dca-71a7c48d5d83") + ) + (label "GPIO11" + (at 24.13 67.31 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c03374e9-87ea-401d-8ec8-f0596c74ecdf") + ) + (label "ID_SD" + (at 24.13 64.77 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c04eca05-a0f9-4bc2-a3af-c428ab1358bc") + ) + (label "TRD1_N" + (at 24.13 26.67 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c1212456-d2b9-440c-9946-508c16588497") + ) + (label "GPIO24" + (at 110.49 77.47 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c1383de0-8b89-4198-8e13-094764dd7221") + ) + (label "GND" + (at 26.67 175.26 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c2f385f2-7a78-4f82-b8fd-1151e835fc14") + ) + (label "TRD3_N" + (at 193.04 33.02 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c49cdd63-d196-49a7-b408-7af3848e936c") + ) + (label "GPIO27" + (at 148.59 39.37 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c4b1e7cf-3aa3-45c5-8585-741388413869") + ) + (label "TR1_TAP" + (at 246.38 62.23 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c6c09f1d-8526-474d-84d1-9ef4e9ca3baa") + ) + (label "VBAT" + (at 30.48 115.57 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c9293921-3f4d-4839-bf8f-cb50bb7c5431") + ) + (label "ID_SC" + (at 109.22 64.77 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "cb2ff936-d01f-4ed3-a5da-0089d3c4dd41") + ) + (label "TRD2_P" + (at 245.11 41.91 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "cd8ed60e-d385-4272-94f7-c73fbc71c4e7") + ) + (label "GPIO21" + (at 175.26 72.39 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "cdb8e730-b927-443e-bb30-3662dd4e56b2") + ) + (label "CC2" + (at 27.94 140.97 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cf03ad8f-66ef-45f9-8345-2635d0d3edd5") + ) + (label "GPIO14" + (at 175.26 31.75 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "cfc25d70-2748-49fe-bb69-5196d9ea547d") + ) + (label "TACHO" + (at 24.13 39.37 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d070d92e-528b-4236-9018-11247fadff60") + ) + (label "GPIO25" + (at 175.26 49.53 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "d0e758c8-d140-4a8a-8239-760094b94ecd") + ) + (label "TRD2_N" + (at 245.11 46.99 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "d1b90760-3603-4cfd-ab0e-dd699ddbbb82") + ) + (label "TR0_TAP" + (at 246.38 59.69 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "d239e1a3-08c8-45e2-9959-7e4e5303b2cf") + ) + (label "+5v" + (at 106.68 118.11 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "d35150b0-2eb6-4157-85e4-9498d87dce2c") + ) + (label "TRD1_N" + (at 245.11 34.29 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "db03190e-bc4a-40e3-ac97-45f05ba708cb") + ) + (label "PMIC_ENABLE" + (at 116.84 146.05 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "dd25caf2-c470-499e-9b28-d47564283b2f") + ) + (label "+3.3v" + (at 172.72 115.57 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "dfcf21ae-fd3c-40b2-9ae0-524856d8c6da") + ) + (label "GPIO13" + (at 148.59 64.77 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "e0e4f26b-9768-45ce-836e-303c9ffcd23d") + ) + (label "GPIO_VREF" + (at 162.56 91.44 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "e196416c-d4d1-42d4-979d-990a370627ba") + ) + (label "TRD2_P" + (at 103.124 34.29 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "e65cdd4f-d044-4664-ac08-106160a06115") + ) + (label "GND" + (at 26.67 172.72 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "e74c1c14-2c10-4ed2-af66-d46451b14517") + ) + (label "GPIO19" + (at 24.13 52.07 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ed5d521b-24d1-4974-b18e-6b700d9b109f") + ) + (label "GPIO11" + (at 148.59 52.07 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "edff7200-18c6-4e0c-99f9-a118fc24b63a") + ) + (label "PWR_BUT" + (at 44.45 185.42 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f222ec18-2936-4a9d-8782-46591afb7076") + ) + (label "TR3_TAP" + (at 246.38 67.31 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "f3749464-3429-4e5d-8e9e-7776a190bf7c") + ) + (label "GND" + (at 26.67 180.34 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "f6429ab2-213c-4030-a705-9f073170a98c") + ) + (label "GPIO4" + (at 147.32 31.75 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "f7cd5e79-c8f9-4e9b-991c-a91934b795d2") + ) + (label "+3.3v" + (at 243.84 72.39 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "f85d4ea0-e9e5-4e74-b9b9-4ca2bb2e7cd7") + ) + (label "GPIO22" + (at 24.13 77.47 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fa0658a8-b566-42fd-96ec-033831ff4d14") + ) + (label "TRD2_P" + (at 227.33 33.02 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "fd0058ab-f81f-45ed-b645-df2b0d3bfce5") + ) + (label "GPIO3" + (at 24.13 90.17 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fde990cb-bef7-4857-b479-4a747f3020bc") + ) + (hierarchical_label "CC1" + (shape output) + (at 25.4 138.43 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "12151d38-7ee1-4271-9f80-ce62a0fa661b") + ) + (hierarchical_label "ID_SD" + (shape output) + (at 24.13 64.77 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "1754779f-f1ea-4e4f-9a64-93d7ee7943e3") + ) + (hierarchical_label "CC2" + (shape output) + (at 25.4 140.97 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "1d32a3a2-931e-4061-9909-454f851a337d") + ) + (hierarchical_label "+3.3v" + (shape output) + (at 25.4 125.73 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "2a6753e8-f9e7-4c11-a472-dc9c7e1759c8") + ) + (hierarchical_label "GPIO_VREF" + (shape output) + (at 25.4 118.11 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "305cc760-953e-4bfd-8d01-10e63de704eb") + ) + (hierarchical_label "ID_SC" + (shape output) + (at 114.3 64.77 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "396b75b5-8301-434d-a10a-ad2aa7eccc47") + ) + (hierarchical_label "+5v" + (shape input) + (at 135.89 167.64 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "59e8b122-c74b-422c-8f60-6d8ce58f4682") + ) + (hierarchical_label "+5v" + (shape input) + (at 114.3 118.11 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "b1074f14-d9b1-488c-9ce1-52a2bed8b998") + ) + (hierarchical_label "USBOTG" + (shape output) + (at 58.42 180.34 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "f1925da3-6d02-4d29-b13d-37e38f996a50") + ) + (symbol + (lib_id "CM5IO:74LVC1G07_copy") + (at 165.1 139.7 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d4045a5") + (property "Reference" "U5" + (at 166.624 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "74LVC1G07SE-7" + (at 166.624 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-353_SC-70-5" + (at 165.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/74LVC1G07.pdf" + (at 165.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 165.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 165.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2425492" + (at 165.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "74LVC1G07SE-7" + (at 165.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Diodes" + (at 165.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Buffer, Non-Inverting 1 Element 1 Bit per Element Open Drain Output SOT-353" + (at 165.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "33f0ff87-5826-47b7-a189-ca3528f1f211") + ) + (pin "3" + (uuid "b7b0924b-a534-453f-b03b-3088a452d2d5") + ) + (pin "4" + (uuid "6f0bf181-b7ac-48a2-905c-c67feeb7d571") + ) + (pin "5" + (uuid "a2e657e9-8fbb-46fe-96c9-f7babcd4a7d6") + ) + (pin "1" + (uuid "22fdc37f-fd26-497c-8d6e-7d9eb6019020") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "U5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:ComputeModule5-CM5") + (at 72.39 77.47 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005dc6d7d8") + (property "Reference" "Module1" + (at 69.85 15.875 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ComputeModule5-CM5" + (at 69.85 18.1864 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "CM5IO:Raspberry-Pi-5-Compute-Module" + (at 214.63 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 214.63 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RaspberryPi Compute module 5" + (at 72.39 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Amphenol" + (at 72.39 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field5" "2x 10164227-1001A1RLF" + (at 72.39 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field6" "2x 10164227-1001A1RLF" + (at 72.39 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Hirose" + (at 72.39 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 100 Position Connector Receptacle, Center Strip Contacts Surface Mount Gold" + (at 72.39 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cf686d81-9f88-4310-8cca-09c4155d1a81") + ) + (pin "10" + (uuid "a7e4ce5c-98fb-48d0-9ff3-cdec8a457bcf") + ) + (pin "100" + (uuid "2570aee6-6e18-4261-b22f-3d8d6a2e1ea5") + ) + (pin "11" + (uuid "c9e56185-f336-4312-a98e-d42d46197976") + ) + (pin "12" + (uuid "f364e29b-5711-4bf2-8799-5bbae295994d") + ) + (pin "13" + (uuid "efb33de0-b764-4444-a29e-2b79ab867302") + ) + (pin "14" + (uuid "131591c0-0ebb-44a4-b02e-592ed1debb2d") + ) + (pin "15" + (uuid "92427605-f1a6-4b8d-b9ee-1721c0349167") + ) + (pin "16" + (uuid "e1612cdc-ee8b-49c2-9424-f5cbb6a0c53e") + ) + (pin "17" + (uuid "280b0630-d0d3-42bc-a3bf-d42ba3faa203") + ) + (pin "18" + (uuid "0d0df2ac-f3f7-482e-ba7c-5f666b048a62") + ) + (pin "19" + (uuid "8cb07eef-4e4e-47a5-9a8b-ea7986073b39") + ) + (pin "2" + (uuid "bcecf866-87db-4f8d-b360-a530337f4827") + ) + (pin "20" + (uuid "b5f14956-a9e6-4c63-951c-e4703e1cd030") + ) + (pin "21" + (uuid "3ce75223-3147-40f3-b47b-f7fa88e08c27") + ) + (pin "22" + (uuid "0ee88c70-b4a6-4a69-8494-c8cddbda5aef") + ) + (pin "23" + (uuid "af7e52d1-be2a-4da2-9768-453b8924e9cd") + ) + (pin "24" + (uuid "0a8229a4-9df7-43bb-a8d3-ff415d614cd1") + ) + (pin "25" + (uuid "d978c51f-73a6-4c68-a2f0-34685b94acb5") + ) + (pin "26" + (uuid "754b5411-6980-4296-853f-191c0eb30474") + ) + (pin "27" + (uuid "14ff9087-b8eb-4ee6-bbfe-2436601097d4") + ) + (pin "28" + (uuid "11cda506-0128-4093-b8a5-7efe9e45a170") + ) + (pin "29" + (uuid "a3c7a0be-f018-44c9-b3c2-73fbc0d13b4a") + ) + (pin "3" + (uuid "48c58df3-effd-400c-a749-bb7805bd9b54") + ) + (pin "30" + (uuid "1422cffc-a6ff-4e64-b009-59da6be804dd") + ) + (pin "31" + (uuid "38ab1f4f-649b-4964-b8f9-a4f320fd8fd4") + ) + (pin "32" + (uuid "7514181d-4b93-44cc-9ca7-051e857346c5") + ) + (pin "33" + (uuid "09932d00-40d2-44f7-a7a8-9b4da70484c9") + ) + (pin "34" + (uuid "9caa825e-43a9-45d3-8dad-ce1e46623c13") + ) + (pin "35" + (uuid "49e13fb6-9495-424e-bd9f-1ff5b065001b") + ) + (pin "36" + (uuid "d17a8152-3efa-4cbc-b6d7-fac93119bd8f") + ) + (pin "37" + (uuid "dc7fe6ab-e2e1-48c0-b2af-0f1c6ebb04ac") + ) + (pin "38" + (uuid "059c55b9-3878-4a5d-8c36-f2e1ac20b66c") + ) + (pin "39" + (uuid "41512000-8ddc-4c35-95f9-181a97b6f8de") + ) + (pin "4" + (uuid "d47cd15e-87a5-4fca-ba12-29ea14d72c4e") + ) + (pin "40" + (uuid "cdbabdff-d445-4ad0-8e7c-a52b2d06f74a") + ) + (pin "41" + (uuid "4da6302c-cd1f-4909-89d2-621a3bbeb204") + ) + (pin "42" + (uuid "c57e2c9b-795f-49e5-8ca2-7169d63a4374") + ) + (pin "43" + (uuid "9ffa7a41-84e2-439f-ab9e-a1334179edc6") + ) + (pin "44" + (uuid "f0660c30-1630-4fed-a3e9-3ee2ebca41e2") + ) + (pin "45" + (uuid "8255a4a1-ab2d-4484-a456-579f6137ea5a") + ) + (pin "46" + (uuid "ff4b84a8-44fb-443b-a568-552d59e4da52") + ) + (pin "47" + (uuid "f59e37a0-83e4-49c9-8f65-5fe074c3ea86") + ) + (pin "48" + (uuid "c2b59e2d-0fe7-43e7-af54-44a53e27c754") + ) + (pin "49" + (uuid "c3d355e2-5a2e-4900-90d5-2140e7b8830b") + ) + (pin "5" + (uuid "e3961296-b4c5-459d-a7b6-a37ca9fc9b04") + ) + (pin "50" + (uuid "f75bced6-245a-490c-a39b-3a0d1b65c852") + ) + (pin "51" + (uuid "38134ebd-0595-4638-9fc3-f48d527bf8a2") + ) + (pin "52" + (uuid "d3e7f16d-a250-4de7-87e5-9bc710a55c24") + ) + (pin "53" + (uuid "2cfd8b65-c57f-44e9-b75d-735b42146491") + ) + (pin "54" + (uuid "b52fd3a8-77a9-486e-9d72-e8640bb775c2") + ) + (pin "55" + (uuid "21b4b02d-73c0-4ae0-b147-e60dae395da4") + ) + (pin "56" + (uuid "7e56433f-8047-4182-a23d-dde6a3760eda") + ) + (pin "57" + (uuid "fe6381fb-e684-46de-8891-ee7b19da70c7") + ) + (pin "58" + (uuid "c14e0e25-addb-4acf-be94-fc826be74200") + ) + (pin "59" + (uuid "68d357fe-ef13-4a8c-b5b7-37c38f47c25e") + ) + (pin "6" + (uuid "79554df7-9d43-44f1-8fa6-0ceeb5d746bd") + ) + (pin "60" + (uuid "45a58a3c-0ae3-4319-9136-f718ae1af278") + ) + (pin "61" + (uuid "47f8e668-273a-44f0-a487-9421f049d27f") + ) + (pin "62" + (uuid "e2482bc1-8d09-4ceb-8e49-1d592e89906a") + ) + (pin "63" + (uuid "af062573-b97b-4aa1-bea6-0733ff8c3373") + ) + (pin "64" + (uuid "85718cbc-a90f-4e6a-81e3-0f34c8de5e82") + ) + (pin "65" + (uuid "6b28a6c4-36d3-4664-8389-c43d55c8b7b4") + ) + (pin "66" + (uuid "46a31d9d-311e-4951-9580-8458ea12a084") + ) + (pin "67" + (uuid "d765feb8-0d2b-4f91-9055-021e050d2c2d") + ) + (pin "68" + (uuid "d525482e-5dc6-4c44-b919-a131777fba8e") + ) + (pin "69" + (uuid "39e74c5c-b798-4d06-8858-8667944befeb") + ) + (pin "7" + (uuid "b5b9cc39-57c4-4b34-9753-47ab693cf9f1") + ) + (pin "70" + (uuid "b0e60bf5-2ca9-4c6d-859b-816ea2de1be9") + ) + (pin "71" + (uuid "87c4c6cd-a743-45fa-8a20-56ccd5bd596e") + ) + (pin "72" + (uuid "6c1dc8fe-cd68-4d9d-b5d0-383668c0989d") + ) + (pin "73" + (uuid "57943a54-0d5a-4776-92d5-28c3ef73c2a2") + ) + (pin "74" + (uuid "8afdbac1-8ba5-475c-b038-16f606d61c74") + ) + (pin "75" + (uuid "bf76e491-9dd7-40e2-950e-c79b71b72d93") + ) + (pin "76" + (uuid "06af765d-0fb4-424b-b8bb-f25711eb599e") + ) + (pin "77" + (uuid "66cf9899-100d-45fb-9b9f-8f866de8a3fe") + ) + (pin "78" + (uuid "0fc4267c-2119-444e-b3b2-d8a7bd88ec8a") + ) + (pin "79" + (uuid "e0e1ca09-86a2-4a1e-91c7-9e30fee9ab8c") + ) + (pin "8" + (uuid "2f40c2ed-ea77-481a-b728-3e9572b94a99") + ) + (pin "80" + (uuid "d5eff103-a41e-48a6-8a4d-2e4bc46feaa5") + ) + (pin "81" + (uuid "d32b960b-36c8-46d0-9686-73cb0b40a548") + ) + (pin "82" + (uuid "8f141cb6-d196-4940-89f8-4e8940598ec7") + ) + (pin "83" + (uuid "9b2c3896-c54b-4cf2-8fa5-0036fca2d447") + ) + (pin "84" + (uuid "6755f669-82b7-4ff1-bfd2-0c84dbe58282") + ) + (pin "85" + (uuid "5b1d9dd6-e256-4086-9ce7-efa87daa8a99") + ) + (pin "86" + (uuid "165b2e7b-1b46-4d73-a3c9-4eda1d2e3f87") + ) + (pin "87" + (uuid "476d457b-c549-4355-a12e-b5454fb7f25c") + ) + (pin "88" + (uuid "51a42fbb-e03a-42b8-8723-2ff8b13b7002") + ) + (pin "89" + (uuid "50cd2860-5a3b-49f4-b0e5-143db7d397c7") + ) + (pin "9" + (uuid "e6e5213e-6aad-48c9-a436-d90409753d19") + ) + (pin "90" + (uuid "b9288ffb-24d0-402b-b179-78cd1bd46e32") + ) + (pin "91" + (uuid "0f924090-ddb0-4e05-904c-8a63a32e091d") + ) + (pin "92" + (uuid "201a0ca7-5d89-410f-baa8-63fe4094eb66") + ) + (pin "93" + (uuid "675bb9b6-2005-4a9f-96b9-341a2d5d4912") + ) + (pin "94" + (uuid "e8858172-31ad-4b9d-9cff-5ab15d2d3f69") + ) + (pin "95" + (uuid "52993c55-48a5-4744-9dbb-f7eb4807ee61") + ) + (pin "96" + (uuid "f4edeaa1-4cc0-4360-b5b4-a3eea7e42791") + ) + (pin "97" + (uuid "351b096d-5254-458a-92e3-ec4c37dc4234") + ) + (pin "98" + (uuid "9e6297e3-595a-45e9-bd9b-72048fbe738d") + ) + (pin "99" + (uuid "c5f0e625-91e0-4e3b-82aa-8bf5701eb728") + ) + (pin "101" + (uuid "aea881c4-8caf-467d-8340-1ce698551049") + ) + (pin "102" + (uuid "724170ab-119b-4b45-8af7-13cc9bec0dba") + ) + (pin "103" + (uuid "28e72ce0-e024-463e-87bd-42a4f46be6d1") + ) + (pin "104" + (uuid "300c20a1-fc81-4917-9ba0-108968b73ee9") + ) + (pin "105" + (uuid "486f3d58-274b-4e26-930e-64cc6478bb6c") + ) + (pin "106" + (uuid "153fdbf7-776b-4db5-bea2-cd1d9c0f9562") + ) + (pin "107" + (uuid "66207e11-76aa-462f-a686-57e6c136ce7b") + ) + (pin "108" + (uuid "66a3fa14-a4dd-4744-a83d-cf9d06b1979d") + ) + (pin "109" + (uuid "dfea6824-b19e-44be-837f-758d2443f576") + ) + (pin "110" + (uuid "7e6cb0c5-2dfb-4b93-80a2-f479cdf69114") + ) + (pin "111" + (uuid "6035b0c5-e2b1-4c89-a9d8-875e3e3ce498") + ) + (pin "112" + (uuid "2e88dfec-2c12-426b-ba9f-3d2c6268a17e") + ) + (pin "113" + (uuid "084c8618-326c-40ff-9450-3118db3944cf") + ) + (pin "114" + (uuid "6c44260c-7a53-4136-8c7e-a2b73fbbd67f") + ) + (pin "115" + (uuid "8545d7bb-b858-4960-92f4-17296cac0f20") + ) + (pin "116" + (uuid "637c0c1c-0249-4fec-ae34-836a797ca960") + ) + (pin "117" + (uuid "b8cb6787-b443-4f2b-b321-1c845ee99316") + ) + (pin "118" + (uuid "84ab3fdb-7f4f-4ac9-ba69-3d653b260fd3") + ) + (pin "119" + (uuid "f58a0090-0b2a-4c12-846b-76978c41198f") + ) + (pin "120" + (uuid "e479b5bb-8476-4f42-a758-90407adcd69f") + ) + (pin "121" + (uuid "b958b562-9436-48d9-b969-8bc2ff91e09e") + ) + (pin "122" + (uuid "27a7a6fb-987e-49b8-ad5e-9612104284a8") + ) + (pin "123" + (uuid "ef7a04f0-e75f-4abf-91b0-b0a6ceb45223") + ) + (pin "124" + (uuid "32ba2c3e-0f16-4a1f-a816-e2c389b7123f") + ) + (pin "125" + (uuid "fadce81f-827f-4983-b158-56de9699b2fe") + ) + (pin "126" + (uuid "33f31515-b338-4c20-ab37-f9fd210a8428") + ) + (pin "127" + (uuid "ff98ad0e-815b-41fd-a537-e38dbd834335") + ) + (pin "128" + (uuid "04521550-f1af-40bf-86f9-f6b45855a401") + ) + (pin "129" + (uuid "459ee465-a816-44a3-9cb0-317595e28031") + ) + (pin "130" + (uuid "2555d332-98a2-40a5-810c-4583144af029") + ) + (pin "131" + (uuid "4fb8a599-4e8a-42d4-a9ed-86d08bdb8ec7") + ) + (pin "132" + (uuid "d322148a-3b76-4a4b-96f0-fb64b4611f38") + ) + (pin "133" + (uuid "56185c3e-52d1-41ad-b397-ad1d12738be0") + ) + (pin "134" + (uuid "af5cfc5c-aa2b-43ec-a91c-e7aa79af05d5") + ) + (pin "135" + (uuid "f0594829-acff-4eee-892e-7f1ae622e69e") + ) + (pin "136" + (uuid "1897ea92-1b93-4b6d-9dbd-660e4346ee3b") + ) + (pin "137" + (uuid "e1bab841-57e1-4e18-af31-52db7c130226") + ) + (pin "138" + (uuid "37f5376f-ad19-4a72-b0d3-51644eb7a8fe") + ) + (pin "139" + (uuid "ee85e469-359b-4b69-b999-232795eb053b") + ) + (pin "140" + (uuid "66632d4d-3728-43fe-afcb-622f62034031") + ) + (pin "141" + (uuid "48d804f0-994e-4745-981a-62eeaf8c0596") + ) + (pin "142" + (uuid "be5daddc-4c37-4cec-90b0-f4631727a24a") + ) + (pin "143" + (uuid "fe462979-80e8-4735-9063-d4e53649516e") + ) + (pin "144" + (uuid "65daa22e-4022-4d00-bec1-b48ddb1e6199") + ) + (pin "145" + (uuid "a0338d03-c341-4cc7-955f-205be35815d3") + ) + (pin "146" + (uuid "1ac2f3e7-32f4-4a20-a4cf-9aa6e183557a") + ) + (pin "147" + (uuid "c7f135ea-84fe-4525-8bc3-f06e68e9afb1") + ) + (pin "148" + (uuid "1023dd18-b45b-4a56-9b9c-1d8978036cd6") + ) + (pin "149" + (uuid "d17d595e-6e32-4f37-8617-4a782c60cf2c") + ) + (pin "150" + (uuid "a44f3dec-7a5f-40ec-9840-97966a4b3952") + ) + (pin "151" + (uuid "869baa06-e51c-4c0b-a89f-48c895eb00a6") + ) + (pin "152" + (uuid "3ced1108-0289-4b99-bda1-5515398a9ff1") + ) + (pin "153" + (uuid "fecb8832-dff3-482a-91df-29da98b3a970") + ) + (pin "154" + (uuid "052139c4-7ae8-4247-ab0d-b9cb3a0172ac") + ) + (pin "155" + (uuid "cb550739-a5e0-41bd-a4ef-12f87d2c0bfe") + ) + (pin "156" + (uuid "768c92f2-7260-4dc9-9198-50978b902139") + ) + (pin "157" + (uuid "5542b51c-6a27-4f13-9c6e-28231b4ba885") + ) + (pin "158" + (uuid "6fe71729-0733-4b9f-a5ef-36dd203049e4") + ) + (pin "159" + (uuid "e7748ca0-874a-49cf-a53f-c6240a650a1e") + ) + (pin "160" + (uuid "27fcaebd-ac3c-4289-96f4-c89d2d1d9ab9") + ) + (pin "161" + (uuid "e5915a5c-4e0f-4545-a1b8-44026239a08d") + ) + (pin "162" + (uuid "b2916a44-1d85-4301-91ac-b002dec85966") + ) + (pin "163" + (uuid "8feabcda-4da4-4112-95ab-fd8c32ae6222") + ) + (pin "164" + (uuid "4cf25d9d-67bb-471b-8ed1-8554218f8a3f") + ) + (pin "165" + (uuid "1f41811d-a280-4499-a295-e04d63817c9a") + ) + (pin "166" + (uuid "3853d479-0ed4-4e93-86dc-85b126dc4901") + ) + (pin "167" + (uuid "3973d42c-f680-464a-b6ff-bc22c894af71") + ) + (pin "168" + (uuid "538545de-5979-4023-9b86-a29b49026173") + ) + (pin "169" + (uuid "dadc0f59-9092-416f-ba60-bcf46e34bc07") + ) + (pin "170" + (uuid "174b605b-55bd-4438-8a96-99c25fbe857b") + ) + (pin "171" + (uuid "951e4e0b-d1df-4f5d-a084-bf9fe994195f") + ) + (pin "172" + (uuid "a3a8d500-8be5-428e-8b68-9b0c9642d6bf") + ) + (pin "173" + (uuid "488b79a2-bba5-4c64-89e8-7313f01d08af") + ) + (pin "174" + (uuid "7fba28f8-bae3-44d0-b68e-84effdc334b2") + ) + (pin "175" + (uuid "aec1f2d7-4aca-41de-9639-9336022eaa44") + ) + (pin "176" + (uuid "6478691b-0612-41d1-9d2d-c9f5ce4e612c") + ) + (pin "177" + (uuid "8ead4e82-f9ea-47b6-9dbe-f7fe9cb15065") + ) + (pin "178" + (uuid "fd290d96-aa1e-4ae9-85f4-20619772607d") + ) + (pin "179" + (uuid "780ce7d6-c4a9-4af9-a8be-3e59b1966ed2") + ) + (pin "180" + (uuid "8d150451-59a7-4046-8287-1bbce0ffdd7d") + ) + (pin "181" + (uuid "949fb558-5f46-43f4-8f34-ceff3a4a0ffa") + ) + (pin "182" + (uuid "10172055-f30d-445c-9418-7350ca9069f4") + ) + (pin "183" + (uuid "39e7e9a1-2498-4c99-852c-59eb9f926cc0") + ) + (pin "184" + (uuid "9503c37b-853b-4136-b4e5-be9e4fddbfdb") + ) + (pin "185" + (uuid "42b1deb0-c69b-4760-92f6-cd34d3385767") + ) + (pin "186" + (uuid "33f2e6e0-b55c-492d-ba38-c20f746f1190") + ) + (pin "187" + (uuid "d19bc7cd-94fb-4e4e-8179-b18aa888f36a") + ) + (pin "188" + (uuid "28d48e1c-8076-4979-83c4-8f19ae5a35b7") + ) + (pin "189" + (uuid "2209de7b-631a-48a8-ac78-c1cd8cc5ddc4") + ) + (pin "190" + (uuid "fddac95b-1361-424a-be49-9622a96aea98") + ) + (pin "191" + (uuid "d5e231c1-65d1-4dad-b3a2-eb6d9e548f15") + ) + (pin "192" + (uuid "93546868-a8eb-479b-a3b0-12858a5e2530") + ) + (pin "193" + (uuid "2ae98b11-8cb7-4363-9842-a5e60ac8f67e") + ) + (pin "194" + (uuid "95f2bba0-cb44-4335-9ea2-9f092a7386ae") + ) + (pin "195" + (uuid "966038a4-8a1c-45f7-a3a7-0c20318d6c21") + ) + (pin "196" + (uuid "dc0866f7-05a9-47a2-96f4-00bad9a6a4d5") + ) + (pin "197" + (uuid "8f75a78f-fdd9-488d-a15d-6e625420973e") + ) + (pin "198" + (uuid "a7b516b7-e216-467f-8af0-75441e90d7cb") + ) + (pin "199" + (uuid "f62fd667-6085-442c-a14e-928627885059") + ) + (pin "200" + (uuid "54cd07ae-2c6c-4038-9598-b6e1df70795e") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "Module1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 228.6 41.91 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005dcc8bb6") + (property "Reference" "C1" + (at 231.521 40.7416 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 231.521 43.053 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" + (at 229.5652 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" + (at 228.6 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 228.6 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 228.6 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2611911" + (at 228.6 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RM EMK105 B7104KV-F" + (at 228.6 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "TAIYO YUDEN EUROPE GMBH" + (at 228.6 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" + (at 228.6 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "110091611" + (at 228.6 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2cb9c49e-82d7-476b-bc58-8c6fff3dddf8") + ) + (pin "2" + (uuid "4bb5736a-d22c-47e8-a09f-02490b2d7b1d") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 228.6 45.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005dcc8bbc") + (property "Reference" "#PWR0101" + (at 228.6 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 228.727 50.1142 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 228.6 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 228.6 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 228.6 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "03ceb6fa-e744-4405-b1b0-49ed782742c2") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR0101") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_02x02_Odd_Even") + (at 205.74 90.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005dd09d38") + (property "Reference" "J9" + (at 207.01 84.6582 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "THD-02-R" + (at 207.01 86.9696 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.toby.co.uk/uploads/publications/1673.pdf" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Toby" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "THD-02-R" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "151-604-425-761" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "EDAC" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "UCON00791" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "PinHeader_2x02_P2.54mm_Vertical" + (at 205.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7670d6a4-669e-4a95-8178-29fc8bb78054") + ) + (pin "2" + (uuid "4a8f9efa-0cc8-49f1-a296-c0ae29b30fa4") + ) + (pin "3" + (uuid "d41115c9-7c02-4897-9fd1-4a591b7b2833") + ) + (pin "4" + (uuid "9acfcfc7-989c-4acc-abb2-e00b92310a55") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "J9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_02x20_Odd_Even") + (at 157.48 46.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005dd3ddee") + (property "Reference" "J8" + (at 166.37 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "THD-20-R" + (at 158.75 20.9296 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Vertical" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.toby.co.uk/uploads/publications/1673.pdf" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Toby" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "THD-20-R" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "THD-20-R" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Toby" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "UCON00511" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "PinHeader_2x20_P2.54mm_Vertical" + (at 157.48 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4ca1471d-e84a-43e6-9ec2-ac5bbbc86c1a") + ) + (pin "10" + (uuid "d6a10cc9-e23d-4cff-880c-1c4e7c655172") + ) + (pin "11" + (uuid "94730dbb-de24-4d1d-bbd2-23a5677884a2") + ) + (pin "12" + (uuid "68a9e0d6-2c5b-4b0d-80b6-468567de10b2") + ) + (pin "13" + (uuid "b407a461-6c5c-47f0-9bdb-869e25d7cc7f") + ) + (pin "14" + (uuid "da90d19a-0e7e-4050-931c-1a89ae1517e3") + ) + (pin "15" + (uuid "d698e8ba-f846-4664-9811-56600cef7a13") + ) + (pin "16" + (uuid "dd792a1f-5f61-4685-b19e-ee5d59c531f5") + ) + (pin "17" + (uuid "69428fcf-c4b7-4246-91ed-cfe5d045b05f") + ) + (pin "18" + (uuid "1344c258-0a0e-4ec4-be37-1204c6a78d6a") + ) + (pin "19" + (uuid "76585e07-3216-453f-b827-82d9c90a2876") + ) + (pin "2" + (uuid "d8f086f0-c0a8-403b-adaf-40c349e5337e") + ) + (pin "20" + (uuid "b4d73ef7-d069-453b-a7bd-227eec81fabc") + ) + (pin "21" + (uuid "3ac1108e-506a-4c75-b603-f9a6a39785e0") + ) + (pin "22" + (uuid "79fc1ef9-e921-4832-95d3-5ae7ff6b03fb") + ) + (pin "23" + (uuid "ef546906-3f95-4037-a4d5-06936948161a") + ) + (pin "24" + (uuid "9c5eb8ba-0370-4530-b0dd-d326ff9cd796") + ) + (pin "25" + (uuid "5ce1aa0c-f98f-4b94-80bd-f188cf4c57de") + ) + (pin "26" + (uuid "93ca340a-e8ae-4e1b-bdac-fe7f0eea36ae") + ) + (pin "27" + (uuid "047ad835-c24f-4b94-8c87-da79f6183cc4") + ) + (pin "28" + (uuid "aec76fa7-ca3b-4002-827b-890c008964e6") + ) + (pin "29" + (uuid "646cbadb-b1e3-4f3d-b836-1d0a4642fad3") + ) + (pin "3" + (uuid "b766fba3-ed3c-4f2a-a7b1-a58173e2399a") + ) + (pin "30" + (uuid "56debd93-4345-487f-acb9-09e1591e88c2") + ) + (pin "31" + (uuid "91c9312f-49bd-43e5-9ab5-9233b64d7f4a") + ) + (pin "32" + (uuid "1129c821-4221-413a-b124-7cd2b452dee3") + ) + (pin "33" + (uuid "5a703fbc-431f-40f4-ad99-bbe431b7f329") + ) + (pin "34" + (uuid "ab1be128-b506-44db-b353-1b6cf0f1bff8") + ) + (pin "35" + (uuid "c11800a1-7754-4ac5-a9a8-c6989ec2e1ac") + ) + (pin "36" + (uuid "e494b54b-7300-4f8c-8bb9-32c84d3e63f0") + ) + (pin "37" + (uuid "31d3bb61-3ab8-4ee5-98f7-19fcbef58004") + ) + (pin "38" + (uuid "7b448334-a672-4f67-8bb7-9dc7daa7fefe") + ) + (pin "39" + (uuid "a73753d8-f00b-4be9-a8c8-167668e414ea") + ) + (pin "4" + (uuid "702adbad-cc32-40cc-8557-12ccbcc447f5") + ) + (pin "40" + (uuid "7da14e3c-031d-42a9-a820-92c0765992b7") + ) + (pin "5" + (uuid "b73189eb-ce33-4fd6-899f-a0fe6fefce38") + ) + (pin "6" + (uuid "2cde09e2-1478-4e90-84f2-de808fbc4e00") + ) + (pin "7" + (uuid "875d8101-02ec-4109-9cb3-dc03033ea564") + ) + (pin "8" + (uuid "09518f18-8c5c-4629-8039-76c971a8c2f1") + ) + (pin "9" + (uuid "8f3eb88d-9ce9-4013-ad67-32b8876a01b4") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "J8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 166.37 73.66 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ddd76da") + (property "Reference" "#PWR0102" + (at 166.37 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 166.497 78.0542 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 166.37 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 166.37 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 166.37 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "af6768f8-3c5e-4c2e-ad12-97c0640b49b0") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR0102") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 151.13 73.66 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ddf038e") + (property "Reference" "#PWR0103" + (at 151.13 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 151.257 78.0542 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 151.13 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 151.13 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 151.13 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "524a8897-4b26-49dd-b508-9c5b2f671e31") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR0103") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 232.41 74.93 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e09a5b2") + (property "Reference" "R2" + (at 232.41 69.6722 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "470R" + (at 232.41 71.9836 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 232.41 73.152 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 232.41 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 232.41 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 232.41 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "9239197" + (at 232.41 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "KOA EUROPE GMBH" + (at 232.41 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RK73G1ETQTP4700D " + (at 232.41 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "120887981" + (at 232.41 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 470R M1005 1% 63mW" + (at 232.41 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f2b36193-b632-424c-b534-9f2f874f65c5") + ) + (pin "2" + (uuid "62a0b005-d543-412f-93b9-72a8d1c3610c") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 232.41 80.01 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e0adefe") + (property "Reference" "R3" + (at 232.41 85.09 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "470R" + (at 232.41 82.55 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 232.41 78.232 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 232.41 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 232.41 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 232.41 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "9239197" + (at 232.41 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "KOA EUROPE GMBH" + (at 232.41 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RK73G1ETQTP4700D " + (at 232.41 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "120887981" + (at 232.41 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 470R M1005 1% 63mW" + (at 232.41 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cfbc958e-3fb8-49ab-a1a0-0abbb8af3f4b") + ) + (pin "2" + (uuid "8197234b-d466-4dd0-b29a-d8c861bfb7ac") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "R3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 38.1 151.13 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e15bd87") + (property "Reference" "#PWR0104" + (at 38.1 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 38.227 155.5242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 38.1 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 38.1 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 38.1 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4791f0c8-eca1-472a-b5e7-1c3eff883c30") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR0104") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 101.6 151.13 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e16bb43") + (property "Reference" "#PWR0105" + (at 101.6 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 101.727 155.5242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 101.6 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 101.6 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 101.6 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8bb8ae6f-c2e7-453e-8bb9-bb8cfac7befc") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR0105") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:LED") + (at 116.84 27.94 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e19548d") + (property "Reference" "D2" + (at 119.8118 26.9494 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "LED Green" + (at 119.8118 29.2608 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://optoelectronics.liteon.com/upload/download/DS22-2000-226/LTST-S270KGKT.pdf" + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey " + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "LTST-S270KGKT" + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "SML-A12M8TT86N" + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Rohm" + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "650263301" + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " Green 572nm LED Indication - Discrete 2.2V 2-SMD, No Lead" + (at 116.84 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fd1b2abd-acdb-456a-b12a-78be5659d6b2") + ) + (pin "2" + (uuid "241e4967-98ec-42a7-b49a-322999e65405") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "D2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 116.84 40.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e19768b") + (property "Reference" "R1" + (at 118.618 39.4716 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 118.618 41.783 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 115.062 40.64 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 116.84 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 116.84 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 116.84 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "9239235" + (at 116.84 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "KOA EUROPE GMBH" + (at 116.84 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RK73H1ETTP1001F" + (at 116.84 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 1K M1005 1% 63mW" + (at 116.84 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "125049511" + (at 116.84 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ca7b197f-7808-47de-a461-95f69fe0e8ed") + ) + (pin "2" + (uuid "7c70e3d7-b867-41ec-ba63-281d778af73f") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 165.1 147.32 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e20cb90") + (property "Reference" "#PWR05" + (at 165.1 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 165.227 151.7142 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 165.1 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 165.1 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 165.1 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "473c668c-5f7b-4cf5-8012-906483dc5dc1") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_name "LED_1") + (lib_id "Device:LED") + (at 172.72 119.38 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e286645") + (property "Reference" "D1" + (at 175.6918 118.3894 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "LED Red" + (at 175.6918 120.7008 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://optoelectronics.liteon.com/upload/download/DS22-2000-210/LTST-S270KRKT.pdf" + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey " + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" " LTST-S270KRKT" + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "SML-A12U8TT86Q" + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Rohm" + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "650295101" + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " Red 620nm LED Indication - Discrete 2.2V 2-SMD, No Lead" + (at 172.72 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9c352ce5-8dcd-4676-8f85-0d97597fd098") + ) + (pin "2" + (uuid "4035c6d5-0218-4683-a405-7b7b1fd841f8") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "D1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 172.72 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e28664f") + (property "Reference" "R10" + (at 174.498 128.3716 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 174.498 130.683 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 170.942 129.54 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 172.72 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 172.72 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 172.72 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "9239235" + (at 172.72 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "KOA EUROPE GMBH" + (at 172.72 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RK73H1ETTP1001F" + (at 172.72 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 1K M1005 1% 63mW" + (at 172.72 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "125049511" + (at 172.72 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0ec6de6a-5daa-4a3a-bcf9-49d82195b230") + ) + (pin "2" + (uuid "16c12f8d-a9ce-4e1f-b395-2ad0bc43e76b") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "R10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:TPD4EUSB30") + (at 207.01 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e48728e") + (property "Reference" "U2" + (at 207.01 50.3682 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TPD4EUSB30" + (at 207.01 52.6796 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_SON:USON-10_2.5x1.0mm_P0.5mm" + (at 182.88 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf" + (at 207.01 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 207.01 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 207.01 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2335455" + (at 207.01 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "CDDFN10-3324P-13" + (at 207.01 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Bourns" + (at 207.01 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "UDIO00346" + (at 207.01 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Quad TVS diode for high speed signals (USB3, GigE etc.)" + (at 207.01 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "113c2e5c-5d21-44b9-9699-61a03d05b219") + ) + (pin "10" + (uuid "3fab55da-a730-4225-adf1-b91eeeb16267") + ) + (pin "2" + (uuid "6eb8a12c-f7dd-45db-ac57-5cf35b00d623") + ) + (pin "3" + (uuid "6f893dfa-8241-4004-a564-8340bce225c5") + ) + (pin "4" + (uuid "1ee3dc48-8cba-4d55-baee-99d61bca8a95") + ) + (pin "5" + (uuid "7b7956cd-1bdf-4509-92c9-b55e8439ae86") + ) + (pin "6" + (uuid "252ee15c-9ab5-448c-b1d6-904530764041") + ) + (pin "7" + (uuid "9c946c42-87b3-4cd8-b0a1-90fe0d9167f2") + ) + (pin "8" + (uuid "a4e9d70b-0682-4de7-a82a-24ad7fb3af1b") + ) + (pin "9" + (uuid "b7676e80-9730-4696-8871-001d34b8b393") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 167.64 124.46 90) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e5bd558") + (property "Reference" "TP5" + (at 165.2778 121.793 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "TestPoint" + (at 170.3578 126.873 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_2.0x2.0mm" + (at 167.64 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 167.64 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 167.64 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 167.64 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 167.64 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 167.64 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 167.64 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Test point" + (at 167.64 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "32ad7fbe-e026-4d57-9f6b-f4af30c894d9") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "TP5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 156.21 91.44 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e5f44e8") + (property "Reference" "R5" + (at 154.94 88.9 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0R" + (at 160.02 88.9 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 156.21 93.218 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 156.21 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 156.21 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 156.21 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "9233750" + (at 156.21 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Rohm" + (at 156.21 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "MCR10EZPJ000" + (at 156.21 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 0R M2012 5% " + (at 156.21 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "121629591" + (at 156.21 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "20f86032-2ca7-4d85-9342-2ec7dd95b228") + ) + (pin "2" + (uuid "bb94c706-c1c6-4e19-ac2a-271d09f29af0") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "R5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 156.21 95.25 90) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e5f7bb2") + (property "Reference" "R4" + (at 154.94 97.79 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "nf" + (at 160.02 97.79 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder" + (at 156.21 97.028 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 156.21 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 156.21 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 156.21 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 156.21 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 156.21 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "66b7ab9e-b2bf-4ee7-8912-f23a2d210480") + ) + (pin "2" + (uuid "202557b3-1d57-491a-8c53-22fb6f02d7ed") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "R4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_02x07_Odd_Even") + (at 36.83 177.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e70fd78") + (property "Reference" "J2" + (at 38.1 164.6936 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_02x07_Odd_Even" + (at 38.1 167.005 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x07_P2.54mm_Vertical" + (at 36.83 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.toby.co.uk/uploads/publications/1673.pdf" + (at 36.83 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 36.83 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Toby" + (at 36.83 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "THD-07-R" + (at 36.83 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "THD-07-R" + (at 36.83 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Toby" + (at 36.83 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "PinHeader_2x07_P2.54mm_Vertical" + (at 36.83 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "20ec6350-74a5-4d42-b316-fcebf33d4f1f") + ) + (pin "10" + (uuid "7bcd2b39-3ed2-4d2c-8455-de5fcab07493") + ) + (pin "11" + (uuid "d08ce24e-7717-4be5-87bb-ae091c6d4b8b") + ) + (pin "12" + (uuid "5066ec9a-19df-47c4-8835-fbd519c75492") + ) + (pin "13" + (uuid "dab29796-d6b3-4d2d-805f-0b5d2109d9de") + ) + (pin "14" + (uuid "fc83cf23-e446-4a86-a627-d51de5b41357") + ) + (pin "2" + (uuid "c81031fb-1f04-4fac-8d59-ac8a1a81a15c") + ) + (pin "3" + (uuid "62832516-11f1-4f5c-b685-8f41c44bdcd7") + ) + (pin "4" + (uuid "bdd0b335-10a1-4a58-b644-8a502b93dd0b") + ) + (pin "5" + (uuid "b0435ce7-bdba-4ce7-b15a-4c85a5fe1252") + ) + (pin "6" + (uuid "854c8829-725c-43a9-9fc5-c324d25b9b34") + ) + (pin "7" + (uuid "4bc86510-eacc-4743-bf0b-cadae3d7b4b3") + ) + (pin "8" + (uuid "f9ff75f9-641a-49cb-8196-d4ed678570a7") + ) + (pin "9" + (uuid "2451d668-51ff-44ab-acfe-cfe666fa0c7e") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x03") + (at 123.19 133.35 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "00000000-0000-0000-0000-00005e95ca2d") + (property "Reference" "J3" + (at 121.1072 125.2982 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03" + (at 121.1072 127.6096 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 123.19 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 123.19 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 123.19 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 123.19 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 123.19 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 123.19 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 123.19 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "3pin 0.1\" connector" + (at 123.19 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "21c25529-23d9-48dd-b470-801777c483af") + ) + (pin "2" + (uuid "5f8f5622-0fae-4eeb-bf3b-6112a55f318d") + ) + (pin "3" + (uuid "ac2dd344-9bcd-43ef-97cf-410a56901723") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:TPD4EUSB30") + (at 207.01 30.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ea6ace7") + (property "Reference" "U1" + (at 207.01 18.6182 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TPD4EUSB30" + (at 207.01 20.9296 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_SON:USON-10_2.5x1.0mm_P0.5mm" + (at 182.88 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf" + (at 207.01 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 207.01 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 207.01 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2335455" + (at 207.01 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "CDDFN10-3324P-13" + (at 207.01 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Bourns" + (at 207.01 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "UDIO00346" + (at 207.01 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Quad TVS diode for high speed signals (USB3, GigE etc.)" + (at 207.01 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a5c104d3-89c9-4abc-a64e-c0025d27215c") + ) + (pin "10" + (uuid "cbdd1bbf-3cd0-4ee4-887c-601a6f0db5ee") + ) + (pin "2" + (uuid "24a6640c-c25f-456d-8c74-892f609dcf13") + ) + (pin "3" + (uuid "fd050c79-bed7-4987-a57a-77020a3e1a94") + ) + (pin "4" + (uuid "7ab7b1db-1ff2-493f-8f9c-36792ad21c73") + ) + (pin "5" + (uuid "bf1f6226-2275-4b86-9c1d-d63e3a6430dd") + ) + (pin "6" + (uuid "53dd890e-5aba-493f-87ec-8a34bea86d70") + ) + (pin "7" + (uuid "ca4b2a77-5a71-40ab-b178-0276e8dd2714") + ) + (pin "8" + (uuid "8bcfde59-b85c-43bb-9e8e-e5706baedd16") + ) + (pin "9" + (uuid "ed045454-339e-41b3-adf7-74925ba99853") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 246.38 90.17 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ebccb18") + (property "Reference" "#PWR0109" + (at 246.38 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 246.507 94.5642 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 246.38 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 246.38 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 246.38 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "46ef7791-0c18-4f00-822c-2403dcd88336") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR0109") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 207.01 74.93 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ebf0a51") + (property "Reference" "#PWR0110" + (at 207.01 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 207.137 79.3242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 207.01 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 207.01 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 207.01 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f1f863df-0c8c-46fa-8804-767e10582681") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR0110") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 207.01 43.18 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ec0fbf3") + (property "Reference" "#PWR0111" + (at 207.01 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 207.137 47.5742 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 207.01 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 207.01 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 207.01 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b5f68693-01fd-47c9-b617-85a6609e1dab") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR0111") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Battery_Cell") + (at 111.76 176.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "11b63360-04fd-4616-9fc5-ed1550e3c4f5") + (property "Reference" "BT1" + (at 114.7572 174.0916 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Battery_Cell" + (at 114.7572 176.403 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:BatteryHolder_Keystone_3034_1x20mm" + (at 111.76 175.006 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.keyelco.com/userAssets/file/M65p9.pdf" + (at 111.76 175.006 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 111.76 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 111.76 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "36-3034-ND" + (at 111.76 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "3034" + (at 111.76 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Keystone" + (at 111.76 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " Battery Retainer Coin, 20.0mm 1 Cell SMD (SMT) Tab" + (at 111.76 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "afb3c71c-5c1b-4a5e-a94b-014fff5120e7") + ) + (pin "2" + (uuid "2febe397-9bc0-4cc1-9ead-cc00ed992d01") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "BT1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:MagJack-A70-112-331N126") + (at 267.97 92.71 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1fd45676-ece1-46f4-b6d1-0d78a89f20ca") + (property "Reference" "U3" + (at 250.19 16.51 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MagJack-A70-112-331N126" + (at 250.19 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:TRJG0926HENL" + (at 267.97 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://p.globalsources.com/IMAGES/PDT/SPEC/690/K1160305690.pdf" + (at 267.97 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 267.97 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "TRJG0926HENL" + (at 267.97 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Trxcon" + (at 267.97 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "UCON00900" + (at 267.97 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Gigabit Ethernet Magjack" + (at 267.97 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "TRJG0926HENL" + (at 267.97 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ffcbff8e-ab26-41db-bf1a-b4c132bdb8a6") + ) + (pin "10" + (uuid "32e6d5f9-b73a-409b-a341-b80aa666fbb4") + ) + (pin "11" + (uuid "9d5ddb59-1e9e-4537-9599-057acace239b") + ) + (pin "12" + (uuid "cd8fc82c-2372-4ab9-b58f-1c5bd1ca2b34") + ) + (pin "13" + (uuid "31bc72e3-7b37-4039-ae03-b411f4438425") + ) + (pin "14" + (uuid "b84bbe17-09c8-4aea-bd95-af34a96a069c") + ) + (pin "15" + (uuid "2eae7d9d-0d7d-4755-80a4-ff458c263895") + ) + (pin "16" + (uuid "b3dc6ebf-2791-42b3-a514-444efd66de71") + ) + (pin "17" + (uuid "6f29f4c3-a661-4405-981e-bd400129444f") + ) + (pin "18" + (uuid "e9b3c7ab-9a7d-41ab-b41f-c521c2f31bd3") + ) + (pin "19" + (uuid "414c44f1-6dc8-47ac-8734-d071cba6d2ba") + ) + (pin "2" + (uuid "3a95a55b-8a78-4e07-8313-782b4be21acd") + ) + (pin "20" + (uuid "6551c37f-9afc-4b25-9b2a-c1739b8edf17") + ) + (pin "3" + (uuid "ce87f310-f0ba-406a-b736-4ce38509611a") + ) + (pin "4" + (uuid "5a8a64e8-0b04-48e4-b608-5cc887a127c8") + ) + (pin "5" + (uuid "074bd178-4b8d-4443-a5fb-cfcbc87a942c") + ) + (pin "6" + (uuid "616d2ae0-660e-4201-aead-18acef1aaa51") + ) + (pin "7" + (uuid "5c9a0412-4fb3-44e0-8564-dd1f1d19974f") + ) + (pin "8" + (uuid "4bcce46c-d9ae-4ab2-a9c8-5cc8f50b0e43") + ) + (pin "9" + (uuid "de4ed296-9fb5-4bc2-9de6-dd78d5bf94a9") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "U3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 21.59 186.69 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3a52089d-c063-4649-9db3-39a0fd7f55f2") + (property "Reference" "#PWR029" + (at 21.59 193.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 21.717 191.0842 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 21.59 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 21.59 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 21.59 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2a0ffebb-11f5-408f-bc53-c2de56b1b238") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR029") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 146.05 180.34 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "40a6c1e0-3797-4b36-a48d-55c27341619d") + (property "Reference" "#PWR06" + (at 146.05 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 146.177 184.7342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 146.05 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 146.05 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 146.05 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "74476b58-5593-46ff-b8a8-9f11221d9877") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x04") + (at 152.4 170.18 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6aeabf3a-c9eb-43e4-983c-5a4d5e9c1160") + (property "Reference" "J14" + (at 150.495 178.435 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "JST_SHBM04B-SRSS-TB" + (at 149.86 180.975 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_JST:JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical" + (at 152.4 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 152.4 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 152.4 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "" + (at 152.4 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "SHBM04B-SRSS-TB" + (at 152.4 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "SHBM04B-SRSS-TB" + (at 152.4 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "JST" + (at 152.4 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "4 pin vertical 1mm pitch connector" + (at 152.4 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4d9421e1-a748-4fa7-a9dc-d87a661c0564") + ) + (pin "2" + (uuid "efe0c997-9709-4e54-b9b3-bef7f7d6baa0") + ) + (pin "3" + (uuid "9b97d13a-bfc1-499e-9b09-38ac7754ef2f") + ) + (pin "4" + (uuid "425a3672-f282-4190-91cf-6eed05366832") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "J14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Switch:SW_Push") + (at 80.01 175.26 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6d6b7ec1-ac41-45c8-9cb4-3895d23e2861") + (property "Reference" "SW1" + (at 83.82 173.9899 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Right angle Tact button" + (at 83.82 176.784 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Button_Switch_THT:SW_Tactile_SPST_Angled_PTS645Vx58-2LFS" + (at 85.09 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.mouser.co.uk/datasheet/2/240/Littelfuse-3050591.pdf" + (at 85.09 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Push button switch, generic, two pins" + (at 80.01 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "PTS645VH58-2LFS" + (at 80.01 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "PTS645VH58-2LFS" + (at 80.01 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "CK" + (at 80.01 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Right angle through hole Tact switch" + (at 80.01 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9843560a-ccf5-47dd-bf25-d2df0bffae2b") + ) + (pin "2" + (uuid "80bf1f2e-f8bd-43f5-a624-fdabf0dbca86") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "SW1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 123.19 34.29 270) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "a747e8fd-28f4-402b-969b-2c8e62ca6408") + (property "Reference" "TP3" + (at 124.46 38.1 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "TestPoint" + (at 121.92 36.195 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_2.0x2.0mm" + (at 123.19 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 123.19 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 123.19 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 123.19 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 123.19 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 123.19 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 123.19 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Test point" + (at 123.19 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "974678fc-a03f-4be4-9b67-a5d08857a8c2") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "TP3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 111.76 179.07 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "deb12e56-a561-483f-9d63-808f254cde54") + (property "Reference" "#PWR027" + (at 111.76 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 111.887 183.4642 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 111.76 179.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 111.76 179.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 111.76 179.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ca1c7199-8e82-4318-a8fc-9289fa11e2d2") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR027") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 80.01 180.34 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f06f18a3-c0e2-4ed0-947a-3f143345d5ab") + (property "Reference" "#PWR030" + (at 80.01 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 80.137 184.7342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 80.01 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 80.01 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 80.01 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d5479a79-ab8e-4520-8a17-d633176c307d") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a" + (reference "#PWR030") + (unit 1) + ) + ) + ) + ) + (no_connect + (at 100.33 92.71) + (uuid "5f7f4a2c-a467-5096-bdc6-821b8290a2dd") + ) + (no_connect + (at 100.33 97.79) + (uuid "1eb37926-74cb-5580-a71e-00e7e28eea5d") + ) + (no_connect + (at 39.37 97.79) + (uuid "dfd6a499-9d40-578d-81b6-32641002dbc1") + ) + (no_connect + (at 100.33 100.33) + (uuid "7636eb51-02f8-53f9-86d0-57b07308e5ce") + ) + (no_connect + (at 100.33 105.41) + (uuid "e6138704-aa71-5ed8-a1c3-20b5c64eeb83") + ) + (no_connect + (at 100.33 107.95) + (uuid "36b881d4-f6b6-53eb-af18-58c3010f68f7") + ) + (no_connect + (at 100.33 115.57) + (uuid "d1e742ca-c265-54bb-9308-6968d17c2bd7") + ) + (no_connect + (at 39.37 120.65) + (uuid "3c6e0444-0716-55e0-831e-98483456690a") + ) + (no_connect + (at 39.37 123.19) + (uuid "390d4660-46aa-5d2e-a0bc-2119fc669567") + ) + (no_connect + (at 100.33 143.51) + (uuid "18c4035c-bf63-5480-86f9-694633fbf057") + ) + (no_connect + (at 39.37 146.05) + (uuid "f7c9c85f-06f8-5cff-a5bb-b96a4bedfcd6") + ) +) diff --git a/carrier/CM5_HighSpeed.kicad_sch b/carrier/CM5_HighSpeed.kicad_sch new file mode 100644 index 0000000..e7acade --- /dev/null +++ b/carrier/CM5_HighSpeed.kicad_sch @@ -0,0 +1,12907 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "3457afc5-3e4f-4220-81d1-b079f653a722") + (paper "A4") + (title_block + (title "Compute Module 5 IO Board - CM5 - Highspeed") + (rev "1") + (company "Copyright © 2024 Raspberry Pi Ltd.") + (comment 1 "www.raspberrypi.com") + ) + (lib_symbols + (symbol "CM5IO:AP2553W6" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP2553W6" + (at -3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP255x.pdf" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "AP2553W6-7DICT-ND" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AP2553W6_0_0" + (pin power_in line + (at -8.89 2.54 0) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -8.89 0 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -8.89 -2.54 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 7.62 -2.54 180) + (length 2.54) + (name "nFault" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (name "ILIM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 2.54 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "AP2553W6_0_1" + (rectangle + (start -6.35 5.08) + (end 5.08 -5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "CM5IO:ComputeModule5-CM5" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Module" + (at 113.03 -68.58 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ComputeModule5-CM5" + (at 140.97 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "CM5IO:Raspberry-Pi-5-Compute-Module" + (at 142.24 -26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 142.24 -26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RaspberryPi Compute module 5 " + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Amphenol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field5" "2x 10164227-1001A1RLF" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "ComputeModule5-CM5_1_0" + (text "GPIO" + (at 0 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5_1_1" + (rectangle + (start -30.48 -71.12) + (end 25.4 58.42) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "600mA Max" + (at -8.89 -53.34 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "600mA Max" + (at -8.89 -48.26 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "NB SD signals are only available" + (at -1.27 -27.94 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "on modules without eMMC" + (at -1.27 -30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin power_in line + (at 27.94 55.88 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 45.72 0) + (length 2.54) + (name "Ethernet_Pair0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -68.58 0) + (length 2.54) + (name "CAM_GPIO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "100" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 43.18 180) + (length 2.54) + (name "Ethernet_Pair2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 43.18 0) + (length 2.54) + (name "Ethernet_Pair0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 40.64 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 40.64 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 38.1 180) + (length 2.54) + (name "Ethernet_nLED3(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -33.02 38.1 0) + (length 2.54) + (name "FAN_TACHO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 35.56 180) + (length 2.54) + (name "Ethernet_nLED2(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -33.02 35.56 0) + (length 2.54) + (name "Ethernet_SYNC_OUT(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 33.02 180) + (length 2.54) + (name "FAN_PWM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 55.88 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 33.02 0) + (length 2.54) + (name "EEPROM_nWP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 27.94 30.48 180) + (length 2.54) + (name "LED_nACT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 30.48 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 27.94 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 27.94 0) + (length 2.54) + (name "GPIO26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 25.4 180) + (length 2.54) + (name "GPIO21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 25.4 0) + (length 2.54) + (name "GPIO19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 22.86 180) + (length 2.54) + (name "GPIO20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 22.86 0) + (length 2.54) + (name "GPIO13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 20.32 180) + (length 2.54) + (name "GPIO16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 53.34 180) + (length 2.54) + (name "Ethernet_Pair3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 20.32 0) + (length 2.54) + (name "GPIO6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 17.78 180) + (length 2.54) + (name "GPIO12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 17.78 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 15.24 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 15.24 0) + (length 2.54) + (name "GPIO5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 12.7 180) + (length 2.54) + (name "ID_SC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 12.7 0) + (length 2.54) + (name "ID_SD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 10.16 180) + (length 2.54) + (name "GPIO7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 10.16 0) + (length 2.54) + (name "GPIO11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 7.62 180) + (length 2.54) + (name "GPIO8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 53.34 0) + (length 2.54) + (name "Ethernet_Pair1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 7.62 0) + (length 2.54) + (name "GPIO9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 5.08 180) + (length 2.54) + (name "GPIO25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 5.08 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 2.54 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 2.54 0) + (length 2.54) + (name "GPIO10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 0 180) + (length 2.54) + (name "GPIO24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 0 0) + (length 2.54) + (name "GPIO22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -2.54 180) + (length 2.54) + (name "GPIO23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -2.54 0) + (length 2.54) + (name "GPIO27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -5.08 180) + (length 2.54) + (name "GPIO18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 50.8 180) + (length 2.54) + (name "Ethernet_Pair3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -5.08 0) + (length 2.54) + (name "GPIO17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -7.62 180) + (length 2.54) + (name "GPIO15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -7.62 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -10.16 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -10.16 0) + (length 2.54) + (name "GPIO4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -12.7 180) + (length 2.54) + (name "GPIO14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -12.7 0) + (length 2.54) + (name "GPIO3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -15.24 180) + (length 2.54) + (name "SD_CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -15.24 0) + (length 2.54) + (name "GPIO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -17.78 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "59" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 50.8 0) + (length 2.54) + (name "Ethernet_Pair1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -17.78 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "60" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -20.32 180) + (length 2.54) + (name "SD_DAT3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "61" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -20.32 0) + (length 2.54) + (name "SD_CMD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "62" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -22.86 180) + (length 2.54) + (name "SD_DAT0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "63" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -22.86 0) + (length 2.54) + (name "SD_DAT5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "64" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -25.4 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "65" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -25.4 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "66" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -27.94 180) + (length 2.54) + (name "SD_DAT1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -27.94 0) + (length 2.54) + (name "SD_DAT4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -30.48 180) + (length 2.54) + (name "SD_DAT2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "69" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 48.26 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -30.48 0) + (length 2.54) + (name "SD_DAT7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "70" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -33.02 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "71" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -33.02 0) + (length 2.54) + (name "SD_DAT6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "72" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -35.56 180) + (length 2.54) + (name "SD_VDD_Override" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "73" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -35.56 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "74" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 -38.1 180) + (length 2.54) + (name "SD_PWR_ON" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "75" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -38.1 0) + (length 2.54) + (name "VBAT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "76" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -40.64 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "77" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -40.64 0) + (length 2.54) + (name "GPIO_VREF(1.8v/3.3v_Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "78" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -43.18 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "79" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 48.26 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -43.18 0) + (length 2.54) + (name "SCL0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "80" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -45.72 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "81" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -45.72 0) + (length 2.54) + (name "SDA0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "82" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -48.26 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "83" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -33.02 -48.26 0) + (length 2.54) + (name "+3.3v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "84" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -50.8 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "85" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -50.8 0) + (length 2.54) + (name "+3.3v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "86" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -53.34 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "87" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -33.02 -53.34 0) + (length 2.54) + (name "+1.8v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "88" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -55.88 180) + (length 2.54) + (name "WiFi_nDisable" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "89" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 45.72 180) + (length 2.54) + (name "Ethernet_Pair2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -55.88 0) + (length 2.54) + (name "+1.8v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "90" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -58.42 180) + (length 2.54) + (name "BT_nDisable" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "91" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -58.42 0) + (length 2.54) + (name "PWR_BUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "92" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -60.96 180) + (length 2.54) + (name "nRPIBOOT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "93" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -60.96 0) + (length 2.54) + (name "CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "94" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 -63.5 180) + (length 2.54) + (name "LED_nPWR" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "95" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -63.5 0) + (length 2.54) + (name "CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "96" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -66.04 180) + (length 2.54) + (name "CAM_GPIO0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "97" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -66.04 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "98" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -68.58 180) + (length 2.54) + (name "PMIC_ENABLE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "99" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5_2_1" + (rectangle + (start 114.3 -66.04) + (end 165.1 63.5) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "High Speed Serial" + (at 140.97 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin input line + (at 170.18 60.96 180) + (length 5.08) + (name "USB_OTG_ID" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "101" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 60.96 0) + (length 5.08) + (name "PCIe_nCLKREQ" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "102" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 58.42 180) + (length 5.08) + (name "USB2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "103" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 58.42 0) + (length 5.08) + (name "PCIE_nWAKE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "104" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 55.88 180) + (length 5.08) + (name "USB2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "105" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 55.88 0) + (length 5.08) + (name "PCIE_PWR_EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "106" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 53.34 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "107" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 53.34 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "108" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 50.8 180) + (length 5.08) + (name "PCIe_nRST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "109" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 50.8 0) + (length 5.08) + (name "PCIe_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "110" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 48.26 180) + (length 5.08) + (name "VBUS_EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "111" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 48.26 0) + (length 5.08) + (name "PCIe_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "112" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 45.72 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "113" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 45.72 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "114" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 43.18 180) + (length 5.08) + (name "MIPI0_D0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "115" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 43.18 0) + (length 5.08) + (name "PCIe_RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "116" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 40.64 180) + (length 5.08) + (name "MIPI0_D0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "117" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 40.64 0) + (length 5.08) + (name "PCIe_RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "118" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 38.1 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "119" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 38.1 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "120" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 35.56 180) + (length 5.08) + (name "MIPI0_D1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "121" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 35.56 0) + (length 5.08) + (name "PCIe_TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "122" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 33.02 180) + (length 5.08) + (name "MIPI0_D1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "123" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 33.02 0) + (length 5.08) + (name "PCIe_TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "124" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "125" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 30.48 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "126" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 27.94 180) + (length 5.08) + (name "MIPI0_C_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "127" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 27.94 0) + (length 5.08) + (name "USB3-0-RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "128" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 25.4 180) + (length 5.08) + (name "MIPI0_C_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "129" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 25.4 0) + (length 5.08) + (name "USB3-0-RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "130" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 22.86 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "131" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 22.86 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "132" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 20.32 180) + (length 5.08) + (name "MIPI0_D2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "133" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 109.22 20.32 0) + (length 5.08) + (name "USB3-0-D_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "134" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 17.78 180) + (length 5.08) + (name "MIPI0_D2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "135" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 109.22 17.78 0) + (length 5.08) + (name "USB3-0-D_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "136" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 15.24 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "137" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 15.24 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "138" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 12.7 180) + (length 5.08) + (name "MIPI0_D3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "139" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 12.7 0) + (length 5.08) + (name "USB3-0-TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "140" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 10.16 180) + (length 5.08) + (name "MIPI0_D3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "141" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 10.16 0) + (length 5.08) + (name "USB3-0-TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "142" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 7.62 180) + (length 5.08) + (name "HDMI1_HOTPLUG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "143" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 7.62 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "144" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 170.18 5.08 180) + (length 5.08) + (name "HDMI1_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "145" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 5.08 0) + (length 5.08) + (name "HDMI1_TX2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "146" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 2.54 180) + (length 5.08) + (name "HDMI1_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "147" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 2.54 0) + (length 5.08) + (name "HDMI1_TX2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "148" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 0 180) + (length 5.08) + (name "HDMI1_CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "149" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 0 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "150" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 -2.54 180) + (length 5.08) + (name "HDMI0_CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "151" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -2.54 0) + (length 5.08) + (name "HDMI1_TX1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "152" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -5.08 180) + (length 5.08) + (name "HDMI0_HOTPLUG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "153" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -5.08 0) + (length 5.08) + (name "HDMI1_TX1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "154" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -7.62 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "155" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -7.62 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "156" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -10.16 180) + (length 5.08) + (name "USB3-1-RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "157" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -10.16 0) + (length 5.08) + (name "HDMI1_TX0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "158" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -12.7 180) + (length 5.08) + (name "USB3-1-RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "159" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -12.7 0) + (length 5.08) + (name "HDMI1_TX0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "160" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -15.24 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "161" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -15.24 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "162" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 -17.78 180) + (length 5.08) + (name "USB3-1-D_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "163" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -17.78 0) + (length 5.08) + (name "HDMI1_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "164" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 -20.32 180) + (length 5.08) + (name "USB3-1-D_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "165" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -20.32 0) + (length 5.08) + (name "HDMI1_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "166" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -22.86 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "167" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -22.86 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "168" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -25.4 180) + (length 5.08) + (name "USB3-1-TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "169" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -25.4 0) + (length 5.08) + (name "HDMI0_TX2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "170" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -27.94 180) + (length 5.08) + (name "USB3-1-TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "171" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -27.94 0) + (length 5.08) + (name "HDMI0_TX2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "172" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "173" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -30.48 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "174" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -33.02 180) + (length 5.08) + (name "MIPI1_D0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "175" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -33.02 0) + (length 5.08) + (name "HDMI0_TX1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "176" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -35.56 180) + (length 5.08) + (name "MIPI1_D0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "177" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -35.56 0) + (length 5.08) + (name "HDMI0_TX1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "178" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -38.1 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "179" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -38.1 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "180" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -40.64 180) + (length 5.08) + (name "MIPI1_D1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "181" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -40.64 0) + (length 5.08) + (name "HDMI0_TX0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "182" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -43.18 180) + (length 5.08) + (name "MIPI1_D1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "183" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -43.18 0) + (length 5.08) + (name "HDMI0_TX0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "184" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -45.72 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "185" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -45.72 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "186" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -48.26 180) + (length 5.08) + (name "MIPI1_C_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "187" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -48.26 0) + (length 5.08) + (name "HDMI0_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "188" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -50.8 180) + (length 5.08) + (name "MIPI1_C_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "189" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -50.8 0) + (length 5.08) + (name "HDMI0_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "190" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -53.34 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "191" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -53.34 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "192" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -55.88 180) + (length 5.08) + (name "MIPI1_D2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "193" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -55.88 0) + (length 5.08) + (name "MIPI1_D3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "194" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -58.42 180) + (length 5.08) + (name "MIPI1_D2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "195" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -58.42 0) + (length 5.08) + (name "MIPI1_D3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "196" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -60.96 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "197" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -60.96 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "198" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 170.18 -63.5 180) + (length 5.08) + (name "HDMI0_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "199" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 109.22 -63.5 0) + (length 5.08) + (name "HDMI0_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "200" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:HDMI_A_1.4" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -6.35 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "HDMI_A_1.4" + (at 10.16 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0.635 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://en.wikipedia.org/wiki/HDMI" + (at 0.635 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "HDMI 1.4+ type A connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "hdmi conn" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "HDMI*A*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "HDMI_A_1.4_0_0" + (polyline + (pts + (xy 8.128 16.51) (xy 8.128 18.034) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 16.51) (xy 0 18.034) (xy 0 17.272) (xy 1.905 17.272) (xy 1.905 18.034) (xy 1.905 16.51) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.667 18.034) (xy 4.318 18.034) (xy 4.572 17.78) (xy 4.572 16.764) (xy 4.318 16.51) (xy 2.667 16.51) + (xy 2.667 17.272) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "HDMI_A_1.4_0_1" + (rectangle + (start -7.62 25.4) + (end 10.16 -25.4) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 2.54 8.89) (xy 3.81 8.89) (xy 5.08 6.35) (xy 5.08 -5.715) (xy 3.81 -8.255) (xy 2.54 -8.255) + (xy 2.54 8.89) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 5.334 16.51) (xy 5.334 18.034) (xy 6.35 18.034) (xy 6.35 16.51) (xy 6.35 18.034) (xy 7.112 18.034) + (xy 7.366 17.78) (xy 7.366 16.51) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 12.7) (xy 0 -12.7) (xy 3.81 -12.7) (xy 5.08 -10.16) (xy 7.62 -8.89) (xy 7.62 8.89) (xy 5.08 10.16) + (xy 3.81 12.7) (xy 0 12.7) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "HDMI_A_1.4_1_1" + (pin passive line + (at -10.16 20.32 0) + (length 2.54) + (name "D2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 5.08 0) + (length 2.54) + (name "CK+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -27.94 90) + (length 2.54) + (name "CKS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 2.54 0) + (length 2.54) + (name "CK-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -10.16 -2.54 0) + (length 2.54) + (name "CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -15.24 0) + (length 2.54) + (name "UTILITY/HEAC+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -7.62 0) + (length 2.54) + (name "SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -10.16 -10.16 0) + (length 2.54) + (name "SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 5.08 -27.94 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 27.94 270) + (length 2.54) + (name "+5V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -17.78 0) + (length 2.54) + (name "HPD/HEAC-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -27.94 90) + (length 2.54) + (name "D2S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 17.78 0) + (length 2.54) + (name "D2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 15.24 0) + (length 2.54) + (name "D1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -27.94 90) + (length 2.54) + (name "D1S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 12.7 0) + (length 2.54) + (name "D1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 10.16 0) + (length 2.54) + (name "D0+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -27.94 90) + (length 2.54) + (name "D0S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 7.62 0) + (length 2.54) + (name "D0-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:RT9742SNGV" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -2.54 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RT9742SNGV" + (at 3.81 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:TSOT-23_HandSoldering" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "500mA Load Switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RT9742SNGV_0_1" + (rectangle + (start -2.54 6.35) + (end 7.62 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "RT9742SNGV_1_1" + (pin power_in line + (at -5.08 3.81 0) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 10.16 3.81 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -2.54 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:USB3_A" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -10.16 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "USB3_A" + (at 10.16 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 3.81 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 3.81 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB 3.0 A connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "usb universal serial bus" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "USB3_A_1_1" + (rectangle + (start -8.89 4.064) + (end -7.874 3.556) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 6.604) + (end -7.874 6.096) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 11.684) + (end -7.874 11.176) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 14.224) + (end -7.874 13.716) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 19.304) + (end -7.874 18.796) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 21.844) + (end -7.874 21.336) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 26.924) + (end -7.874 26.416) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -7.62 -2.286) + (end -8.636 -2.794) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -7.62 0.254) + (end -8.636 -0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -2.286 -11.176) + (end 10.16 -15.24) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -2.286 -4.826) + (end 10.16 -8.89) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.016 -12.446) + (end 8.636 -13.716) + (stroke + (width 0.508) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -1.016 -6.096) + (end 8.636 -7.366) + (stroke + (width 0.508) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 4.572 6.35) (xy 4.572 15.24) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.572 7.62) (xy 7.112 10.16) (xy 7.112 11.43) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.572 8.89) (xy 2.032 11.43) (xy 2.032 12.7) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.842 15.24) (xy 4.572 17.78) (xy 3.302 15.24) (xy 5.842 15.24) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 1.016 -13.97) + (end 1.778 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 1.016 -7.62) + (end 1.778 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.667 12.7) + (end 1.397 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 2.794 -13.97) + (end 3.556 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.794 -7.62) + (end 3.556 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 4.572 -13.97) + (end 5.334 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 4.572 -7.62) + (end 5.334 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 6.35 -13.97) + (end 7.112 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 6.35 -7.62) + (end 7.112 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.112 12.065) + (radius 0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 11.43 30.48) + (end -8.89 -39.37) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (text "SS" + (at 4.572 3.175 900) + (effects + (font + (size 5.08 5.08) + (bold yes) + (italic yes) + ) + ) + ) + (pin passive line + (at 13.97 -36.83 180) + (length 2.54) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 26.67 0) + (length 2.54) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 19.05 0) + (length 2.54) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 21.59 0) + (length 2.54) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 0 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 11.43 0) + (length 2.54) + (name "SSRX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 13.97 0) + (length 2.54) + (name "SSRX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -2.54 0) + (length 2.54) + (name "DRAIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 3.81 0) + (length 2.54) + (name "SSTX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 6.35 0) + (length 2.54) + (name "SSTX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -7.62 0) + (length 2.54) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -15.24 0) + (length 2.54) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -12.7 0) + (length 2.54) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -34.29 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -22.86 0) + (length 2.54) + (name "SSRX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -20.32 0) + (length 2.54) + (name "SSRX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -36.83 0) + (length 2.54) + (name "DRAIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -30.48 0) + (length 2.54) + (name "SSTX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -27.94 0) + (length 2.54) + (name "SSTX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Conn_01x22_Socket" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x22_Socket" + (at 0 -30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x22, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x22_Socket_1_1" + (arc + (start 0 -27.432) + (mid -0.5058 -27.94) + (end 0 -28.448) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -24.892) + (mid -0.5058 -25.4) + (end 0 -25.908) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -22.352) + (mid -0.5058 -22.86) + (end 0 -23.368) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -19.812) + (mid -0.5058 -20.32) + (end 0 -20.828) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -17.272) + (mid -0.5058 -17.78) + (end 0 -18.288) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -14.732) + (mid -0.5058 -15.24) + (end 0 -15.748) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -12.192) + (mid -0.5058 -12.7) + (end 0 -13.208) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -9.652) + (mid -0.5058 -10.16) + (end 0 -10.668) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -7.112) + (mid -0.5058 -7.62) + (end 0 -8.128) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -4.572) + (mid -0.5058 -5.08) + (end 0 -5.588) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -2.032) + (mid -0.5058 -2.54) + (end 0 -3.048) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -27.94) (xy -0.508 -27.94) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -25.4) (xy -0.508 -25.4) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -22.86) (xy -0.508 -22.86) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -20.32) (xy -0.508 -20.32) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -17.78) (xy -0.508 -17.78) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -15.24) (xy -0.508 -15.24) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -12.7) (xy -0.508 -12.7) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -10.16) (xy -0.508 -10.16) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -7.62) (xy -0.508 -7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -5.08) (xy -0.508 -5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.508 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy -0.508 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.54) (xy -0.508 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 5.08) (xy -0.508 5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 7.62) (xy -0.508 7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 10.16) (xy -0.508 10.16) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 12.7) (xy -0.508 12.7) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 15.24) (xy -0.508 15.24) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 17.78) (xy -0.508 17.78) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 20.32) (xy -0.508 20.32) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 22.86) (xy -0.508 22.86) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 25.4) (xy -0.508 25.4) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0.508) + (mid -0.5058 0) + (end 0 -0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 3.048) + (mid -0.5058 2.54) + (end 0 2.032) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 5.588) + (mid -0.5058 5.08) + (end 0 4.572) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 8.128) + (mid -0.5058 7.62) + (end 0 7.112) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 10.668) + (mid -0.5058 10.16) + (end 0 9.652) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 13.208) + (mid -0.5058 12.7) + (end 0 12.192) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 15.748) + (mid -0.5058 15.24) + (end 0 14.732) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 18.288) + (mid -0.5058 17.78) + (end 0 17.272) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 20.828) + (mid -0.5058 20.32) + (end 0 19.812) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 23.368) + (mid -0.5058 22.86) + (end 0 22.352) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 25.908) + (mid -0.5058 25.4) + (end 0 24.892) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 25.4 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 0) + (length 3.81) + (name "Pin_14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -10.16 0) + (length 3.81) + (name "Pin_15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -12.7 0) + (length 3.81) + (name "Pin_16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -15.24 0) + (length 3.81) + (name "Pin_17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -17.78 0) + (length 3.81) + (name "Pin_18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -20.32 0) + (length 3.81) + (name "Pin_19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 22.86 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -22.86 0) + (length 3.81) + (name "Pin_20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -25.4 0) + (length 3.81) + (name "Pin_21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -27.94 0) + (length 3.81) + (name "Pin_22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 20.32 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 17.78 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 15.24 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 12.7 0) + (length 3.81) + (name "Pin_6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 10.16 0) + (length 3.81) + (name "Pin_7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 7.62 0) + (length 3.81) + (name "Pin_8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_02x02_Odd_Even" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 1.27 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_02x02_Odd_Even" + (at 1.27 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, double row, 02x02, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_02x02_Odd_Even_1_1" + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 1.27) + (end 3.81 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start 3.81 -2.413) + (end 2.54 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 0.127) + (end 2.54 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -2.54 180) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C_Polarized" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C_Polarized" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "CP_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_Polarized_0_1" + (rectangle + (start -2.286 0.508) + (end 2.286 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 2.286) (xy -0.762 2.286) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.794) (xy -1.27 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.286 -0.508) + (end -2.286 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "C_Polarized_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 148.59 33.02) + (diameter 1.016) + (color 0 0 0 0) + (uuid "04d60995-4f82-4f17-8f82-2f27a0a779cc") + ) + (junction + (at 207.01 104.14) + (diameter 0) + (color 0 0 0 0) + (uuid "0d53b1e0-8c7d-46c0-932b-a7fcad464011") + ) + (junction + (at 35.56 147.32) + (diameter 1.016) + (color 0 0 0 0) + (uuid "16d5bf81-590a-4149-97e0-64f3b3ad6f52") + ) + (junction + (at 35.56 132.08) + (diameter 1.016) + (color 0 0 0 0) + (uuid "18cf1537-83e6-4374-a277-6e3e21479ab0") + ) + (junction + (at 148.59 119.38) + (diameter 1.016) + (color 0 0 0 0) + (uuid "1b5a32e4-0b8e-4f38-b679-71dc277c2087") + ) + (junction + (at 101.6 132.08) + (diameter 1.016) + (color 0 0 0 0) + (uuid "2151a218-87ec-4d43-b5fa-736242c52602") + ) + (junction + (at 35.56 71.12) + (diameter 1.016) + (color 0 0 0 0) + (uuid "2d0d333a-99a0-4575-9433-710c8cc7ac0b") + ) + (junction + (at 101.6 55.88) + (diameter 1.016) + (color 0 0 0 0) + (uuid "2d4d8c24-5b38-445b-8733-2a81ba21d33e") + ) + (junction + (at 100.33 175.26) + (diameter 1.016) + (color 0 0 0 0) + (uuid "2ed386d8-1a92-4875-a5f8-9de71531e06f") + ) + (junction + (at 195.58 54.61) + (diameter 1.016) + (color 0 0 0 0) + (uuid "3ae38773-1a78-4a86-ace8-e6c6bed34e80") + ) + (junction + (at 266.7 78.74) + (diameter 1.016) + (color 0 0 0 0) + (uuid "3c66e6e2-f12d-4b23-910e-e478d272dfd5") + ) + (junction + (at 148.59 142.24) + (diameter 1.016) + (color 0 0 0 0) + (uuid "414f80f7-b2d5-43c3-a018-819efe44fe30") + ) + (junction + (at 148.59 134.62) + (diameter 1.016) + (color 0 0 0 0) + (uuid "494d4ce3-60c4-4021-8bd1-ab41a12b14ed") + ) + (junction + (at 101.6 147.32) + (diameter 1.016) + (color 0 0 0 0) + (uuid "4c8704fa-310a-4c01-8dc1-2b7e2727fea0") + ) + (junction + (at 35.56 40.64) + (diameter 1.016) + (color 0 0 0 0) + (uuid "57543893-39bf-4d83-b4e0-8d020b4a6d48") + ) + (junction + (at 148.59 104.14) + (diameter 1.016) + (color 0 0 0 0) + (uuid "5a889284-4c9f-49be-8f02-e43e18550914") + ) + (junction + (at 101.6 40.64) + (diameter 1.016) + (color 0 0 0 0) + (uuid "5fe7a4eb-9f04-4df6-a1fa-36c071e280d7") + ) + (junction + (at 148.59 55.88) + (diameter 1.016) + (color 0 0 0 0) + (uuid "621c8eb9-ae87-439a-b350-badb5d559a5a") + ) + (junction + (at 35.56 55.88) + (diameter 1.016) + (color 0 0 0 0) + (uuid "629fdb7a-7978-43d0-987e-b84465775826") + ) + (junction + (at 101.6 101.6) + (diameter 1.016) + (color 0 0 0 0) + (uuid "64256223-cf3b-4a78-97d3-f1dca769968f") + ) + (junction + (at 196.85 147.32) + (diameter 1.016) + (color 0 0 0 0) + (uuid "6742a066-6a5f-4185-90ae-b7fe8c6eda52") + ) + (junction + (at 101.6 124.46) + (diameter 1.016) + (color 0 0 0 0) + (uuid "6aa022fb-09ce-49d9-86b1-c73b3ee817e2") + ) + (junction + (at 269.24 78.74) + (diameter 1.016) + (color 0 0 0 0) + (uuid "6b69fc79-c78f-4df1-9a05-c51d4173705f") + ) + (junction + (at 148.59 48.26) + (diameter 1.016) + (color 0 0 0 0) + (uuid "72cc7949-68f8-4ef8-adcb-a65c1d042672") + ) + (junction + (at 214.63 119.38) + (diameter 0) + (color 0 0 0 0) + (uuid "7b7a8d51-c055-4255-8bdb-1f4947e92e10") + ) + (junction + (at 35.56 78.74) + (diameter 1.016) + (color 0 0 0 0) + (uuid "7c6e532b-1afd-48d4-9389-2942dcbc7c3c") + ) + (junction + (at 101.6 116.84) + (diameter 1.016) + (color 0 0 0 0) + (uuid "7e498af5-a41b-4f8f-8a13-10c00a9160aa") + ) + (junction + (at 148.59 127) + (diameter 1.016) + (color 0 0 0 0) + (uuid "84febc35-87fd-4cad-8e04-2b66390cfc12") + ) + (junction + (at 35.56 48.26) + (diameter 1.016) + (color 0 0 0 0) + (uuid "9c5933cf-1535-4465-90dd-da9b75afcdcf") + ) + (junction + (at 266.7 151.13) + (diameter 1.016) + (color 0 0 0 0) + (uuid "9c8eae28-a7c3-4e6a-bd81-98cf70031070") + ) + (junction + (at 101.6 63.5) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a10b569c-d672-485d-9c05-2cb4795deeca") + ) + (junction + (at 259.08 78.74) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a419542a-0c78-421e-9ac7-81d3afba6186") + ) + (junction + (at 29.21 175.26) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a5060d2e-a950-4e40-9be0-ca0a20e44554") + ) + (junction + (at 207.01 121.92) + (diameter 0) + (color 0 0 0 0) + (uuid "a5f02bdf-d321-4ac0-be7a-bc23a529fbfb") + ) + (junction + (at 261.62 151.13) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a67dbe3b-ec7d-4ea5-b0e5-715c5263d8da") + ) + (junction + (at 101.6 48.26) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a6891c49-3648-41ce-811e-fccb4c4653af") + ) + (junction + (at 35.56 139.7) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a6c7f556-10bb-4a6d-b61b-a732ec6fa5cc") + ) + (junction + (at 101.6 139.7) + (diameter 1.016) + (color 0 0 0 0) + (uuid "a6dc1180-19c4-432b-af49-fc9179bb4519") + ) + (junction + (at 148.59 63.5) + (diameter 1.016) + (color 0 0 0 0) + (uuid "b2001159-b6cb-4000-85f5-34f6c410920f") + ) + (junction + (at 101.6 93.98) + (diameter 1.016) + (color 0 0 0 0) + (uuid "b21625e3-a75b-41d7-9f13-4c0e12ba16cb") + ) + (junction + (at 35.56 101.6) + (diameter 1.016) + (color 0 0 0 0) + (uuid "b4675fcd-90dd-499b-8feb-46b51a88378c") + ) + (junction + (at 261.62 78.74) + (diameter 1.016) + (color 0 0 0 0) + (uuid "bc1d5740-b0c7-4566-95b0-470ac47a1fb3") + ) + (junction + (at 259.08 151.13) + (diameter 1.016) + (color 0 0 0 0) + (uuid "c480dba7-51ff-4a4f-9251-e48b2784c64a") + ) + (junction + (at 195.58 86.36) + (diameter 1.016) + (color 0 0 0 0) + (uuid "c4f0fe25-b1c3-4cf5-8984-a4a28afb2607") + ) + (junction + (at 35.56 116.84) + (diameter 1.016) + (color 0 0 0 0) + (uuid "c8072c34-0f81-4552-9fbe-4bfe60c53e21") + ) + (junction + (at 35.56 86.36) + (diameter 1.016) + (color 0 0 0 0) + (uuid "d53baa32-ba88-4646-9db3-0e9b0f0da4f0") + ) + (junction + (at 264.16 151.13) + (diameter 1.016) + (color 0 0 0 0) + (uuid "d8370835-89ad-4b62-9f40-d0c10470788a") + ) + (junction + (at 101.6 71.12) + (diameter 1.016) + (color 0 0 0 0) + (uuid "db902262-2864-4997-aeff-8abaa132424a") + ) + (junction + (at 101.6 109.22) + (diameter 1.016) + (color 0 0 0 0) + (uuid "df93f76b-86da-45ae-87e2-4b691af12b00") + ) + (junction + (at 35.56 63.5) + (diameter 1.016) + (color 0 0 0 0) + (uuid "df9a1242-2d73-4343-b170-237bc9a8080f") + ) + (junction + (at 229.87 147.32) + (diameter 1.016) + (color 0 0 0 0) + (uuid "e3c3d042-f4c5-4fb1-a6b8-52aa1c14cc0e") + ) + (junction + (at 264.16 78.74) + (diameter 1.016) + (color 0 0 0 0) + (uuid "eb1b2aa2-a3cc-4a96-87ec-70fcae365f0f") + ) + (junction + (at 148.59 111.76) + (diameter 1.016) + (color 0 0 0 0) + (uuid "eb7e294c-b398-413b-8b78-85a66ed5f3ea") + ) + (junction + (at 87.63 175.26) + (diameter 0) + (color 0 0 0 0) + (uuid "ec8b1ce4-b634-48ec-9079-b1c9230fbfc5") + ) + (junction + (at 35.56 93.98) + (diameter 1.016) + (color 0 0 0 0) + (uuid "ef3dded2-639c-45d4-8076-84cfb5189592") + ) + (junction + (at 269.24 151.13) + (diameter 1.016) + (color 0 0 0 0) + (uuid "f2392fe0-54af-4e02-8793-9ba2471944b5") + ) + (junction + (at 148.59 40.64) + (diameter 1.016) + (color 0 0 0 0) + (uuid "f74eb612-4697-4cb4-afe4-9f94828b954d") + ) + (junction + (at 195.58 88.9) + (diameter 1.016) + (color 0 0 0 0) + (uuid "fa83dc3f-6e8a-4697-a192-7ec1b2a68c73") + ) + (junction + (at 148.59 71.12) + (diameter 1.016) + (color 0 0 0 0) + (uuid "fb191df4-267d-4797-80dd-be346b8eeb99") + ) + (junction + (at 35.56 124.46) + (diameter 1.016) + (color 0 0 0 0) + (uuid "fec6f717-d723-4676-89ef-8ea691e209c2") + ) + (junction + (at 35.56 109.22) + (diameter 1.016) + (color 0 0 0 0) + (uuid "ff2f00dc-dff2-4a19-af27-f5c793a8d261") + ) + (no_connect + (at 67.31 180.34) + (uuid "112128db-5910-4ab6-b2d1-fff0827fb81f") + ) + (wire + (pts + (xy 180.34 67.31) (xy 196.85 67.31) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "00b7c442-50be-46db-bbc6-c6545b754ccf") + ) + (wire + (pts + (xy 24.13 175.26) (xy 29.21 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "06d45e16-b0f3-49f8-a5f1-646c54f59153") + ) + (wire + (pts + (xy 99.06 38.1) (xy 115.57 38.1) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0a79db37-f1d9-40b1-a24d-8bdfb8f637e2") + ) + (wire + (pts + (xy 35.56 63.5) (xy 35.56 71.12) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0c9bbc06-f1c0-4359-8448-9c515b32a886") + ) + (wire + (pts + (xy 35.56 139.7) (xy 35.56 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0d095387-710d-4633-a6c3-04eab60b585a") + ) + (wire + (pts + (xy 196.85 52.07) (xy 195.58 52.07) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0e1489f3-ab0e-44a1-935a-7681a1b1e77e") + ) + (wire + (pts + (xy 67.31 177.8) (xy 74.93 177.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0f5e438c-dd2e-4d45-87a9-54141f563e8d") + ) + (wire + (pts + (xy 35.56 33.02) (xy 35.56 40.64) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0f62e92c-dce6-45dc-a560-b9db10f66ff3") + ) + (wire + (pts + (xy 35.56 86.36) (xy 35.56 93.98) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0ff398d7-e6e2-4972-a7a4-438407886f34") + ) + (wire + (pts + (xy 35.56 71.12) (xy 35.56 78.74) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "1527299a-08b3-47c3-929f-a75c83be365e") + ) + (wire + (pts + (xy 35.56 101.6) (xy 35.56 109.22) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "153169ce-9fac-4868-bc4e-e1381c5bb726") + ) + (wire + (pts + (xy 101.6 48.26) (xy 101.6 40.64) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "15a5a11b-0ea1-4f6e-b356-cc2d530615ed") + ) + (wire + (pts + (xy 99.06 30.48) (xy 105.41 30.48) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "188eabba-12a3-47b7-9be1-03f0c5a948eb") + ) + (wire + (pts + (xy 35.56 86.36) (xy 38.1 86.36) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "18dee026-9999-4f10-8c36-736131349406") + ) + (wire + (pts + (xy 35.56 109.22) (xy 35.56 116.84) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2276ec6c-cdcc-4369-86b4-8267d991001e") + ) + (wire + (pts + (xy 35.56 48.26) (xy 35.56 55.88) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "22ab392d-1989-4185-9178-8083812ea067") + ) + (wire + (pts + (xy 35.56 132.08) (xy 38.1 132.08) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "23345f3e-d08d-4834-b1dc-64de02569916") + ) + (wire + (pts + (xy 101.6 71.12) (xy 101.6 63.5) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "24a492d9-25a9-4fba-b51b-3effb576b351") + ) + (wire + (pts + (xy 196.85 147.32) (xy 208.28 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "24fd922c-d488-4d61-b6dc-9d3e359ccc82") + ) + (polyline + (pts + (xy 167.64 15.24) (xy 167.64 160.655) + ) + (stroke + (width 0) + (type dash) + ) + (uuid "27e3c71f-5a63-4710-8adf-b600b805ce02") + ) + (wire + (pts + (xy 31.75 38.1) (xy 38.1 38.1) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2938bf2d-2d32-4cb0-9d4d-563ea28ffffa") + ) + (wire + (pts + (xy 35.56 109.22) (xy 38.1 109.22) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "29987966-1d19-4068-93f6-a61cdfb40ffa") + ) + (wire + (pts + (xy 38.1 147.32) (xy 35.56 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "29cd9e70-9b68-44f7-96b2-fe993c246832") + ) + (wire + (pts + (xy 207.01 104.14) (xy 214.63 104.14) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2aca1bc4-0cd4-44f4-aa0e-aec7e797d1c5") + ) + (wire + (pts + (xy 99.06 101.6) (xy 101.6 101.6) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2ad4b4ba-3abd-4313-bed9-1edce936a95e") + ) + (wire + (pts + (xy 223.52 147.32) (xy 229.87 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2bbd6c26-4114-4518-8f4a-c6fdadc046b6") + ) + (wire + (pts + (xy 35.56 55.88) (xy 35.56 63.5) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2dc66f7e-d85d-4081-ae71-fd8851d6aeda") + ) + (wire + (pts + (xy 196.85 104.14) (xy 207.01 104.14) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2e1d63b8-5189-41bb-8b6a-c4ada546b2d5") + ) + (wire + (pts + (xy 207.01 114.3) (xy 207.01 121.92) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "2f5467a7-bd49-433c-92f2-60a842e66f7b") + ) + (wire + (pts + (xy 31.75 27.94) (xy 38.1 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2f75af73-81af-4c13-9b1c-587f6551682a") + ) + (wire + (pts + (xy 180.34 48.26) (xy 196.85 48.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "30c97e5d-79de-4078-91c5-bcd8c7c66af4") + ) + (wire + (pts + (xy 99.06 40.64) (xy 101.6 40.64) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "315d2b15-cfe6-4672-b3ad-24773f3df12c") + ) + (wire + (pts + (xy 21.59 73.66) (xy 38.1 73.66) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "35343f32-90ff-4059-a108-111fb444c3d2") + ) + (wire + (pts + (xy 21.59 66.04) (xy 38.1 66.04) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "39819ee9-e060-4c7f-8a3b-7013b7bfc27e") + ) + (wire + (pts + (xy 207.01 104.14) (xy 207.01 106.68) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3ab3cf2d-c04a-488b-ac10-19a593bcbcf1") + ) + (wire + (pts + (xy 101.6 124.46) (xy 101.6 132.08) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3bb9c3d4-9a6f-41ac-8d1e-92ed4fe334c0") + ) + (wire + (pts + (xy 40.64 177.8) (xy 40.64 185.42) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3d8a9383-b1d0-40a2-a82b-b9827a211b66") + ) + (wire + (pts + (xy 214.63 104.14) (xy 214.63 106.68) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "41524d81-a7f7-45af-a8c6-15609b68d1fd") + ) + (wire + (pts + (xy 180.34 74.93) (xy 196.85 74.93) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "415698e5-cc20-4e7c-9b66-cdd8c2546e70") + ) + (wire + (pts + (xy 41.91 180.34) (xy 50.8 180.34) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "41e046c9-a0b6-4bc2-94b8-5c38b48d090b") + ) + (wire + (pts + (xy 196.85 54.61) (xy 195.58 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "42ba7ef3-bc4f-4c1a-8d79-956672074cae") + ) + (wire + (pts + (xy 101.6 116.84) (xy 101.6 124.46) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "45484f82-420e-44d0-a58e-382bb939dac5") + ) + (wire + (pts + (xy 204.47 121.92) (xy 207.01 121.92) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "47484446-e64c-4a82-88af-15de92cf6ad4") + ) + (wire + (pts + (xy 21.59 76.2) (xy 38.1 76.2) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4b982f8b-ca29-4ebf-88fc-8a50b24e0802") + ) + (wire + (pts + (xy 101.6 147.32) (xy 101.6 152.4) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4ef07d45-f940-4cb6-bb96-2ddec13fd099") + ) + (wire + (pts + (xy 100.33 177.8) (xy 100.33 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "4faeed13-cd8a-4bdc-8d48-1ca1fe386979") + ) + (wire + (pts + (xy 38.1 43.18) (xy 31.75 43.18) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5099f397-6fe7-454f-899c-34e2b5f22ca7") + ) + (wire + (pts + (xy 229.87 147.32) (xy 240.03 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "51f5536d-48d2-4807-be44-93f427952b0e") + ) + (wire + (pts + (xy 31.75 30.48) (xy 38.1 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5243fe6a-ae55-40b5-8db1-ec9d4b04147b") + ) + (wire + (pts + (xy 99.06 132.08) (xy 101.6 132.08) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "524d7aa8-362f-459a-b2ae-4ca2a0b1612b") + ) + (wire + (pts + (xy 31.75 53.34) (xy 38.1 53.34) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "53fda1fb-12bd-4536-80e1-aab5c0e3fc58") + ) + (wire + (pts + (xy 82.55 177.8) (xy 82.55 185.42) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "56499431-ef85-47bb-ba33-c50a0b8578c8") + ) + (wire + (pts + (xy 208.28 153.67) (xy 208.28 154.94) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "56f0a67a-a93a-477a-9778-70fe2cfeeb5a") + ) + (wire + (pts + (xy 50.8 177.8) (xy 40.64 177.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "58287c1d-1377-4d1e-8df5-6031fe23f3a7") + ) + (wire + (pts + (xy 180.34 33.02) (xy 196.85 33.02) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5866b690-1f4e-45fd-859c-e1e2520154d0") + ) + (wire + (pts + (xy 35.56 63.5) (xy 38.1 63.5) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "58a87288-e2bf-4c88-9871-a753efc69e9d") + ) + (wire + (pts + (xy 180.34 40.64) (xy 196.85 40.64) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "58a9bd52-a42e-46b4-8b0f-288e0a2b5bfe") + ) + (wire + (pts + (xy 204.47 119.38) (xy 214.63 119.38) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5923aa13-1e0e-4f65-81de-030eca5cc6bc") + ) + (wire + (pts + (xy 99.06 48.26) (xy 101.6 48.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5a319d05-1a85-43fe-a179-ebcee7212a03") + ) + (wire + (pts + (xy 180.34 72.39) (xy 196.85 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "5cdb7416-8115-42e3-a14b-940e7e48428d") + ) + (wire + (pts + (xy 38.1 45.72) (xy 31.75 45.72) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "6474aa6c-825c-4f0f-9938-759b68df02a5") + ) + (wire + (pts + (xy 101.6 93.98) (xy 101.6 101.6) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "665081dc-8354-4d41-8855-bde8901aee4c") + ) + (wire + (pts + (xy 35.56 116.84) (xy 35.56 124.46) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "6ba19f6c-fa3a-4bf3-8c57-119de0f02b65") + ) + (wire + (pts + (xy 185.42 59.69) (xy 196.85 59.69) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "6e0e4248-792a-4d0b-bc19-cb759234c82c") + ) + (wire + (pts + (xy 35.56 40.64) (xy 38.1 40.64) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "6fd21292-6577-40e1-bbda-18906b5e9f6f") + ) + (polyline + (pts + (xy 122.555 86.995) (xy 167.64 86.995) + ) + (stroke + (width 0) + (type dash) + ) + (uuid "70186eba-dcad-4878-bf16-887f6eee49df") + ) + (wire + (pts + (xy 38.1 139.7) (xy 35.56 139.7) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7114de55-86d9-46c1-a412-07f5eb895435") + ) + (wire + (pts + (xy 180.34 38.1) (xy 196.85 38.1) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7124c9b9-e6f8-4970-af22-a43c2bae3491") + ) + (wire + (pts + (xy 67.31 175.26) (xy 87.63 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7430addf-35aa-4490-9118-5e973da41b9b") + ) + (wire + (pts + (xy 87.63 175.26) (xy 100.33 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "74bb5021-ddb7-45d6-9442-2de8113f58e5") + ) + (wire + (pts + (xy 29.21 175.26) (xy 50.8 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "753486dd-d89a-4269-9572-ae94c024f816") + ) + (wire + (pts + (xy 35.56 124.46) (xy 38.1 124.46) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "799d9f4a-bb6b-44d5-9f4c-3a30db59943d") + ) + (wire + (pts + (xy 207.01 121.92) (xy 223.52 121.92) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7c1458dd-e4e2-4be3-b6c7-0fdeb211bb35") + ) + (wire + (pts + (xy 191.77 147.32) (xy 196.85 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7ce4aab5-8271-4432-a4b1-bff168293b45") + ) + (wire + (pts + (xy 99.06 55.88) (xy 101.6 55.88) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "80ace02d-cb21-4f08-bc25-572a9e56ff99") + ) + (wire + (pts + (xy 99.06 116.84) (xy 101.6 116.84) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8313e187-c805-4927-8002-313a51839243") + ) + (wire + (pts + (xy 195.58 88.9) (xy 195.58 91.44) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "841ec6a8-4d30-4aa6-addd-541abd1a1f44") + ) + (wire + (pts + (xy 99.06 93.98) (xy 101.6 93.98) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "86143bb0-7899-4df8-b1df-baa3c0ac7889") + ) + (wire + (pts + (xy 185.42 119.38) (xy 191.77 119.38) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "87a0ffb1-5477-4b20-a3ac-fef5af129a33") + ) + (wire + (pts + (xy 31.75 35.56) (xy 38.1 35.56) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "89bd1fdd-6a91-474e-8495-7a2ba7eb6260") + ) + (wire + (pts + (xy 101.6 139.7) (xy 101.6 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "89fb4a63-a18d-4c7e-be12-f061ef4bf0c0") + ) + (wire + (pts + (xy 101.6 55.88) (xy 101.6 48.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8afe1dbf-1187-4362-8af8-a90ca839a6b3") + ) + (wire + (pts + (xy 31.75 25.4) (xy 38.1 25.4) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8b022692-69b7-4bd6-bf38-57edecf356fa") + ) + (wire + (pts + (xy 180.34 80.01) (xy 196.85 80.01) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "8c4772bb-de72-4bbc-8951-f76ac882c05f") + ) + (wire + (pts + (xy 31.75 50.8) (xy 38.1 50.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "929c74c0-78bf-4efe-a778-fa328e951865") + ) + (wire + (pts + (xy 151.13 78.74) (xy 134.62 78.74) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "92d938cc-f8b1-437d-8914-3d97a0938f67") + ) + (wire + (pts + (xy 101.6 109.22) (xy 101.6 116.84) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "97cc05bf-4ed5-449c-b0c8-131e5126a7ac") + ) + (wire + (pts + (xy 222.25 88.9) (xy 223.52 88.9) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9c95afca-9952-4369-8f03-1060c63fc28c") + ) + (wire + (pts + (xy 196.85 86.36) (xy 195.58 86.36) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9dd33611-94e8-47ed-ba8c-ac5e59b77aad") + ) + (wire + (pts + (xy 35.56 93.98) (xy 38.1 93.98) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9e427954-2486-4c91-89b5-6af73a073442") + ) + (wire + (pts + (xy 35.56 116.84) (xy 38.1 116.84) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9f95f1fc-aa31-4ce6-996a-4b385731d8eb") + ) + (wire + (pts + (xy 99.06 63.5) (xy 101.6 63.5) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a09cb1c4-cc63-49c7-a35f-4b80c3ba2217") + ) + (wire + (pts + (xy 38.1 33.02) (xy 35.56 33.02) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a12b751e-ae7a-468c-af3d-31ed4d501b01") + ) + (polyline + (pts + (xy 122.555 15.24) (xy 168.148 15.24) + ) + (stroke + (width 0) + (type dash) + ) + (uuid "a2c6e121-f827-485b-b1d2-dc37232944d3") + ) + (wire + (pts + (xy 100.33 175.26) (xy 110.49 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a9d564c9-1413-4421-bda7-fdc644c130d9") + ) + (wire + (pts + (xy 35.56 71.12) (xy 38.1 71.12) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "aa288a22-ea1d-474d-8dae-efe971580843") + ) + (wire + (pts + (xy 35.56 124.46) (xy 35.56 132.08) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ab0ea55a-63b3-4ece-836d-2844713a821f") + ) + (wire + (pts + (xy 180.34 30.48) (xy 196.85 30.48) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "acdc0b74-4386-4ce6-b04c-a01ad646967a") + ) + (wire + (pts + (xy 87.63 175.26) (xy 87.63 177.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ae28bf9d-1d6d-44e2-a328-2ea0f20e7e74") + ) + (wire + (pts + (xy 214.63 119.38) (xy 223.52 119.38) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ae3157ef-354d-409f-adef-ead0cbf5e619") + ) + (wire + (pts + (xy 35.56 101.6) (xy 38.1 101.6) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b121f1ff-8472-460b-ab2d-5110ddd1ca28") + ) + (wire + (pts + (xy 195.58 86.36) (xy 195.58 88.9) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b15be870-0d2a-404f-a1fa-2589ddeab29f") + ) + (wire + (pts + (xy 20.32 60.96) (xy 38.1 60.96) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b4dfe8dd-60ef-4ed2-ba8b-968884e4637e") + ) + (wire + (pts + (xy 180.34 45.72) (xy 196.85 45.72) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b569c73c-deb1-474f-a86f-42f84082278d") + ) + (wire + (pts + (xy 99.06 124.46) (xy 101.6 124.46) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b5cea0b5-192f-476b-a3c8-0c26e2231699") + ) + (wire + (pts + (xy 35.56 55.88) (xy 38.1 55.88) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b606e532-e4c7-444d-b9ff-879f52cfde92") + ) + (wire + (pts + (xy 99.06 96.52) (xy 115.57 96.52) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b7e94efd-3614-4070-b5e4-1fa301d1f280") + ) + (wire + (pts + (xy 115.57 99.06) (xy 99.06 99.06) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "b83b087e-7ec9-44e7-a1c9-81d5d26bbf79") + ) + (wire + (pts + (xy 99.06 109.22) (xy 101.6 109.22) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "bc01f3e7-a131-4f66-8abc-cc13e855d5e5") + ) + (wire + (pts + (xy 214.63 114.3) (xy 214.63 119.38) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "bcacf97a-a49b-480c-96ed-a857f56faeb2") + ) + (wire + (pts + (xy 35.56 132.08) (xy 35.56 139.7) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c220da05-2a98-47be-9327-0c73c5263c41") + ) + (wire + (pts + (xy 99.06 27.94) (xy 105.41 27.94) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c38f28b6-5bd4-4cf9-b273-1e7b230f6b42") + ) + (wire + (pts + (xy 20.32 58.42) (xy 38.1 58.42) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c3dfd450-5f46-40fe-9ca4-04881cf861d9") + ) + (wire + (pts + (xy 101.6 40.64) (xy 101.6 33.02) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c482f4f0-b441-4301-a9f1-c7f9e511d699") + ) + (wire + (pts + (xy 196.85 88.9) (xy 195.58 88.9) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c581d9e8-d7b6-4b79-9664-312cfd64ff85") + ) + (wire + (pts + (xy 185.42 121.92) (xy 191.77 121.92) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c62adb8b-b306-48da-b0ae-f6a287e54f62") + ) + (wire + (pts + (xy 195.58 52.07) (xy 195.58 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c69bb1ab-dd6a-458e-b772-3546e025f058") + ) + (wire + (pts + (xy 101.6 63.5) (xy 101.6 55.88) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "c8b93f12-bc5c-4ce5-b954-377d903895f1") + ) + (wire + (pts + (xy 99.06 104.14) (xy 115.57 104.14) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cd2580a0-9e4c-4895-a13c-3b2ee33bafc4") + ) + (wire + (pts + (xy 99.06 106.68) (xy 115.57 106.68) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d337c492-7429-4618-b378-df29f72737e3") + ) + (wire + (pts + (xy 35.56 78.74) (xy 38.1 78.74) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d372e2ac-d81e-48b7-8c55-9bbe58eeffc3") + ) + (wire + (pts + (xy 101.6 132.08) (xy 101.6 139.7) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d554632b-6dd0-47f8-b59b-3ce25177ca3e") + ) + (wire + (pts + (xy 35.56 48.26) (xy 38.1 48.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d5a7688c-7438-4b6d-999f-4f2a3cb18fd6") + ) + (wire + (pts + (xy 99.06 35.56) (xy 105.41 35.56) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d5c86a84-6c8b-48b5-b583-2fe7052421ab") + ) + (wire + (pts + (xy 101.6 71.12) (xy 101.6 93.98) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d7df1f01-3f56-437b-a452-e88ad90a9805") + ) + (wire + (pts + (xy 35.56 93.98) (xy 35.56 101.6) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "db532ed2-914c-41b4-b389-de2bf235d0a7") + ) + (wire + (pts + (xy 99.06 71.12) (xy 101.6 71.12) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "dd3da890-32ef-4a5a-aea4-e5d2141f1ff1") + ) + (polyline + (pts + (xy 122.555 160.655) (xy 122.555 15.24) + ) + (stroke + (width 0) + (type dash) + ) + (uuid "de588ed9-a530-46f0-aa03-e0307ff72286") + ) + (wire + (pts + (xy 21.59 68.58) (xy 38.1 68.58) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "de8a7314-073d-4589-9064-b673c53c5f19") + ) + (wire + (pts + (xy 99.06 114.3) (xy 115.57 114.3) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e002a979-85bc-451a-a77b-29ce2a8f19f9") + ) + (wire + (pts + (xy 29.21 176.53) (xy 29.21 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e09e2a54-8c3e-4fe2-ab1d-8e3ac3b07291") + ) + (wire + (pts + (xy 186.69 25.4) (xy 196.85 25.4) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e0d956de-f476-41ee-86cb-0d9b014cc0ea") + ) + (wire + (pts + (xy 101.6 33.02) (xy 99.06 33.02) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e1fe6230-75c5-4750-aaea-24a9b80589d8") + ) + (wire + (pts + (xy 101.6 101.6) (xy 101.6 109.22) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e6e468d8-2bb7-49d5-a4d0-fde0f6bbe8c6") + ) + (wire + (pts + (xy 35.56 78.74) (xy 35.56 86.36) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e9a9fba3-7cfa-45ca-926c-a5a8ecd7e3a4") + ) + (wire + (pts + (xy 35.56 147.32) (xy 35.56 152.4) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ea7c53f9-3aa8-4198-9879-de95a5257915") + ) + (wire + (pts + (xy 99.06 147.32) (xy 101.6 147.32) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "ef3a2f4c-5879-4e98-ad30-6b8614410fba") + ) + (wire + (pts + (xy 110.49 175.26) (xy 110.49 177.8) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "eff05f70-37d1-45d3-aace-cf9840793742") + ) + (wire + (pts + (xy 35.56 40.64) (xy 35.56 48.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f030cfe8-f922-4a12-a58d-2ff6e60a9bb9") + ) + (wire + (pts + (xy 99.06 139.7) (xy 101.6 139.7) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f240e733-157e-4a15-812f-78f42d8a8322") + ) + (wire + (pts + (xy 180.34 64.77) (xy 196.85 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f5984e6c-7e70-4611-8932-119be93cb64a") + ) + (wire + (pts + (xy 223.52 88.9) (xy 223.52 91.44) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f7354bad-2c4f-4ab9-91bb-26ecdb22136f") + ) + (polyline + (pts + (xy 167.64 160.655) (xy 122.555 160.655) + ) + (stroke + (width 0) + (type dash) + ) + (uuid "f8e92727-5789-4ef6-9dc3-be888ad72e45") + ) + (wire + (pts + (xy 180.34 82.55) (xy 196.85 82.55) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f97af8d4-5ef6-4651-a448-6df50457edd1") + ) + (wire + (pts + (xy 195.58 54.61) (xy 195.58 86.36) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f98cb9c4-0bbb-4863-917f-6c91bc05336c") + ) + (wire + (pts + (xy 99.06 111.76) (xy 115.57 111.76) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "fd34aa56-ded2-4e97-965a-a39457716f0c") + ) + (wire + (pts + (xy 105.41 25.4) (xy 99.06 25.4) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "fe1ad3bd-92cc-4e1c-8cc9-a77278095945") + ) + (text "USB 3 Pairs P/N swapped to help routing" + (exclude_from_sim no) + (at 178.816 16.51 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "16b37671-e7db-4148-92fb-275bb14c3b4c") + ) + (text "Jumpers to be fitted if DPHY1 is used\n" + (exclude_from_sim no) + (at 222.25 128.016 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "19a5aacd-255a-4bf3-89c1-efd2ab61016c") + ) + (text "Current Limit switch" + (exclude_from_sim no) + (at 68.58 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "31792646-c7be-4527-8298-f8a25794399a") + ) + (text "DSI/CSI Connectors" + (exclude_from_sim no) + (at 130.175 19.05 0) + (effects + (font + (size 2.0066 2.0066) + ) + (justify left bottom) + ) + (uuid "5fba7ff8-02f1-4ac0-93c4-5bd7becbcf63") + ) + (text "Stacked USB connectors" + (exclude_from_sim no) + (at 220.98 19.685 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "a2e2c994-919f-481f-891c-d52553f82aea") + ) + (text "Current Limit switch" + (exclude_from_sim no) + (at 68.58 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c7aa973f-9a43-402a-907c-ceac197a1829") + ) + (label "USB3-0-TX_N" + (at 180.34 45.72 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "07112a43-34f7-4ab5-8e3e-fe79dfb1cb11") + ) + (label "USB3-1-D_N" + (at 102.87 106.68 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1020b588-7eb0-4b70-bbff-c77a867c3142") + ) + (label "USB3-1-D_N" + (at 180.34 67.31 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "122e59f2-0cdc-4dd5-992d-d26505d00cb4") + ) + (label "VBUS_EN" + (at 102.87 38.1 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1325c72f-3322-4ffd-9688-17837b3803de") + ) + (label "USB3-0-RX_P" + (at 180.34 40.64 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2875c697-2ed6-4212-963f-3abf87c44f08") + ) + (label "USB3-0-D_N" + (at 21.59 68.58 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2cb05d43-df82-498c-aae1-4b1a0a350f82") + ) + (label "ID_SC" + (at 191.135 119.38 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "2f4c659c-2ccb-4fb1-808e-7868af588a89") + ) + (label "USB3-0-RX_N" + (at 180.34 38.1 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3415b670-40ea-4a0d-9ef8-b654073de724") + ) + (label "USB3-0-D_P" + (at 180.34 30.48 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "376fd4d7-f5cc-44d1-9465-68055f9880ad") + ) + (label "ID_SD" + (at 191.135 121.92 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "37f8ba3f-cca4-4b16-b699-07a704844fc9") + ) + (label "USB3-0-TX_N" + (at 21.59 73.66 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3dbc1b14-20e2-4dcb-8347-d33c13d3f0e0") + ) + (label "VBUS_EN" + (at 41.91 180.34 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3e136526-f2a8-421a-83e0-38b2134b1606") + ) + (label "USB3-1-TX_P" + (at 102.87 114.3 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "3e147ce1-21a6-4e77-a3db-fd00d575cd22") + ) + (label "+5v" + (at 24.13 175.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "438bfc29-c054-4e2a-8dd2-0fd0b034d37b") + ) + (label "USB3-1-RX_P" + (at 102.87 99.06 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4648968b-aa58-4f57-8f45-54b088364670") + ) + (label "USB3-0-TX_P" + (at 21.59 76.2 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4b534cd1-c414-4029-9164-e46766faf60e") + ) + (label "USB3-0-RX_N" + (at 20.32 58.42 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5160b3d5-0622-412f-84ed-9900be82a5a6") + ) + (label "USB3-1-TX_N" + (at 102.87 111.76 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "5bb32dcb-8a97-4374-8a16-bc17822d4db3") + ) + (label "USB3-1-RX_P" + (at 180.34 74.93 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7752448e-c181-4047-9b9b-49d8bb6e0247") + ) + (label "USB3-1-TX_N" + (at 180.34 80.01 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "867f004f-3e41-4e14-8e43-90a63a9068ed") + ) + (label "VBUS" + (at 185.42 59.69 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "99e34a2e-208d-4291-b44e-c2d7de7b1662") + ) + (label "USB3-1-RX_N" + (at 180.34 72.39 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a7559f01-dde1-4062-bd39-8a6af136abd9") + ) + (label "USB3-1-RX_N" + (at 102.87 96.52 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a7cad282-51c3-4f24-be5e-311c2c5e959b") + ) + (label "VBUS" + (at 87.63 175.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a949f584-8291-47ef-9064-d55ffbb28ca1") + ) + (label "USB3-0-D_P" + (at 21.59 66.04 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "abe3c03e-744a-4406-8e50-6a10745f0c43") + ) + (label "VBUS" + (at 186.69 25.4 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "af79e19d-7451-464e-b5fa-ad3a1f9ef7aa") + ) + (label "USB3-0-RX_P" + (at 20.32 60.96 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cfcae4a3-5d05-48fe-9a5f-9dcd4da4bd65") + ) + (label "USB3-1-D_P" + (at 180.34 64.77 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "dea1d9fb-c6c4-4113-8f01-510c0ae3ded2") + ) + (label "USB3-0-D_N" + (at 180.34 33.02 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "e0abef92-1694-453a-9f88-d8c959fb716a") + ) + (label "GPIO_VREF" + (at 197.485 104.14 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ebadfd51-5a1d-4821-b341-8a1acb4abb01") + ) + (label "USB3-0-TX_P" + (at 180.34 48.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fc81388c-259a-4bc3-bc7e-9e43163c4bc0") + ) + (label "USB3-1-D_P" + (at 102.87 104.14 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fd146ca2-8fb8-4c71-9277-84f69bc5d3fc") + ) + (label "USB3-1-TX_P" + (at 180.34 82.55 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fdb2abdd-36ac-4381-9a4c-0e0e5950f043") + ) + (hierarchical_label "USBOTG_ID" + (shape input) + (at 105.41 25.4 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "02b1295e-cf95-47ff-9c57-f8ada28f2e94") + ) + (hierarchical_label "PCIE_PWR_EN" + (shape output) + (at 31.75 30.48 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "1dacd626-a559-4363-9eb3-77dde5d16024") + ) + (hierarchical_label "PCIE_CLK_P" + (shape output) + (at 31.75 35.56 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "25247d0c-5910-484b-9651-5750d422a450") + ) + (hierarchical_label "PCIE_RX_N" + (shape input) + (at 31.75 45.72 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "4aee84d1-0859-48ac-a053-5a981ee1b24a") + ) + (hierarchical_label "+5v" + (shape input) + (at 191.77 147.32 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "4d55ddc7-73be-49f7-98ea-a0ba474cbdb0") + ) + (hierarchical_label "PCIE_nCLKREQ" + (shape input) + (at 31.75 25.4 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "59142adb-6887-41fc-851e-9a7f51511d60") + ) + (hierarchical_label "ID_SC" + (shape input) + (at 185.42 119.38 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "5b04e20f-8575-4362-b040-2e2133d670c8") + ) + (hierarchical_label "PCIE_RX_P" + (shape input) + (at 31.75 43.18 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "5fc4054a-b929-433e-a947-747fb7ed003d") + ) + (hierarchical_label "GPIO_VREF" + (shape input) + (at 196.85 104.14 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "617edc57-1dbf-4296-b365-6d76f68a1c0f") + ) + (hierarchical_label "+3.3v" + (shape input) + (at 134.62 78.74 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "624c6565-c4fd-4d29-87af-f77dd1ba0898") + ) + (hierarchical_label "USB2_P" + (shape bidirectional) + (at 105.41 30.48 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "62a1b97d-067d-487c-835b-0166330d25fe") + ) + (hierarchical_label "USB2_N" + (shape bidirectional) + (at 105.41 27.94 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "69f75991-c8c0-49a9-aed8-daa6ca9a5d73") + ) + (hierarchical_label "PCIE_TX_P" + (shape output) + (at 31.75 50.8 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "811f5389-c208-4640-ab1a-b454491bb330") + ) + (hierarchical_label "ID_SD" + (shape input) + (at 185.42 121.92 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "8e715b73-353f-4cfc-aa33-1eac54b89b6c") + ) + (hierarchical_label "PCIE_nWAKE" + (shape input) + (at 31.75 27.94 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "a8b35311-4f8b-4438-aa47-dca2f66d55c9") + ) + (hierarchical_label "PCIE_CLK_N" + (shape output) + (at 31.75 38.1 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "b6f041a4-3ea0-418b-94a2-50c938beafa2") + ) + (hierarchical_label "PCIE_nRST" + (shape output) + (at 105.41 35.56 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "bb673c7a-d2b0-45b0-bfe2-0b113c092a77") + ) + (hierarchical_label "PCIE_TX_N" + (shape output) + (at 31.75 53.34 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d4876469-b949-49ce-b8fe-43cb458692a4") + ) + (symbol + (lib_id "power:GND") + (at 101.6 152.4 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d18172e") + (property "Reference" "#PWR0130" + (at 101.6 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 101.727 156.7942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 101.6 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 101.6 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 101.6 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1aaf34a3-282e-4633-82fa-9d6cdf32efbb") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR0130") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 35.56 152.4 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d1874b1") + (property "Reference" "#PWR0131" + (at 35.56 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 35.687 156.7942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 35.56 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 35.56 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 35.56 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "47a2dd37-ad02-4281-9a66-8ff7ab400570") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR0131") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 207.01 110.49 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d3423d2") + (property "Reference" "R6" + (at 202.438 108.585 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2.2K 1%" + (at 197.358 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 205.232 110.49 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 207.01 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 207.01 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 207.01 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "" + (at 207.01 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "" + (at 207.01 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "" + (at 207.01 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 2.2K M1005 1% 63mW" + (at 207.01 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "" + (at 207.01 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "eca8c1f1-6751-4304-8a65-b05952048507") + ) + (pin "2" + (uuid "35506831-8c22-45ab-9b57-69eb0f9ef003") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "R6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 214.63 110.49 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d343651") + (property "Reference" "R7" + (at 216.408 108.585 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2.2K 1%" + (at 216.408 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 212.852 110.49 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 214.63 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 214.63 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 214.63 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "" + (at 214.63 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "" + (at 214.63 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "" + (at 214.63 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 2.2K M1005 1% 63mW" + (at 214.63 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "" + (at 214.63 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "56dc9d1a-d125-4218-be7e-afbadad9f13c") + ) + (pin "2" + (uuid "ea020aa6-c820-47b1-bdf7-82790dcca121") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "R7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 229.87 151.13 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005da83896") + (property "Reference" "C13" + (at 232.791 149.9616 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 232.791 152.273 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" + (at 230.8352 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" + (at 229.87 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 229.87 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 229.87 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2611911" + (at 229.87 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RM EMK105 B7104KV-F" + (at 229.87 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "TAIYO YUDEN EUROPE GMBH" + (at 229.87 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" + (at 229.87 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "110091611" + (at 229.87 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fb4e7351-d265-4999-adf6-bc7596c21cf3") + ) + (pin "2" + (uuid "119c633c-175b-4b38-bbc1-1a076032c16e") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "C13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 196.85 151.13 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005daa0732") + (property "Reference" "C12" + (at 199.771 149.9616 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 199.771 152.273 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" + (at 197.8152 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" + (at 196.85 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 196.85 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 196.85 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2611911" + (at 196.85 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RM EMK105 B7104KV-F" + (at 196.85 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "TAIYO YUDEN EUROPE GMBH" + (at 196.85 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" + (at 196.85 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "110091611" + (at 196.85 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7308e13a-4809-4e8e-af65-9905819aa376") + ) + (pin "2" + (uuid "91c69423-de51-44fe-bc70-fec455b50634") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "C12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:RT9742SNGV") + (at 213.36 151.13 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005dad5ba8") + (property "Reference" "U12" + (at 215.9 140.589 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RT9742SNGV" + (at 215.9 142.9004 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:TSOT-23_HandSoldering" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2575555" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RT9742SNGV" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "RichTek" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Power Switch/Driver 1:1 N-Channel 500mA SOT-23-3" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "USWI00155" + (at 213.36 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "42b7a68a-3837-4773-af68-a35059da48c3") + ) + (pin "2" + (uuid "dfa2c928-7d9a-4cd3-90db-112716296421") + ) + (pin "3" + (uuid "b7340f23-0eaa-48ae-aea8-b5b53a0ae99a") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "U12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 229.87 154.94 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005db8426d") + (property "Reference" "#PWR0136" + (at 229.87 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 229.997 159.3342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 229.87 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 229.87 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 229.87 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7cc510d9-2339-42a7-bb31-eff1142f0636") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR0136") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 196.85 154.94 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005db9fe14") + (property "Reference" "#PWR0137" + (at 196.85 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 196.977 159.3342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 196.85 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 196.85 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 196.85 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "946a171e-cd55-473d-bab9-8d2c7c34161c") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR0137") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 208.28 154.94 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005dbbbebc") + (property "Reference" "#PWR0138" + (at 208.28 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 208.407 159.3342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 208.28 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 208.28 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 208.28 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7be13a36-eb8e-440f-aaac-2fd6665d9f61") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR0138") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:ComputeModule5-CM5") + (at -71.12 86.36 0) + (unit 2) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e471fb9") + (property "Reference" "Module1" + (at 68.58 14.097 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ComputeModule5-CM5" + (at 68.58 16.4084 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "CM5IO:Raspberry-Pi-5-Compute-Module" + (at 71.12 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 71.12 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RaspberryPi Compute module 5" + (at -71.12 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Amphenol" + (at 68.58 21.59 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field5" "2x 10164227-1001A1RLF" + (at 68.58 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field6" "2x 10164227-1001A1RLF" + (at -71.12 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Hirose" + (at -71.12 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 100 Position Connector Receptacle, Center Strip Contacts Surface Mount Gold" + (at -71.12 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "572b3416-10dc-424b-a692-7c4d190a122a") + ) + (pin "10" + (uuid "16cb3d00-1efe-4adf-b079-5aeae0cbdf76") + ) + (pin "100" + (uuid "8b9f5b38-e948-4b14-a03c-bda09385ac53") + ) + (pin "11" + (uuid "01ffbfdb-09bb-41b8-8cff-4a6dc54a32df") + ) + (pin "12" + (uuid "b0211353-9c1f-4fe5-b812-bff7ee0d04df") + ) + (pin "13" + (uuid "2ca83e86-5727-45b2-a22e-b9e3a7a42b8b") + ) + (pin "14" + (uuid "f2dff45e-6124-4f53-8601-35754529714b") + ) + (pin "15" + (uuid "1653988e-4af3-4feb-86de-82f3c0c6687e") + ) + (pin "16" + (uuid "90e23f8d-4893-48de-aca9-fa09e49323c4") + ) + (pin "17" + (uuid "6f8054d4-2934-499c-bda4-8ec68f1d2c9d") + ) + (pin "18" + (uuid "86961c66-8441-4d53-a0d5-72fa94a01f4a") + ) + (pin "19" + (uuid "390f8c51-eaaa-456a-8824-a41f86856d8a") + ) + (pin "2" + (uuid "7f165692-929e-4a8b-9f3a-918c3b4b51a9") + ) + (pin "20" + (uuid "ba388307-07be-435f-9bc9-34c6cc828fca") + ) + (pin "21" + (uuid "8ff03bdb-dcd5-4ba7-8003-dee1dff5fec1") + ) + (pin "22" + (uuid "b08b097e-b028-46d2-a8df-9a27c0408910") + ) + (pin "23" + (uuid "2e734587-ef95-4207-9eec-a52977f89919") + ) + (pin "24" + (uuid "a4bc01ae-f44c-4df2-83a7-4c594790b6c8") + ) + (pin "25" + (uuid "a7c8a48d-8907-4625-b68f-642683572bb9") + ) + (pin "26" + (uuid "927ad928-20e5-4411-b05e-c1367b74ae0e") + ) + (pin "27" + (uuid "e9e40a8a-eb1d-435d-84b3-8b2b5c58bb4b") + ) + (pin "28" + (uuid "ffa2cc3a-c965-46c0-b7e0-4deb5e97b83c") + ) + (pin "29" + (uuid "7a6820c7-6757-47c2-8a7e-8ab9f1aa9ef4") + ) + (pin "3" + (uuid "8a53184e-e60e-4015-bf3b-527729488da4") + ) + (pin "30" + (uuid "38cf056e-f877-4da2-90a4-82c46f930335") + ) + (pin "31" + (uuid "f7447608-d0b9-472d-82d9-9ded708c1994") + ) + (pin "32" + (uuid "a6c007ed-6b74-446a-b634-07a9136b1d6d") + ) + (pin "33" + (uuid "09335ac1-1045-4e38-967a-0d8c3d04bee8") + ) + (pin "34" + (uuid "11537d71-357f-4c99-9694-f9265473aa8c") + ) + (pin "35" + (uuid "4911c60c-b1f9-42ec-b56b-f646f637196b") + ) + (pin "36" + (uuid "bd7b9b84-a521-46b8-a316-8c983f2bd658") + ) + (pin "37" + (uuid "ef174540-a358-417b-8eae-88ae3814e168") + ) + (pin "38" + (uuid "42963194-a343-4cb5-99ef-b6d761012529") + ) + (pin "39" + (uuid "7f7f3964-07a0-4f2c-89eb-15ae8cd2dfad") + ) + (pin "4" + (uuid "c0545133-0206-49aa-a33b-08f96c8bf40d") + ) + (pin "40" + (uuid "22bf9612-eedd-48f1-96ba-354f46245b28") + ) + (pin "41" + (uuid "c91d9b05-6c78-421b-b494-3347d6ee253b") + ) + (pin "42" + (uuid "a451704b-03b5-4c25-bdda-5efbda0ae5ee") + ) + (pin "43" + (uuid "f7505dc4-bed7-4d77-ab9b-74d6a15195e8") + ) + (pin "44" + (uuid "94582087-7fdd-46db-a291-b2d7c8174a74") + ) + (pin "45" + (uuid "ad832267-252b-4ab5-b2de-08062adc5e06") + ) + (pin "46" + (uuid "fd381254-755e-4522-a610-a5c444e3a9ab") + ) + (pin "47" + (uuid "0a56bbe0-4f07-4a8e-b813-30cb92c316d9") + ) + (pin "48" + (uuid "ca475b36-41c0-4bda-bbb8-efdb411cb7d5") + ) + (pin "49" + (uuid "274bdd5a-e6fc-44f8-8fda-7e4c5ed60733") + ) + (pin "5" + (uuid "52ccaffc-61f7-43cb-8ef2-6f2a6592c48f") + ) + (pin "50" + (uuid "a0a9d00f-c7ab-4df4-b065-03c2d953c7f4") + ) + (pin "51" + (uuid "fb3fec69-27ef-41c2-9aee-15c4b566138e") + ) + (pin "52" + (uuid "48c60631-e54d-4765-8a46-269200d1607b") + ) + (pin "53" + (uuid "7e7a91e4-2389-4ad0-afd4-3ec5236d9ddc") + ) + (pin "54" + (uuid "081cc7e3-35b5-4c9b-9143-4700af4d7696") + ) + (pin "55" + (uuid "cbe867ee-ab71-4412-b037-afc74f9487f7") + ) + (pin "56" + (uuid "02f34eb0-1453-455e-a4d5-726e3d6e5f66") + ) + (pin "57" + (uuid "ed542461-2c95-44fc-b835-e9936c6d2cc9") + ) + (pin "58" + (uuid "e26f76ec-3f8e-46be-a0b8-30d3d0ee6d4b") + ) + (pin "59" + (uuid "012bb294-e8b0-4381-b8fb-0c9493823b75") + ) + (pin "6" + (uuid "3ec62c9f-96c3-4ffa-8668-9a6b74353472") + ) + (pin "60" + (uuid "44c6fd92-54e4-4222-a5cd-db544c0e50c6") + ) + (pin "61" + (uuid "6446860c-6d05-4d4b-b366-2f58c0e04dd7") + ) + (pin "62" + (uuid "e7c8b292-5244-4d0b-b384-ee94ef5b48f2") + ) + (pin "63" + (uuid "c284d711-1ea1-4005-a020-2a533979dacb") + ) + (pin "64" + (uuid "6c377de6-58fc-42ff-b80b-0db8c18a6e8a") + ) + (pin "65" + (uuid "5a56997c-633c-495a-9a97-96edc86960c4") + ) + (pin "66" + (uuid "21426c63-3988-4b23-85f7-46098354a3e0") + ) + (pin "67" + (uuid "40f4f3b0-5b48-4ecf-a84c-b48c77d3ade2") + ) + (pin "68" + (uuid "53603051-7634-4ffe-ae0f-48bd2dd2c22c") + ) + (pin "69" + (uuid "aaae9628-c009-4eee-aade-a214a63ffbf7") + ) + (pin "7" + (uuid "e7769a9d-1b07-4e16-8417-b5bc852c9851") + ) + (pin "70" + (uuid "f4486c30-1724-4d5c-9129-7401404c7879") + ) + (pin "71" + (uuid "e7560c02-92dd-4740-a821-636860076e22") + ) + (pin "72" + (uuid "f7c78e15-7ff3-4ee2-be31-7443d2ae4e8b") + ) + (pin "73" + (uuid "de66b9e3-cfef-495e-8b51-f7d9c8034360") + ) + (pin "74" + (uuid "04251284-1c95-449f-863d-8f29d509beec") + ) + (pin "75" + (uuid "1f06e8f5-6168-4578-bd7d-c58e88237b42") + ) + (pin "76" + (uuid "a0d0729d-02f5-47fe-9a93-ff974969286f") + ) + (pin "77" + (uuid "dc561236-d1e4-4535-abc0-ce7eda9d3524") + ) + (pin "78" + (uuid "d6c0827a-9324-4e92-83d3-5bbbc5e46bec") + ) + (pin "79" + (uuid "6c08a0a6-ff55-433c-81aa-11d07906770a") + ) + (pin "8" + (uuid "234da0d9-6b11-4394-aad8-fb097f95e306") + ) + (pin "80" + (uuid "80edfbb5-5314-4f70-8531-a36810730857") + ) + (pin "81" + (uuid "6ef0539e-25da-4b41-b7c7-28ab1f62229b") + ) + (pin "82" + (uuid "1c7ecf7d-9c06-4ecb-bf09-c6901794633c") + ) + (pin "83" + (uuid "88994e57-a86f-4bed-ab16-eef9e9daf5cb") + ) + (pin "84" + (uuid "a8a0235e-ae79-4303-b771-35ef47cf0dc0") + ) + (pin "85" + (uuid "44530a8e-1ceb-47b7-9ab9-3a8cdaa13b90") + ) + (pin "86" + (uuid "02c243bf-cc7e-4f87-abe4-b38c9e883013") + ) + (pin "87" + (uuid "1c1dd044-f333-4ab2-856e-6be75ed838bf") + ) + (pin "88" + (uuid "909c9da8-2033-41f7-99cd-079678ac8a71") + ) + (pin "89" + (uuid "d8921de5-134b-468d-80db-99e34a014f93") + ) + (pin "9" + (uuid "8dc595bd-ec20-4bed-ba03-656145a68dde") + ) + (pin "90" + (uuid "54a7b851-5547-4236-89f3-9528c36ce738") + ) + (pin "91" + (uuid "7c3e468c-478c-4ded-93ec-9824c5fcd8c3") + ) + (pin "92" + (uuid "fe224cb2-afc3-43f4-a5b6-651e47d5652e") + ) + (pin "93" + (uuid "b17f2bfe-86ad-4f88-9f6e-b01d7f1c9e66") + ) + (pin "94" + (uuid "6ea0b369-26a1-439d-80b2-3e03fd1c0368") + ) + (pin "95" + (uuid "afa37141-ec5e-4f91-ac4b-12b1a3047963") + ) + (pin "96" + (uuid "eb7f31dc-92ec-46a2-8cc8-8a85101dfc7a") + ) + (pin "97" + (uuid "49f9547d-c576-4d5b-9f8a-deb2db9a7725") + ) + (pin "98" + (uuid "6a85ecf5-1f8b-48af-82c2-eb77fa1c286d") + ) + (pin "99" + (uuid "ae3d18db-d06c-409f-b051-c949d588d498") + ) + (pin "101" + (uuid "42012069-f136-4cdf-8386-a5e648d61587") + ) + (pin "102" + (uuid "aafd680e-f3de-44c3-b8d2-897188909f89") + ) + (pin "103" + (uuid "eb14ae89-b776-4a7c-b1cb-51227ede5631") + ) + (pin "104" + (uuid "6b847b8a-c935-4366-8f7b-7cdbe96384da") + ) + (pin "105" + (uuid "0844b132-5386-469c-86ff-d527c8a00608") + ) + (pin "106" + (uuid "0774b60f-e343-428b-9125-3ca983239ad5") + ) + (pin "107" + (uuid "9924c304-97d1-4655-9ab8-854a335a84c2") + ) + (pin "108" + (uuid "b7844cf9-69d3-4f7a-977a-bfc30d5d4c82") + ) + (pin "109" + (uuid "ef11623e-ea9c-4a76-a028-9fae209a45f2") + ) + (pin "110" + (uuid "ee6e4a23-bb7c-4f28-ab56-3ba1b79e1c04") + ) + (pin "111" + (uuid "825065db-dc11-43e9-aa2e-59e6b2cd21f3") + ) + (pin "112" + (uuid "eaab2e59-ff73-4d74-b3d3-7e7c2515083f") + ) + (pin "113" + (uuid "b3dbf4ad-71cb-48f5-9655-41b47deeea78") + ) + (pin "114" + (uuid "4d7ffc75-3dd8-46f7-86f3-405d41c4571a") + ) + (pin "115" + (uuid "2276bf47-b441-4aa2-ba22-8213875ce0ee") + ) + (pin "116" + (uuid "2af1d271-3c6a-476d-8eba-6b2aab466da3") + ) + (pin "117" + (uuid "b2691466-e53b-4f43-806f-abeb762713f6") + ) + (pin "118" + (uuid "77cfe682-cc36-4979-823b-05ea5f187ba7") + ) + (pin "119" + (uuid "88fb8817-4ee2-4465-a9af-37fedc8b835b") + ) + (pin "120" + (uuid "a5dfaf18-d33f-45c4-b76f-2a5051ec9118") + ) + (pin "121" + (uuid "f9570ec9-4338-4208-aee7-369a45a284f8") + ) + (pin "122" + (uuid "01c54577-6862-4ca7-bb55-524c2e995aee") + ) + (pin "123" + (uuid "8b9c1722-a1fd-4391-b4b4-854b2cc1549f") + ) + (pin "124" + (uuid "9812a82a-67c8-4c7e-8eb9-2d5188d40486") + ) + (pin "125" + (uuid "09741e1c-c412-4f50-b5b7-03d5820a1bad") + ) + (pin "126" + (uuid "874dbaf8-adf6-4f01-81a0-e037bac53346") + ) + (pin "127" + (uuid "ee80c1b4-78a3-4713-a7cd-fc09dd9d2b28") + ) + (pin "128" + (uuid "7984c59d-64f6-424c-8273-5bab21ab292d") + ) + (pin "129" + (uuid "3d0a8609-a059-4734-b988-da00f509164d") + ) + (pin "130" + (uuid "338b7824-6fa7-42ef-b79a-c6dc90689f4e") + ) + (pin "131" + (uuid "5a63aa46-8c18-43d5-8def-1c886562be17") + ) + (pin "132" + (uuid "9d4bb085-5413-4cad-9765-4f916ffbe612") + ) + (pin "133" + (uuid "059f4155-bed3-4fb2-9baa-d569f31b7e5d") + ) + (pin "134" + (uuid "6fb8126a-bcf3-40a3-924c-e2fbe8dba36a") + ) + (pin "135" + (uuid "b400c80e-5312-495d-b0d5-8365ed4de032") + ) + (pin "136" + (uuid "45fc93ca-f8ba-48a8-9189-1c9886475cd3") + ) + (pin "137" + (uuid "c9863f4f-bdf5-49f4-b18e-dce622ff9931") + ) + (pin "138" + (uuid "802bd717-75a4-4efc-bdc3-ab512c6bce65") + ) + (pin "139" + (uuid "88ea0fe3-17bb-45bf-bf71-4da88c965186") + ) + (pin "140" + (uuid "bb7f3caf-4343-4dcb-b7b2-5479c850c4a2") + ) + (pin "141" + (uuid "d8932824-bdfc-4009-a7d0-6ff32efa7e1a") + ) + (pin "142" + (uuid "12c9f3e1-9431-42f8-b6f8-fb6fd35fc1cb") + ) + (pin "143" + (uuid "9fbabfd5-5316-4dcb-8d99-3c53b9c69880") + ) + (pin "144" + (uuid "f89b1d5e-28c8-498c-b199-7acbd8607540") + ) + (pin "145" + (uuid "ce4b6c19-1441-4e43-8af4-a7f34dfbb538") + ) + (pin "146" + (uuid "5c986000-fc83-4495-a50f-9f4b94e485bc") + ) + (pin "147" + (uuid "7184670c-7656-49ee-9a6f-5771dc120d69") + ) + (pin "148" + (uuid "325f33ca-3e2f-400b-a27c-dce9977a2780") + ) + (pin "149" + (uuid "9c5b8388-0c5b-43a4-a3f4-d7cd72b89084") + ) + (pin "150" + (uuid "52820a90-7869-43b3-b870-39c015371964") + ) + (pin "151" + (uuid "b8eb5c02-d344-4431-a592-0e7ad9f9a78f") + ) + (pin "152" + (uuid "8e981540-9cda-414d-abbb-d34e005f000e") + ) + (pin "153" + (uuid "e7f989f7-95da-4be3-9e33-743523ae1ee0") + ) + (pin "154" + (uuid "92ee3d85-c13e-4120-ad64-bd390adf040c") + ) + (pin "155" + (uuid "35e13391-5257-46f3-93a5-87ffd4e862a4") + ) + (pin "156" + (uuid "26edc121-4167-44e5-9aaf-65f4ac255233") + ) + (pin "157" + (uuid "c96fb61f-984b-4e24-874e-ad2f1e86f9d7") + ) + (pin "158" + (uuid "8a3381a5-19d1-47f5-85b0-cf20b0f3bb61") + ) + (pin "159" + (uuid "a06bd114-6488-4d22-b31a-c3a8f70a2574") + ) + (pin "160" + (uuid "7f9c0307-e84d-4f8a-93be-34fc4b3feb89") + ) + (pin "161" + (uuid "db97118a-0872-4a5d-aaa5-b35f9498f22a") + ) + (pin "162" + (uuid "cc93ecb4-fd7b-48b7-868d-89f294f07c27") + ) + (pin "163" + (uuid "b4eddc61-2cab-493a-b874-62b106cef9f4") + ) + (pin "164" + (uuid "7b58219a-a31d-4ba4-804a-77c6d706d8bc") + ) + (pin "165" + (uuid "58728297-c362-4c70-a751-4d60ffa81b1a") + ) + (pin "166" + (uuid "5125c4d9-cf5c-4fe5-9dc8-c939e40fcd6f") + ) + (pin "167" + (uuid "5f7505cc-53a6-463b-b397-33ff845b1ac0") + ) + (pin "168" + (uuid "60fc0348-15d2-462c-9b87-dbb507b8717b") + ) + (pin "169" + (uuid "9efb25aa-d11e-4d2f-96a9-326a2f75dcc1") + ) + (pin "170" + (uuid "d09d8e7f-f203-4b36-92ba-f9f29b6e7d13") + ) + (pin "171" + (uuid "c1b603f4-7037-47e9-a9dc-a0bb6f7e58b1") + ) + (pin "172" + (uuid "91637a62-ec43-463a-9edc-420af478d9cb") + ) + (pin "173" + (uuid "a1223b95-aa11-427a-b201-9190a86a68be") + ) + (pin "174" + (uuid "7a3fed5a-9b6f-45f0-9ad7-54e1bda0ea60") + ) + (pin "175" + (uuid "e234e19f-cd33-4584-947b-bf9feaf6cddd") + ) + (pin "176" + (uuid "80b5b54b-a1cc-434c-8739-1e133d53601d") + ) + (pin "177" + (uuid "e250304b-2864-4f44-b1e8-173cc34a2ac6") + ) + (pin "178" + (uuid "08bb8c58-1868-4a96-8aaa-36d9e141ec38") + ) + (pin "179" + (uuid "dea30d29-44e9-47fc-bccc-6928d5c29cea") + ) + (pin "180" + (uuid "767e3782-90bf-4d7f-b1ef-719aa7013187") + ) + (pin "181" + (uuid "c34f5129-9516-486b-b322-ada2d7baa6ba") + ) + (pin "182" + (uuid "407d0cd8-54f8-47a8-90cb-42c8a441d04f") + ) + (pin "183" + (uuid "dc9eba43-a0ae-45fc-b91c-9050201557b9") + ) + (pin "184" + (uuid "b6e7e52e-fa7c-4663-b29b-8d72461a55fb") + ) + (pin "185" + (uuid "af35a153-e4cc-4cb5-9b0a-a247aa9a27b2") + ) + (pin "186" + (uuid "581488ee-fe1f-43d1-a23d-526666571191") + ) + (pin "187" + (uuid "58e02161-61cc-4d0f-bdc8-c497a25ae380") + ) + (pin "188" + (uuid "7da78911-dd6f-4bbd-9a74-8a3476ec1fb5") + ) + (pin "189" + (uuid "3f0c3fb9-57f0-4439-b2df-3c934842d7db") + ) + (pin "190" + (uuid "f76f4233-905d-4cb5-a153-eed7fe8e458e") + ) + (pin "191" + (uuid "de91796c-56de-4405-8fcc-748bd6a08e86") + ) + (pin "192" + (uuid "d7de2887-c7b2-4bb7-a339-632f4f906224") + ) + (pin "193" + (uuid "f69de914-d2d4-4fcf-a7d6-ce76fea2e1a7") + ) + (pin "194" + (uuid "1f70d207-e63d-4692-be1f-5b6fa8599d57") + ) + (pin "195" + (uuid "ea3cd08e-2d6a-4ba3-9c39-87a3d44d2015") + ) + (pin "196" + (uuid "e978c208-72f4-4c78-b109-bcb5e56d4024") + ) + (pin "197" + (uuid "65d0582b-c8a1-45a8-a0e9-e797f01caa63") + ) + (pin "198" + (uuid "6e24aa9b-c7e6-40f2-905b-b9c541e0e2f6") + ) + (pin "199" + (uuid "88f2670e-1113-4ed9-b644-cfdac6e8b249") + ) + (pin "200" + (uuid "2a756062-4e0c-4114-bc6d-4d6635f2d703") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "Module1") + (unit 2) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_02x02_Odd_Even") + (at 196.85 119.38 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e67855b") + (property "Reference" "J6" + (at 194.183 114.173 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "THD-02-R" + (at 198.12 116.1796 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.toby.co.uk/uploads/publications/1673.pdf" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Toby" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "THD-02-R" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "151-604-425-761" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "EDAC" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "UCON00791" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "PinHeader_2x02_P2.54mm_Vertical" + (at 196.85 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a6187c22-3622-4a1a-a49a-b21e96986f96") + ) + (pin "2" + (uuid "504cb9e4-5572-4208-bc9d-30a7efff8b9a") + ) + (pin "3" + (uuid "fda94f0a-876e-4bf0-ad10-35819851e3e9") + ) + (pin "4" + (uuid "f0e6fae4-0008-43ed-8719-bf62839f601f") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "J6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 29.21 184.15 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2dee0a35-df63-4bf9-9345-666fd7667b3c") + (property "Reference" "#PWR01" + (at 29.21 190.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 29.337 188.5442 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 29.21 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 29.21 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 29.21 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "42f0b8be-80b7-442d-ab9f-5547953bc8e7") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 100.33 181.61 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "4f114cbe-127d-402b-9e43-20055519ebe9") + (property "Reference" "C7" + (at 103.251 180.4416 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 103.251 182.753 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 101.2952 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 100.33 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 100.33 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 100.33 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 100.33 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 100.33 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 100.33 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 100.33 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 100.33 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "15d5296c-f8fc-493c-bbc5-3b2dab8930e1") + ) + (pin "2" + (uuid "e633cde2-5647-451f-b8f8-0917d27c1597") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 195.58 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6d44e492-a075-4e65-8666-060c978c8123") + (property "Reference" "#PWR03" + (at 195.58 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 195.707 95.8342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 195.58 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 195.58 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 195.58 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1b05c458-7076-41ae-870e-415e73690ade") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 87.63 181.61 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "7af4c403-0a0f-4cd6-92c0-049725258d6c") + (property "Reference" "C3" + (at 90.6272 180.467 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100uF" + (at 90.6272 182.753 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-7343-31_Kemet-D" + (at 88.5952 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 87.63 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 87.63 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Mouser" + (at 87.63 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "667-EEF-CX0J101R" + (at 87.63 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Capacitor, SP-Cap, 100u, 6.3V, 15mR ESR" + (at 87.63 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Panasonic" + (at 87.63 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "09f421e8-acca-4e6f-ba1f-80adf40332ae") + ) + (pin "2" + (uuid "96fa9929-97c7-46b5-a2be-419656c1818c") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 87.63 185.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "819066b2-26bf-4da2-8574-c925e1fe9cb3") + (property "Reference" "#PWR010" + (at 87.63 191.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 87.757 189.8142 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 87.63 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 87.63 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 87.63 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "50ba603b-2768-40af-beb7-864d2ff4b404") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 78.74 177.8 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8285f9ed-94cb-4a50-bc45-60131837a76c") + (property "Reference" "R12" + (at 82.55 173.99 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "15K 1%" + (at 78.74 173.99 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 78.74 179.578 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 78.74 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 78.74 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 78.74 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "9239375" + (at 78.74 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "MCR01MZPF1502" + (at 78.74 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Rohm" + (at 78.74 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 15K M1005 1% 63mW" + (at 78.74 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "120891581" + (at 78.74 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "20b7d8a7-7f0d-4cf0-9ca6-dc04f34b16c8") + ) + (pin "2" + (uuid "a9a51c23-c359-439a-9924-2057cf29b888") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "R12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 110.49 185.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8310b3e1-110d-4416-9986-f3fd73009f05") + (property "Reference" "#PWR012" + (at 110.49 191.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 110.617 189.8142 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 110.49 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 110.49 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 110.49 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a9117633-7bef-49be-b13b-5acdc06e2050") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 82.55 185.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8b7f874f-10ff-4b63-b89c-2800507b80e9") + (property "Reference" "#PWR09" + (at 82.55 191.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 82.677 189.8142 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 82.55 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 82.55 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 82.55 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "357783fd-c4a9-4945-8426-b50219459e46") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 110.49 181.61 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "9f9390e5-f859-41ea-a607-789531da8abb") + (property "Reference" "C8" + (at 113.411 180.4416 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 113.411 182.753 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 111.4552 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 110.49 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 110.49 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 110.49 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 110.49 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 110.49 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 110.49 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 110.49 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 110.49 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5cccaafe-7218-4c61-bcd5-123669d22dea") + ) + (pin "2" + (uuid "fa2eecf7-eda6-4b0c-ab49-346a7262452d") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "C8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:AP2553W6") + (at 59.69 177.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "bf051790-2c52-4db9-8be2-608cdd970d8a") + (property "Reference" "U6" + (at 59.055 168.529 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP22653W6" + (at 59.055 170.8404 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" + (at 63.5 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP255x.pdf" + (at 63.5 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 59.69 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 59.69 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" " 31-AP22653W6-7CT-ND" + (at 59.69 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "AP22653W6" + (at 59.69 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Diodes" + (at 59.69 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " Power Switch/Driver 1:1 P-Channel 2.1A SOT-23-6" + (at 59.69 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6e9965ec-da2e-4a0c-8d06-3f2e1255a520") + ) + (pin "2" + (uuid "1131a1ab-53e7-44a6-80d4-b32ba54a767a") + ) + (pin "3" + (uuid "b66d6731-afec-4458-824e-eb0c3c3dad2b") + ) + (pin "4" + (uuid "7de13870-533a-4b74-bacc-42ad4da418cc") + ) + (pin "5" + (uuid "57ba1168-ffb5-41ca-9ecb-ae64656a4670") + ) + (pin "6" + (uuid "920ac07a-102f-4348-a04f-e4d76c56afba") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "U6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:USB3_A") + (at 208.28 52.07 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c789bd3c-ea19-43e0-b046-0c95ce38bfd0") + (property "Reference" "J12" + (at 220.472 56.7944 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "USB3_A" + (at 220.472 59.1058 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:MTCONN_UBAF30-D2011" + (at 212.09 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 212.09 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 208.28 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "UBAF30-D2011" + (at 208.28 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Mtconn" + (at 208.28 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "UBAF30-D2011" + (at 208.28 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Dual USB 3 connector" + (at 208.28 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "10" + (uuid "6e6e7d2e-5112-4099-bc5f-c14b17eef45e") + ) + (pin "A1" + (uuid "786d4dfd-c002-4ef0-a651-e2a13ced27ec") + ) + (pin "A2" + (uuid "27de6d7f-f6cb-46c0-833b-cfa072a01e68") + ) + (pin "A3" + (uuid "d0778a88-2123-47fe-8d57-9f4f43e8b7e4") + ) + (pin "A4" + (uuid "a8e57369-59ab-4d01-a545-0e798cd447c7") + ) + (pin "A5" + (uuid "d4806cae-5945-4be8-bcbe-0e51910d700c") + ) + (pin "A6" + (uuid "1f31368f-7aac-4706-b9b5-b5ff33f213e8") + ) + (pin "A7" + (uuid "80ef9a8c-0850-431f-87db-773b9b0328c1") + ) + (pin "A8" + (uuid "cb1c4070-d914-432a-b682-4856d4600827") + ) + (pin "A9" + (uuid "aa33d752-aa5c-4e8e-b997-113dd6d2d66e") + ) + (pin "B1" + (uuid "f2c6e619-9906-41a5-a866-276fc47ff78b") + ) + (pin "B2" + (uuid "cab92ddd-8d20-4d1f-92c2-151b4abbb7ad") + ) + (pin "B3" + (uuid "75c7031b-6847-45f4-9aa3-a1ec9d079db5") + ) + (pin "B4" + (uuid "ae5a781a-6fbb-43c4-a2b4-196bf7657a62") + ) + (pin "B5" + (uuid "3c9da95c-156b-4951-a14e-8e1ed90ec9ac") + ) + (pin "B6" + (uuid "7e173081-f3c1-4a6f-9e7a-297d613f4476") + ) + (pin "B7" + (uuid "d5f91fa1-d518-426b-ae97-6b283f7c8e2f") + ) + (pin "B8" + (uuid "2a304fe1-6c7d-4dcc-832a-ddf120a1d03b") + ) + (pin "B9" + (uuid "4e12ed1d-3234-480d-b117-44b4f5fcf69f") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "J12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 40.64 185.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d2c99b58-309c-4c00-8a1c-d5e929d99ecd") + (property "Reference" "#PWR07" + (at 40.64 191.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 40.767 189.8142 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 40.64 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 40.64 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 40.64 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a942dd9c-c78c-4778-afbf-2c02ba4688a6") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 223.52 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d3a43d5c-466a-4431-b7e1-30c977e6a3fb") + (property "Reference" "#PWR04" + (at 223.52 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 223.647 95.8342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 223.52 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 223.52 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 223.52 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7f5b1345-24a7-4deb-81b3-46d361b43df5") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 100.33 185.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d914e846-f3ca-4b72-9188-bff342000ee3") + (property "Reference" "#PWR011" + (at 100.33 191.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 100.457 189.8142 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 100.33 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 100.33 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 100.33 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "55c6f5f4-b7a1-4c15-9791-96f3acb71453") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "#PWR011") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 29.21 180.34 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ebac8f36-1624-46eb-be91-d5377e148349") + (property "Reference" "C2" + (at 32.131 179.1716 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 32.131 181.483 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 30.1752 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 29.21 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 29.21 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 29.21 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 29.21 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 29.21 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 29.21 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 29.21 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 29.21 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e9d4c57f-e092-4a24-81a8-18efa9bc1ffc") + ) + (pin "2" + (uuid "5b3e9722-0381-452b-a2f9-511c0d5e9a9b") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (no_connect + (at 99.06 78.74) + (uuid "cb03bcb6-412e-5f57-a61f-7c01f5f5ffc5") + ) + (no_connect + (at 99.06 81.28) + (uuid "6976d5cc-f593-5271-90ac-3f312ce15767") + ) + (no_connect + (at 38.1 81.28) + (uuid "9a929471-224f-5afe-acce-34b966cf6047") + ) + (no_connect + (at 99.06 83.82) + (uuid "2f14ca8d-5d7f-5937-9974-3b37a5d972f5") + ) + (no_connect + (at 38.1 83.82) + (uuid "ae30f6cc-b624-5795-bf6a-b387211f0867") + ) + (no_connect + (at 99.06 86.36) + (uuid "00ddc811-dca9-5a78-b3bf-18bfb2076d4d") + ) + (no_connect + (at 99.06 88.9) + (uuid "14915203-44c2-5a60-b72e-5cbfcd27b35f") + ) + (no_connect + (at 38.1 88.9) + (uuid "de3d8c06-6f18-5b25-8feb-5c80cb64f6af") + ) + (no_connect + (at 99.06 91.44) + (uuid "be3cf25b-2c91-5d04-8b31-cc2623cdc08a") + ) + (no_connect + (at 38.1 91.44) + (uuid "2a065637-2078-516b-9e65-6eee54ae8ff9") + ) + (no_connect + (at 38.1 96.52) + (uuid "b568070a-f584-5206-a8b1-10aa712918f0") + ) + (no_connect + (at 38.1 99.06) + (uuid "766f17db-e14f-5f04-a8af-4e7458cb8201") + ) + (no_connect + (at 38.1 104.14) + (uuid "b3286598-28bb-5841-a43c-81f898fd016a") + ) + (no_connect + (at 38.1 106.68) + (uuid "75f29a70-5b4c-5243-a0fb-4704616cadbf") + ) + (no_connect + (at 38.1 111.76) + (uuid "45b60a1d-4b67-5bd6-a853-824be70577f9") + ) + (no_connect + (at 38.1 114.3) + (uuid "2209cbf6-55d2-519d-80a6-76adb994fcc0") + ) + (no_connect + (at 38.1 119.38) + (uuid "ec6b14d9-49f7-56b7-98bf-f516933b9d89") + ) + (no_connect + (at 38.1 121.92) + (uuid "3be593d5-688a-562a-ac7a-207e7450fc53") + ) + (no_connect + (at 38.1 127.0) + (uuid "e508abcb-1790-58de-b52f-d1369dac8353") + ) + (no_connect + (at 38.1 129.54) + (uuid "c30bce42-9f55-5669-a622-f8fb9c04bc03") + ) + (no_connect + (at 38.1 134.62) + (uuid "109bb529-2639-5a4e-888a-3bd5596be660") + ) + (no_connect + (at 38.1 137.16) + (uuid "d2f6c92e-6519-5dde-9207-5f11bde89815") + ) + (no_connect + (at 99.06 149.86) + (uuid "768bca22-317c-5b2b-929d-7ea9252c5c15") + ) + (no_connect + (at 38.1 149.86) + (uuid "808bd9a5-1b50-5936-845c-cab85b45b9b9") + ) + (no_connect + (at 99.06 43.18) + (uuid "77762cc4-7883-543c-956c-20f6386c8fc4") + ) + (no_connect + (at 99.06 45.72) + (uuid "b35c026f-f7f8-523e-85ea-e17c4f10833f") + ) + (no_connect + (at 99.06 50.8) + (uuid "ccbc2bbe-62bc-57e1-b309-d3099f1e92b5") + ) + (no_connect + (at 99.06 53.34) + (uuid "c657178c-3710-5dce-a39c-7cfaf347d6ae") + ) + (no_connect + (at 99.06 58.42) + (uuid "0ba78fb8-44e3-5b7e-90b7-079f54b978ce") + ) + (no_connect + (at 99.06 60.96) + (uuid "2f549d5f-fba3-553b-8760-ce2692b562e7") + ) + (no_connect + (at 99.06 66.04) + (uuid "dbaf9caa-0e6f-5718-8f8d-184b8e7b9ab1") + ) + (no_connect + (at 99.06 68.58) + (uuid "8699c7d2-2978-509a-87b3-e14ef13c5000") + ) + (no_connect + (at 99.06 73.66) + (uuid "59df094b-0ea1-5a3b-924b-39d402fcf6a0") + ) + (no_connect + (at 99.06 76.2) + (uuid "1336956e-81aa-5ec5-b265-b9eb5707dd54") + ) + (no_connect + (at 99.06 119.38) + (uuid "900408a5-3b3c-5530-81f9-6931228c7b29") + ) + (no_connect + (at 99.06 121.92) + (uuid "fdc5e06d-3646-5caa-b0cd-1dfeea2db31e") + ) + (no_connect + (at 99.06 127.0) + (uuid "2710e7dd-5f5c-5ce0-84c5-d13cdb2d8d4a") + ) + (no_connect + (at 99.06 129.54) + (uuid "b5e89805-923c-56e9-8ac4-fc70660d2f08") + ) + (no_connect + (at 99.06 134.62) + (uuid "98d1e17c-4b55-50c4-8e28-5ba8af033285") + ) + (no_connect + (at 99.06 137.16) + (uuid "6096f07d-3468-5c03-9186-609dae6a6a84") + ) + (no_connect + (at 99.06 142.24) + (uuid "8e80da3a-bf1f-531a-91fd-3d34e0c92e3a") + ) + (no_connect + (at 38.1 142.24) + (uuid "70c41051-7ec5-52b1-9220-7007c1fdc6c4") + ) + (no_connect + (at 99.06 144.78) + (uuid "b1dc9744-d338-571c-80a0-ef3db873d684") + ) + (no_connect + (at 38.1 144.78) + (uuid "3e94757c-62b4-5b7d-9eb9-0bce1d18da64") + ) +) diff --git a/carrier/PCIe-M2.kicad_sch b/carrier/PCIe-M2.kicad_sch new file mode 100644 index 0000000..ddaf5ec --- /dev/null +++ b/carrier/PCIe-M2.kicad_sch @@ -0,0 +1,7933 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "1354903a-b7d2-4e04-b220-6c6c8f058ef7") + (paper "A4") + (title_block + (title "Compute Module 5 IO Board - M2 Socket") + (rev "1") + (company "Copyright © 2024 Raspberry Pi Ltd.") + (comment 1 "www.raspberrypi.com") + ) + (lib_symbols + (symbol "CM5IO:AP3441SHE-7B" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -6.35 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP3441SHE-7B" + (at 0 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_DFN_QFN:DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm" + (at 1.27 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP3441-L.pdf" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AP3441SHE-7B_0_1" + (rectangle + (start -6.35 6.35) + (end 6.35 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "AP3441SHE-7B_1_1" + (pin passive line + (at -8.89 5.08 0) + (length 2.54) + (name "FB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at -8.89 2.54 0) + (length 2.54) + (name "PG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 0 0) + (length 2.54) + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 -2.54 0) + (length 2.54) + (name "PGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 8.89 -2.54 180) + (length 2.54) + (name "nc" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 8.89 0 180) + (length 2.54) + (name "LX" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 8.89 2.54 180) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 5.08 180) + (length 2.54) + (name "SGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 1.27 -6.35 90) + (length 2.54) + (name "PAD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:ASEK-32.768KHZ-L-R-T" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -5.08 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ASEK-32.768KHZ-L-R-T" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" + (at 1.27 -8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://abracon.com/Oscillators/ASEK.pdf" + (at 0 -11.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ASEK-32.768KHZ-L-R-T_0_1" + (rectangle + (start -6.35 5.08) + (end 6.35 -5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "ASEK-32.768KHZ-L-R-T_1_1" + (pin input line + (at -8.89 3.81 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 -3.81 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 8.89 -3.81 180) + (length 2.54) + (name "Out" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 3.81 180) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:Bus_M.2_Socket_M" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -22.86 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Bus_M.2_Socket_M" + (at 30.988 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "M.2 Socket 3 Mechanical Key M" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "M2 NGNF PCI-E" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "*M*2*M*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Bus_M.2_Socket_M_0_1" + (rectangle + (start -22.86 45.72) + (end 22.86 -45.72) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "Bus_M.2_Socket_M_1_1" + (pin power_in line + (at -20.32 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 -10.16 180) + (length 2.54) + (name "DAS/~{DSS}/~{LED1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 0 0) + (length 2.54) + (name "PERn3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -3.81 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 2.54 0) + (length 2.54) + (name "PERp3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -1.27 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -12.7 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 1.27 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 5.08 0) + (length 2.54) + (name "PETn2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 3.81 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 7.62 0) + (length 2.54) + (name "PETp2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 2.54 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -10.16 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 5.08 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 10.16 0) + (length 2.54) + (name "PERn2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 7.62 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 12.7 0) + (length 2.54) + (name "PERp2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 10.16 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 12.7 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 15.24 0) + (length 2.54) + (name "PETn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -17.78 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 15.24 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 17.78 0) + (length 2.54) + (name "PETp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 17.78 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 20.32 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 20.32 0) + (length 2.54) + (name "PERn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 22.86 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 22.86 0) + (length 2.54) + (name "PERp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -22.86 0) + (length 2.54) + (name "DEVSLP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -6.35 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 25.4 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 25.4 0) + (length 2.54) + (name "PETn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 27.94 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 27.94 0) + (length 2.54) + (name "PETp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 30.48 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 33.02 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 30.48 0) + (length 2.54) + (name "PERn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 35.56 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 33.02 0) + (length 2.54) + (name "PERp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -5.08 0) + (length 2.54) + (name "PETn3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 43.18 0) + (length 2.54) + (name "~{PERST}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 40.64 0) + (length 2.54) + (name "~{CLKREQ}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -38.1 0) + (length 2.54) + (name "REFCLKn" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 38.1 0) + (length 2.54) + (name "~{PEWAKE}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -35.56 0) + (length 2.54) + (name "REFCLKp" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 38.1 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 5.08 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 40.64 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 -2.54 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 -5.08 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 25.4 -27.94 180) + (length 2.54) + (name "SUSCLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -20.32 180) + (length 2.54) + (name "PEDET" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "69" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -2.54 0) + (length 2.54) + (name "PETp3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 6.35 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "70" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 7.62 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "71" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "72" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 10.16 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "73" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 11.43 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "74" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 12.7 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "75" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 0 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -15.24 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -39.37 180) + (length 2.54) + (name "GND2230" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -36.83 180) + (length 2.54) + (name "GND2242" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -34.29 180) + (length 2.54) + (name "GND2260" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -31.75 180) + (length 2.54) + (name "GND2280" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -41.91 180) + (length 2.54) + (name "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -44.45 180) + (length 2.54) + (name "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "CM5IO:M.2_Screw" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board no) + (property "Reference" "M" + (at -0.254 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "M.2 Screw" + (at 0.254 -8.636 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "M.2_Screw_0_1" + (polyline + (pts + (xy -5.08 0) (xy -5.08 -6.35) (xy -3.81 -6.35) (xy -3.81 -5.08) (xy -2.54 -5.08) (xy -2.54 -2.54) + (xy -1.27 -2.54) (xy -1.27 -5.08) (xy 0 -5.08) (xy 0 -2.54) (xy 1.27 -1.27) (xy 2.54 -2.54) (xy 3.81 -1.27) + (xy 5.08 -2.54) (xy 6.35 -1.27) (xy 6.35 1.27) (xy 5.08 2.54) (xy 3.81 1.27) (xy 2.54 2.54) (xy 1.27 1.27) + (xy 0 2.54) (xy 0 5.08) (xy -1.27 5.08) (xy -1.27 2.54) (xy -2.54 2.54) (xy -2.54 5.08) (xy -3.81 5.08) + (xy -3.81 6.35) (xy -5.08 6.35) (xy -5.08 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "CM5IO:SolderNut" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim yes) + (in_bom yes) + (on_board no) + (property "Reference" "M" + (at -6.35 -3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "M.2 Solder Nut" + (at 0.254 -5.842 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SolderNut_0_1" + (circle + (center 0 0) + (radius 2.8398) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0) + (radius 4.0161) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "Connector:TestPoint" + (pin_numbers hide) + (pin_names + (offset 0.762) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "TP" + (at 0 6.858 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TestPoint" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "test point tp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Pin* Test*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TestPoint_0_1" + (circle + (center 0 3.302) + (radius 0.762) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TestPoint_1_1" + (pin passive line + (at 0 0 90) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:L" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "L" + (at -1.27 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "L" + (at 1.905 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Inductor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "inductor choke coil reactor magnetic" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "L_0_1" + (arc + (start 0 -2.54) + (mid 0.6323 -1.905) + (end 0 -1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -1.27) + (mid 0.6323 -0.635) + (end 0 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0) + (mid 0.6323 0.635) + (end 0 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 1.27) + (mid 0.6323 1.905) + (end 0 2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "L_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:LED" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LED" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "LED diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LED_0_1" + (polyline + (pts + (xy -1.27 -1.27) (xy -1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy 1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "LED_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 156.21 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "0971a76b-ec1e-43c1-90b8-b249db271ec7") + ) + (junction + (at 170.18 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "0ced7422-ae88-4357-a59f-4cdb20b23b55") + ) + (junction + (at 55.88 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "14d7e276-be5c-46fa-a2a0-c79d90e09388") + ) + (junction + (at 119.38 175.26) + (diameter 1.016) + (color 0 0 0 0) + (uuid "15473da7-af57-4106-a34d-d44746d11ae7") + ) + (junction + (at 143.51 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "1d4530c5-b77a-453b-b371-503bcccb69b0") + ) + (junction + (at 171.45 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "27192e75-e5ee-4503-b13c-a8b5580cfe9c") + ) + (junction + (at 165.1 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "37790feb-921f-4e9e-baa9-a10ad25c8a76") + ) + (junction + (at 109.22 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "3fda8585-7ce9-46c0-99aa-64ed056d72e6") + ) + (junction + (at 158.75 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "443c2730-3ed3-49fd-a3c1-794abfdd5cbc") + ) + (junction + (at 153.67 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "46b0129a-5437-4e8f-981e-582db5e309b4") + ) + (junction + (at 46.99 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "47d4907a-b39f-4110-8215-1c89dfb13984") + ) + (junction + (at 173.99 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "4c1636ab-519d-4add-a9d4-5ecf108d12bc") + ) + (junction + (at 132.08 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "508593b6-6d74-460c-aa04-954ccfc932f3") + ) + (junction + (at 88.9 165.1) + (diameter 0) + (color 0 0 0 0) + (uuid "511a8176-7e3a-4b78-b703-c3a3c65921f5") + ) + (junction + (at 38.1 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "54b1991d-22c0-4fb7-bbf5-6e1f86126557") + ) + (junction + (at 154.94 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "55bc9f1f-35c9-4b1d-889c-bb035aa4ebdc") + ) + (junction + (at 142.24 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "56ad845a-0197-43a5-be30-d075433519c9") + ) + (junction + (at 186.69 121.92) + (diameter 0) + (color 0 0 0 0) + (uuid "6dcf5054-4020-4661-9a77-9594e744dd12") + ) + (junction + (at 186.69 116.84) + (diameter 0) + (color 0 0 0 0) + (uuid "70b059f5-1d7b-49a0-862c-1a2d56fd6cb1") + ) + (junction + (at 166.37 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "7ac63ee2-4eec-400e-92da-71d382bc7b1c") + ) + (junction + (at 146.05 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "7c8c86cc-fccd-4fb7-b41c-7a33e61ce7d2") + ) + (junction + (at 152.4 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "7f1156db-d3a8-4f9f-85c3-f6126b44442d") + ) + (junction + (at 163.83 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "823ff6e9-08cf-4985-8488-c93f856f3055") + ) + (junction + (at 148.59 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "8cabe10a-b258-49c2-b552-2c104af11c18") + ) + (junction + (at 167.64 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "963fbae9-9f79-4801-ab62-ad5b787b8b9c") + ) + (junction + (at 109.22 175.26) + (diameter 0) + (color 0 0 0 0) + (uuid "9d34a21d-9426-40ce-a415-f9158b887fc7") + ) + (junction + (at 161.29 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "a56255ff-fde1-4846-8243-66e1f3b5a6cb") + ) + (junction + (at 186.69 124.46) + (diameter 0) + (color 0 0 0 0) + (uuid "a70eba40-59de-41a2-a80a-bf7e9a29519e") + ) + (junction + (at 186.69 114.3) + (diameter 0) + (color 0 0 0 0) + (uuid "aa1d806a-5679-4741-aa9e-3ff034d1f022") + ) + (junction + (at 140.97 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "ae48748c-d4f5-4516-8b91-680bb9f13c51") + ) + (junction + (at 160.02 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "b08885e5-0026-4f55-8da8-df2de2acf945") + ) + (junction + (at 162.56 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "b0e65ee5-b64f-4611-999f-7ddb37fc5f4b") + ) + (junction + (at 186.69 119.38) + (diameter 0) + (color 0 0 0 0) + (uuid "b9111aad-79f3-4be0-80db-033ad9470bf0") + ) + (junction + (at 201.93 74.93) + (diameter 0) + (color 0 0 0 0) + (uuid "d5fad215-1823-4629-bffb-1dbcfea4818c") + ) + (junction + (at 152.4 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "df738128-05c2-4613-9f93-653a0dd6e0ad") + ) + (junction + (at 172.72 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "e1ae569b-04ed-4f8a-abbe-3e45261b0516") + ) + (junction + (at 151.13 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "e61b95f9-6f19-47f2-98af-7cb953922317") + ) + (junction + (at 119.38 167.64) + (diameter 1.016) + (color 0 0 0 0) + (uuid "ef46fcbf-5e5f-4db4-8d4d-7b6d061ae8f7") + ) + (junction + (at 168.91 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "fc2e0b6a-82ba-4dc3-a363-ebca8df1df31") + ) + (junction + (at 157.48 27.94) + (diameter 0) + (color 0 0 0 0) + (uuid "ffaf5071-cb25-4b0f-8668-03b64a08abd3") + ) + (no_connect + (at 64.77 165.1) + (uuid "09887fa5-743e-48b7-8eb6-70c53e96058f") + ) + (no_connect + (at 135.89 80.01) + (uuid "0c481a8e-9404-4b57-b88a-d97f5efb08bc") + ) + (no_connect + (at 135.89 85.09) + (uuid "0e5865dc-2e8d-4dcc-9438-bbd68c381481") + ) + (no_connect + (at 135.89 72.39) + (uuid "13bbd062-edf6-4520-98b8-a547fc36fb28") + ) + (no_connect + (at 135.89 82.55) + (uuid "2c17355d-c7cd-4b60-9acc-c75faccf353e") + ) + (no_connect + (at 135.89 57.15) + (uuid "4320e68a-5094-4d74-96dd-46da37aad90b") + ) + (no_connect + (at 135.89 102.87) + (uuid "4c90c256-052e-454c-8be7-de530fe31f02") + ) + (no_connect + (at 135.89 77.47) + (uuid "64e25001-8022-4904-b3d2-832fa09499c6") + ) + (no_connect + (at 186.69 100.33) + (uuid "73873f8c-eca6-443f-87d9-1df15bb756ad") + ) + (no_connect + (at 135.89 67.31) + (uuid "73a5dbc3-a0e9-4c78-9847-b201aa4dba42") + ) + (no_connect + (at 135.89 62.23) + (uuid "7d1d4017-f5a7-4ace-ad23-7b71fe265943") + ) + (no_connect + (at 135.89 74.93) + (uuid "86e52e00-5abb-47f5-9f03-7049a06eecce") + ) + (no_connect + (at 135.89 69.85) + (uuid "ee6c213f-a52d-452a-8227-d62136c43d5b") + ) + (no_connect + (at 135.89 64.77) + (uuid "fbc08f32-fd34-4908-8f11-b87ac79a13bb") + ) + (no_connect + (at 135.89 59.69) + (uuid "ffacc6d1-cfb6-4636-8d32-e37ea1f76c6b") + ) + (wire + (pts + (xy 186.69 124.46) (xy 186.69 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "00e0399c-cb25-4111-9343-6a7e92ea1639") + ) + (wire + (pts + (xy 105.41 167.64) (xy 109.22 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "035434ac-78d5-4651-a4bd-038eb8ef9dd0") + ) + (wire + (pts + (xy 140.97 128.27) (xy 143.51 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "04935ee8-85e7-4f06-b2e5-d1f5ea1a7cdc") + ) + (wire + (pts + (xy 167.64 27.94) (xy 170.18 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "04bc3fec-e2c5-4737-ab39-31f36483ee1c") + ) + (wire + (pts + (xy 162.56 27.94) (xy 162.56 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "07dcc1c5-d28b-4d8e-aebb-3e18b73cf55f") + ) + (wire + (pts + (xy 195.58 125.73) (xy 207.01 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0a5a5006-602f-4d52-a6ae-b4f750673335") + ) + (wire + (pts + (xy 201.93 27.94) (xy 201.93 64.77) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "0da47185-3622-48fd-933c-2ddeee28be32") + ) + (wire + (pts + (xy 109.22 167.64) (xy 119.38 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0fe9dba1-daa1-47a5-b1db-865087136712") + ) + (wire + (pts + (xy 152.4 27.94) (xy 154.94 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "13c868ff-4fa5-494d-8728-b04cc5e40c7d") + ) + (wire + (pts + (xy 173.99 128.27) (xy 171.45 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "14319cb7-ddcc-4dca-b8e7-0dcf8b1d39d7") + ) + (wire + (pts + (xy 123.19 52.07) (xy 135.89 52.07) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "17670acf-9be9-4b32-af2f-addec9b50bb5") + ) + (wire + (pts + (xy 142.24 167.64) (xy 152.4 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "17f4d9a7-c9d5-44e3-821f-99c7021e1907") + ) + (wire + (pts + (xy 88.9 165.1) (xy 88.9 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "184735a2-7e29-4dbe-b3a6-c204b3541be2") + ) + (wire + (pts + (xy 152.4 167.64) (xy 162.56 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "18dadd91-f2e9-48fe-adfa-1f5fe1717cab") + ) + (wire + (pts + (xy 124.46 115.57) (xy 135.89 115.57) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "1c6c46b2-dd9e-430f-85e9-621815ceca94") + ) + (wire + (pts + (xy 59.69 162.56) (xy 64.77 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1ec7ad96-0acd-4c41-8b57-b98ffb8b7b83") + ) + (wire + (pts + (xy 135.89 46.99) (xy 123.19 46.99) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "1f2605ff-0052-4214-ba00-e5f83f987c66") + ) + (wire + (pts + (xy 156.21 128.27) (xy 153.67 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "269d546f-6752-4c69-8daf-ea6933d011e7") + ) + (wire + (pts + (xy 55.88 175.26) (xy 55.88 176.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "27b00225-5a81-4eb8-8ef9-b912f938fe63") + ) + (wire + (pts + (xy 154.94 27.94) (xy 157.48 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "28a3f753-e17f-499a-984e-07941eb245db") + ) + (wire + (pts + (xy 186.69 119.38) (xy 186.69 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "28f1a295-621f-41dd-bdf7-f8d4253b54b1") + ) + (wire + (pts + (xy 186.69 121.92) (xy 186.69 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e4828a9-a50e-4efa-87c3-283a0db37752") + ) + (wire + (pts + (xy 165.1 27.94) (xy 165.1 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "347a068e-dba2-471e-af6d-375e6719fcad") + ) + (wire + (pts + (xy 123.19 54.61) (xy 135.89 54.61) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "3520b9bf-2dfc-4868-a650-86ff98682e83") + ) + (wire + (pts + (xy 171.45 128.27) (xy 168.91 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "36652005-5266-42c1-b220-777e909c4f0a") + ) + (wire + (pts + (xy 123.19 49.53) (xy 135.89 49.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "370b7d32-0d68-4d38-9ef1-c5ebd216c70b") + ) + (wire + (pts + (xy 46.99 167.64) (xy 55.88 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "378c71c9-98bd-419c-ba45-82c6f1b563f5") + ) + (wire + (pts + (xy 201.93 90.17) (xy 201.93 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "387581b1-9119-4cf1-8d3d-67a5cc261455") + ) + (wire + (pts + (xy 172.72 27.94) (xy 201.93 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "38f75849-e334-4a3b-93f1-13803814f7c9") + ) + (wire + (pts + (xy 82.55 165.1) (xy 88.9 165.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "424c0c2e-ebc7-4609-a179-a42d4fc6ba4c") + ) + (wire + (pts + (xy 132.08 167.64) (xy 142.24 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "442d1651-2d75-4f55-aa85-e9db75778ce1") + ) + (wire + (pts + (xy 186.69 116.84) (xy 186.69 119.38) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4c4c6afb-ac35-4671-8499-eb119383026b") + ) + (wire + (pts + (xy 167.64 27.94) (xy 167.64 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4ea0f8d5-614c-42a6-8477-02a075ab7053") + ) + (wire + (pts + (xy 34.29 167.64) (xy 38.1 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4fc16f5b-fc95-49c6-9b00-324b33d63fe2") + ) + (wire + (pts + (xy 186.69 114.3) (xy 186.69 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "513a8070-46e1-4a35-9909-0b205ccc826f") + ) + (wire + (pts + (xy 152.4 167.64) (xy 152.4 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "51ec935f-df03-4732-861b-d8e38161f0de") + ) + (wire + (pts + (xy 186.69 128.27) (xy 173.99 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "56789b6d-95a1-4aee-8cf9-b326ab0474a7") + ) + (wire + (pts + (xy 168.91 128.27) (xy 166.37 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "57059c4c-6ab3-4725-b067-dc0884d3d77b") + ) + (wire + (pts + (xy 119.38 167.64) (xy 132.08 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ce78009-1225-4f4c-858c-c27960c909e1") + ) + (wire + (pts + (xy 152.4 176.53) (xy 152.4 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ec30c0e-26b1-4f16-938e-8d8355dd98d4") + ) + (wire + (pts + (xy 158.75 128.27) (xy 161.29 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "65893007-291c-484b-acdc-7fa4101ea5b0") + ) + (wire + (pts + (xy 166.37 128.27) (xy 163.83 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c657656-d8ba-4886-91fa-dd24eb342884") + ) + (wire + (pts + (xy 170.18 27.94) (xy 172.72 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "70402240-8a2d-4624-abce-49bf284e1085") + ) + (wire + (pts + (xy 82.55 167.64) (xy 97.79 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "71b421ba-2889-471b-9c52-9c277a97b6b3") + ) + (wire + (pts + (xy 201.93 74.93) (xy 208.28 74.93) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "7820b7b6-18d1-4c8d-9119-bf906b975f88") + ) + (wire + (pts + (xy 238.76 133.35) (xy 224.79 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7d22aaa7-3a7b-4eea-a956-7b6d040078f1") + ) + (wire + (pts + (xy 157.48 27.94) (xy 160.02 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7d52ba36-9833-473c-bf97-57702b97c41b") + ) + (wire + (pts + (xy 203.2 135.89) (xy 203.2 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7efcdbda-1322-4422-9d1d-2e859e4997f0") + ) + (wire + (pts + (xy 157.48 27.94) (xy 157.48 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "854bfa82-ce82-46db-9f14-065a43e1179e") + ) + (wire + (pts + (xy 186.69 111.76) (xy 186.69 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8558cfcf-fda8-4d9f-8bb3-03f093712c0f") + ) + (wire + (pts + (xy 152.4 27.94) (xy 152.4 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "859c5ae3-ce01-45ab-99d8-385d7977e781") + ) + (wire + (pts + (xy 55.88 167.64) (xy 64.77 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8ca1af04-2817-4075-a891-1bb349f15b5d") + ) + (wire + (pts + (xy 88.9 149.86) (xy 88.9 165.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9618bd9a-d82a-4487-ab79-2518aa4951a0") + ) + (wire + (pts + (xy 172.72 27.94) (xy 172.72 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9671ab74-e70a-4a23-ba32-80faea91fcbd") + ) + (wire + (pts + (xy 124.46 118.11) (xy 135.89 118.11) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "981e13d8-2493-4f5a-aa1e-fcc255c235ee") + ) + (wire + (pts + (xy 109.22 175.26) (xy 119.38 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "986bca06-c2ae-4dc1-a886-0e0bd87e6d0c") + ) + (wire + (pts + (xy 123.19 39.37) (xy 135.89 39.37) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "9c7af13e-949e-4a55-a6b7-45ef51b4f106") + ) + (wire + (pts + (xy 38.1 175.26) (xy 38.1 176.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "a07b9bb6-155c-4592-a014-7d730cdba8e4") + ) + (wire + (pts + (xy 123.19 41.91) (xy 135.89 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a3da2e4a-5ebb-498f-87e0-3e78c29e6349") + ) + (wire + (pts + (xy 132.08 168.91) (xy 132.08 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a4118b8f-e6bf-4ed6-8b85-0f5ce27a9843") + ) + (wire + (pts + (xy 146.05 128.27) (xy 143.51 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a4ff6458-3879-4531-8766-d5640c1d31c8") + ) + (wire + (pts + (xy 82.55 162.56) (xy 83.82 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b063086f-18d3-4c50-af5d-145d58a924be") + ) + (wire + (pts + (xy 140.97 128.27) (xy 140.97 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b2308656-e68b-44b9-b3ae-932dd01e2632") + ) + (wire + (pts + (xy 148.59 128.27) (xy 151.13 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b37ead0c-0ace-485d-82f6-62d5a225f839") + ) + (wire + (pts + (xy 186.69 90.17) (xy 201.93 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b46bee14-3037-4fb8-8aba-564783a6e32c") + ) + (wire + (pts + (xy 144.78 27.94) (xy 152.4 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b6c82dcb-eea3-4d43-b565-c068f084ae20") + ) + (wire + (pts + (xy 162.56 27.94) (xy 165.1 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b824aa74-0e45-4664-97d9-52b08d36f485") + ) + (wire + (pts + (xy 186.69 107.95) (xy 238.76 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba4df60e-8780-4390-a980-5ffd05fbf2a2") + ) + (wire + (pts + (xy 38.1 167.64) (xy 46.99 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bce5afc8-fc5a-4083-9859-a3f31d8b70b5") + ) + (wire + (pts + (xy 233.68 125.73) (xy 224.79 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c723783e-6e91-4fc0-91c2-63f2171437c3") + ) + (wire + (pts + (xy 142.24 167.64) (xy 142.24 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cab3d586-e276-416d-89b5-bb7083ab5ba3") + ) + (wire + (pts + (xy 163.83 128.27) (xy 161.29 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cb35b3a9-1204-481c-8624-73ac0f048621") + ) + (wire + (pts + (xy 80.01 149.86) (xy 88.9 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cd421370-7102-4c4e-a38d-ee4ca207f4bf") + ) + (wire + (pts + (xy 46.99 175.26) (xy 46.99 176.53) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "cf530655-e123-49c1-846a-54a2f7b0b30f") + ) + (wire + (pts + (xy 151.13 128.27) (xy 153.67 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d115daeb-70be-48bc-9d94-73f6228cda15") + ) + (wire + (pts + (xy 156.21 128.27) (xy 158.75 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d2951fad-a0ae-443a-baf5-8717e9457f66") + ) + (wire + (pts + (xy 132.08 177.8) (xy 132.08 176.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d3673066-f9de-42bf-b36d-321409ff5a66") + ) + (wire + (pts + (xy 201.93 74.93) (xy 201.93 78.74) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d38d2c67-87dc-4cd7-a3b4-a8f6e2009ed5") + ) + (wire + (pts + (xy 160.02 27.94) (xy 160.02 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d4b0cccc-10f4-48f5-b455-5881984c5cde") + ) + (wire + (pts + (xy 201.93 74.93) (xy 201.93 72.39) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "d5f76e2c-52ed-4630-a0a9-57d3de6674c1") + ) + (wire + (pts + (xy 162.56 176.53) (xy 162.56 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d7040f9b-cd3f-43de-9646-a9568d8faf12") + ) + (wire + (pts + (xy 203.2 133.35) (xy 207.01 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "daf58603-e31d-4fb4-a364-7a52b222a4ed") + ) + (wire + (pts + (xy 233.68 135.89) (xy 233.68 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "db225ff2-9573-411f-91b1-869f88b18fec") + ) + (wire + (pts + (xy 64.77 176.53) (xy 64.77 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "de0c6ad6-d043-4995-b4d3-8cf567c06c6a") + ) + (wire + (pts + (xy 162.56 167.64) (xy 162.56 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dff72424-67fd-4224-8366-0d3bed4741f8") + ) + (wire + (pts + (xy 154.94 27.94) (xy 154.94 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e00aa823-4fb8-41a6-b544-ec0d603dc0ff") + ) + (wire + (pts + (xy 142.24 176.53) (xy 142.24 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e0555661-e04a-48cf-8b4f-fcd54cfc3e7f") + ) + (wire + (pts + (xy 165.1 27.94) (xy 167.64 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e1de64d0-cea1-451b-888f-0545aa755377") + ) + (wire + (pts + (xy 119.38 176.53) (xy 119.38 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "e718feae-a0e5-497c-b7ae-f2e120769ce6") + ) + (wire + (pts + (xy 146.05 128.27) (xy 148.59 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ef1bb5af-5dbe-448a-8f40-76c19b2a38b4") + ) + (wire + (pts + (xy 123.19 36.83) (xy 135.89 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f0bda9a8-995a-4e13-88c2-6877704e3f76") + ) + (wire + (pts + (xy 102.87 175.26) (xy 109.22 175.26) + ) + (stroke + (width 0) + (type solid) + ) + (uuid "f2e439be-a0ba-41f1-8e20-1025b05fd0af") + ) + (wire + (pts + (xy 160.02 27.94) (xy 162.56 27.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f38ec79f-61c7-4eba-b204-449cd5f02edc") + ) + (wire + (pts + (xy 170.18 27.94) (xy 170.18 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f45538fc-cb83-42c2-beb6-355b0f40444a") + ) + (wire + (pts + (xy 238.76 107.95) (xy 238.76 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f5b31f7e-dd5b-4dde-abdc-f3dae27e52ee") + ) + (wire + (pts + (xy 83.82 162.56) (xy 83.82 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fb4a4aee-bada-4821-b9c0-35a75be6d2fa") + ) + (text "Activity LED" + (exclude_from_sim no) + (at 205.105 66.675 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a0007b3b-0955-4d63-b006-1e56367da818") + ) + (label "M2_3v3" + (at 154.94 167.64 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "111611e6-b227-4178-9e95-e3b6e064fa8e") + ) + (label "+5v" + (at 34.29 167.64 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "224d17d6-f687-4cef-8fc7-350a97123817") + ) + (label "FB" + (at 59.69 162.56 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "50891ad8-64da-48d4-8598-2b06a0842af8") + ) + (label "M2_3v3" + (at 224.79 125.73 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "641a8205-95db-4e14-81fb-f8584830e68a") + ) + (label "M2_3v3" + (at 197.485 125.73 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "832aa62d-c4e7-4ee8-bb6b-0bdfe6a8dea8") + ) + (label "M2_3v3" + (at 144.78 27.94 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "c5803adf-2ae5-4045-86a8-05dcadd30360") + ) + (label "FB" + (at 102.87 175.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "dd57da68-ffe8-45ec-a455-3fb983eb70f2") + ) + (hierarchical_label "PCIE_RX_N" + (shape output) + (at 123.19 52.07 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "0afc6592-c2db-4caa-a22b-f13f9e7e1c40") + ) + (hierarchical_label "PCIE_CLK_N" + (shape input) + (at 124.46 118.11 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "3f6533ba-c4f9-46fc-b56b-e4570f6ba8d8") + ) + (hierarchical_label "PCIE_TX_P" + (shape input) + (at 123.19 49.53 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "4d759aa0-1145-43ae-a507-a45f6fc89e2a") + ) + (hierarchical_label "PCIE_nCLKREQ" + (shape output) + (at 123.19 39.37 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "4f2de74c-a0a3-419c-86d3-f1056d120362") + ) + (hierarchical_label "PCIE_RX_P" + (shape output) + (at 123.19 54.61 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "62b6b2b3-6ade-4e95-8062-936451a2172f") + ) + (hierarchical_label "PCIE_PWR_EN" + (shape input) + (at 80.01 149.86 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "968f38dd-fdab-400d-be85-99b92d95765f") + ) + (hierarchical_label "PCIE_nWAKE" + (shape output) + (at 123.19 41.91 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "9bcfecd3-0b81-4165-87e5-7f1e560a3e40") + ) + (hierarchical_label "PCIE_TX_N" + (shape input) + (at 123.19 46.99 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "9c8b409b-0d1b-49e5-8fed-acd83e0e8b3e") + ) + (hierarchical_label "PCIE_nRST" + (shape input) + (at 123.19 36.83 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d0d2152d-05bb-45b9-922c-65dc46f5a5df") + ) + (hierarchical_label "+5v" + (shape input) + (at 34.29 167.64 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "d57623d9-4a24-4864-a77d-b08b296fd337") + ) + (hierarchical_label "PCIE_CLK_P" + (shape input) + (at 124.46 115.57 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + (uuid "f6662114-e94f-4466-8b01-5f4d76363a86") + ) + (symbol + (lib_id "Device:LED") + (at 201.93 68.58 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "04dedc07-8588-4675-a3af-604477889888") + (property "Reference" "D3" + (at 204.9018 67.5894 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "LED Green" + (at 204.9018 69.9008 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://optoelectronics.liteon.com/upload/download/DS22-2000-226/LTST-S270KGKT.pdf" + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey " + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "LTST-S270KGKT" + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "SML-A12M8TT86N" + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Rohm" + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "650263301" + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " Green 572nm LED Indication - Discrete 2.2V 2-SMD, No Lead" + (at 201.93 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "81837322-b40e-4659-a1e6-d664620e3e77") + ) + (pin "2" + (uuid "efefa450-a859-4a54-9cc8-7c20d27be06e") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "D3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 152.4 172.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "05ac92f4-afc5-4889-acdd-9cddeba0376e") + (property "Reference" "C16" + (at 155.321 171.5516 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 155.321 173.863 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 153.3652 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 152.4 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 152.4 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 152.4 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 152.4 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 152.4 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 152.4 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 152.4 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 152.4 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1a2a68d9-eca5-42e6-8db9-393c0f77437e") + ) + (pin "2" + (uuid "980f9fea-c31a-4e68-869a-8fb800d858d6") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 152.4 177.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0b4708b7-9fb6-4972-962c-1018b6427c2f") + (property "Reference" "#PWR018" + (at 152.4 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 152.527 182.1942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 152.4 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 152.4 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 152.4 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9ad78c16-3ab5-45e7-a094-0407ba987bfe") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 46.99 171.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "0be8a27b-1e10-4c67-a0ee-02dc30ff42ad") + (property "Reference" "C6" + (at 49.911 170.2816 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 49.911 172.593 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 47.9552 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 46.99 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 46.99 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 46.99 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 46.99 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 46.99 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 46.99 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 46.99 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 46.99 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8b733c12-9688-4a6f-adb6-5086fb94825c") + ) + (pin "2" + (uuid "7205a4d7-ddd7-4b01-8256-e7b8644e520c") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 208.28 74.93 270) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp yes) + (uuid "0d6db532-f0dd-4c0d-bf0a-0aec728b6d4b") + (property "Reference" "TP1" + (at 209.55 78.74 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "TestPoint" + (at 207.01 76.835 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_2.0x2.0mm" + (at 208.28 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 208.28 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 208.28 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "nf" + (at 208.28 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "nf" + (at 208.28 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "nf" + (at 208.28 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "nf" + (at 208.28 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Test point" + (at 208.28 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e831905a-7b9e-4294-8828-513615b4d74f") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "TP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 46.99 176.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "21c74b08-d586-41a4-9db8-b1913e4eb794") + (property "Reference" "#PWR021" + (at 46.99 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 47.117 180.9242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 46.99 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 46.99 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 46.99 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d850957b-ef65-46b8-bb97-2874a7517070") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR021") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 140.97 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2c75d540-dfc9-477c-a6dc-ea2045f017c5") + (property "Reference" "#PWR019" + (at 140.97 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 141.097 133.9342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 140.97 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 140.97 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 140.97 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a5d643fb-79f3-41b4-9207-0f8be170db13") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR019") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 162.56 177.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "2e87f8fd-e101-4355-8908-1829e4161471") + (property "Reference" "#PWR024" + (at 162.56 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 162.687 182.1942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 162.56 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 162.56 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 162.56 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "96692244-a0d9-413a-b924-2d1cf148cc7c") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR024") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 201.93 82.55 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "33ced925-5051-4ed7-9375-b3264bb2d4b3") + (property "Reference" "R17" + (at 203.708 81.3816 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 203.708 83.693 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 200.152 82.55 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 201.93 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 201.93 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 201.93 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "9239235" + (at 201.93 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "KOA EUROPE GMBH" + (at 201.93 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RK73H1ETTP1001F" + (at 201.93 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 1K M1005 1% 63mW" + (at 201.93 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "125049511" + (at 201.93 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c37cfdb4-e075-458a-90b9-2fb9750c6afa") + ) + (pin "2" + (uuid "80a29dd3-dbb3-4999-a110-927476868780") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "R17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:SolderNut") + (at 257.81 113.03 0) + (unit 1) + (exclude_from_sim yes) + (in_bom yes) + (on_board no) + (dnp no) + (fields_autoplaced yes) + (uuid "3904783f-0d7f-4793-8eb1-9fe3ee2d6303") + (property "Reference" "M3" + (at 262.89 111.7599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "M.2 Solder Nut" + (at 262.89 114.2999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 257.81 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 257.81 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 257.81 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Solder nut for M.2 slot" + (at 257.81 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "M3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L") + (at 101.6 167.64 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3afee53c-6d83-4ee8-a733-62dddd2ea052") + (property "Reference" "L1" + (at 101.6 162.814 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "2.2uH" + (at 101.6 165.1254 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "CM5IO:L_Bourns_SRP5030CC" + (at 101.6 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.bourns.com/docs/product-datasheets/srp5030cc.pdf" + (at 101.6 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 101.6 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "SRP5030CC-2R2M" + (at 101.6 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Bourns" + (at 101.6 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Inductor, SMT, 2520, 2u2, IRMS=7A, ISAT=8A, DCR=0.032R" + (at 101.6 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "SRP5030CC-2R2M" + (at 101.6 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "946d2551-c3d2-4566-9244-73e5c2c02c46") + ) + (pin "2" + (uuid "6a052946-3f24-4c43-90d6-cb192b4f2f67") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "L1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 64.77 176.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3de3eb26-9d47-4a7a-8934-99d717f7d96f") + (property "Reference" "#PWR022" + (at 64.77 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 64.897 180.9242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 64.77 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 64.77 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 64.77 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "00e0af04-76b5-42fb-be63-00399747e207") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR022") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 119.38 171.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "3f72e399-75a8-4c43-bd63-30d4315362cc") + (property "Reference" "R15" + (at 121.158 170.2816 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10K 1%" + (at 121.158 172.593 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 117.602 171.45 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 119.38 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 119.38 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 119.38 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "" + (at 119.38 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Rohm" + (at 119.38 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "MCR01MZPF1002" + (at 119.38 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 10K M1005 1% 63mW" + (at 119.38 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "64724efb-1b56-481b-9a94-34ecb9e23e36") + ) + (pin "2" + (uuid "0d25fe58-1dd3-4136-b71d-526858a6980a") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "R15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 233.68 139.7 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "49cfd4a6-e2a1-4e07-9096-0f3542c131a8") + (property "Reference" "C19" + (at 236.601 138.5316 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 236.601 140.843 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" + (at 234.6452 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" + (at 233.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 233.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 233.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2611911" + (at 233.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RM EMK105 B7104KV-F" + (at 233.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "TAIYO YUDEN EUROPE GMBH" + (at 233.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "110091611" + (at 233.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" + (at 233.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c1baf9bc-ae1f-4a36-81a6-465048786f00") + ) + (pin "2" + (uuid "e086f3d8-34fd-4513-a921-93d0a4961130") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C19") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 88.9 173.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5175732d-f2ae-476a-b259-4f2485b2f1ef") + (property "Reference" "R14" + (at 90.17 175.895 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100K 1%" + (at 90.17 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 87.122 173.99 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 88.9 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 88.9 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 88.9 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "" + (at 88.9 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "MCR01MZPF1003" + (at 88.9 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Rohm" + (at 88.9 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 100K M1005 1% 63mW" + (at 88.9 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "" + (at 88.9 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f4c539de-bc1a-4b33-9180-cc85871167ab") + ) + (pin "2" + (uuid "4e8987da-8d8f-44f0-a616-6be1dcddad09") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "R14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 119.38 180.34 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "518da8b8-8528-40ea-8092-65cf642145c5") + (property "Reference" "R16" + (at 121.158 179.1716 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2.2K 1%" + (at 121.158 181.483 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" + (at 117.602 180.34 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" + (at 119.38 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 119.38 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 119.38 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "" + (at 119.38 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "" + (at 119.38 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Resistor 2.2K M1005 1% 63mW" + (at 119.38 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e8bf4dc9-8e1f-434b-9280-c08e046d520f") + ) + (pin "2" + (uuid "bd6e1f29-92d8-4492-aa70-50ce3b078dcd") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "R16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:ASEK-32.768KHZ-L-R-T") + (at 215.9 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "52312e93-13e5-46ce-8d2f-9f8d631041e0") + (property "Reference" "U7" + (at 215.9 120.015 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ASEK-32.768KHZ-L-R-T" + (at 215.9 122.555 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" + (at 217.17 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://abracon.com/Oscillators/ASEK.pdf" + (at 215.9 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 215.9 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "ASEK-32.768KHZ-L-R-T" + (at 215.9 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "ASEK-32.768KHZ-L-R-T" + (at 215.9 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "abracon" + (at 215.9 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "32KHz Xtal oscilator" + (at 215.9 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "70f6f11c-63a7-44e8-8b7f-df76451da3be") + ) + (pin "4" + (uuid "1f6153ba-6420-41d2-a79b-901c17f430b4") + ) + (pin "3" + (uuid "df1b07fc-7957-401c-8ba9-cdc7c60da99c") + ) + (pin "1" + (uuid "e44c80b6-e9af-4b4c-b09e-3508ad63877a") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "U7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 38.1 171.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "59eb5aa6-7ca6-4f1b-b057-0d4de79fcc06") + (property "Reference" "C4" + (at 41.021 170.2816 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 41.021 172.593 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 39.0652 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 38.1 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 38.1 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 38.1 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 38.1 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 38.1 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 38.1 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 38.1 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 38.1 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cfafd1af-90d8-46cc-8d21-f3d0f46f44a0") + ) + (pin "2" + (uuid "c6750fad-f235-4e26-860d-7fc2a786b7ba") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:AP3441SHE-7B") + (at 73.66 167.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5c664c96-7c36-411e-8bbd-30cfb6a7d05b") + (property "Reference" "U8" + (at 73.66 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP3441SHE-7B" + (at 73.66 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_DFN_QFN:DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm" + (at 74.93 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP3441-L.pdf" + (at 73.66 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 73.66 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "AP3441SHE-7B" + (at 73.66 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "AP3441SHE-7B" + (at 73.66 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Diodes" + (at 73.66 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "3A DC-DC converter" + (at 73.66 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "8" + (uuid "5d119044-c444-42ee-a69e-134a5302cdbc") + ) + (pin "2" + (uuid "5e880668-8841-4c57-9a2b-f1520c59d6c8") + ) + (pin "7" + (uuid "b246a20e-613d-4f15-8c74-3d32f62beb6e") + ) + (pin "4" + (uuid "15e0b33b-aa8b-41af-b3ba-3e84ccbc498b") + ) + (pin "1" + (uuid "a42d59d6-9672-4478-bd09-80c332336f91") + ) + (pin "3" + (uuid "905ad43a-b0ed-4d8a-8878-34fe58cf01b4") + ) + (pin "6" + (uuid "29a680bc-06af-4cc7-828f-6bc7f6bdc188") + ) + (pin "5" + (uuid "6a03e013-2f4e-433c-a9c9-521410fdb149") + ) + (pin "9" + (uuid "e3fce8cf-9bf4-4cca-b3bb-f57c7e9f031c") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "U8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 55.88 171.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5dfa2014-f34d-44be-9162-e0ecc482a5f0") + (property "Reference" "C10" + (at 58.801 170.2816 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 58.801 172.593 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" + (at 56.8452 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" + (at 55.88 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 55.88 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Farnell" + (at 55.88 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "2611911" + (at 55.88 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "RM EMK105 B7104KV-F" + (at 55.88 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "TAIYO YUDEN EUROPE GMBH" + (at 55.88 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "110091611" + (at 55.88 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" + (at 55.88 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bf3649ee-6c06-4953-abda-cb7012a3e139") + ) + (pin "2" + (uuid "87700fc7-eb00-47b3-8c16-963505eb448d") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 132.08 172.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "604c2dfc-65d0-41e3-9107-da96cfdf155b") + (property "Reference" "C14" + (at 135.001 171.5516 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 135.001 173.863 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 133.0452 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 132.08 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 132.08 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 132.08 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 132.08 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 132.08 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 132.08 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 132.08 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 132.08 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "72bdd7a0-9daa-4b3f-b8a1-58e59f07c11d") + ) + (pin "2" + (uuid "41a9102c-abc0-41a0-9399-eaea2f30cafc") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 38.1 176.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "6b3f6bf9-344c-419c-87d3-8db521a30ec1") + (property "Reference" "#PWR020" + (at 38.1 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 38.227 180.9242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 38.1 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 38.1 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 38.1 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e9dc263b-a168-4fa4-9ac7-f8993bf4b62d") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR020") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 88.9 177.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "85ced207-2b07-4443-87f5-a514239878a2") + (property "Reference" "#PWR08" + (at 88.9 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 89.027 182.1942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 88.9 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 88.9 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 88.9 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d086e77d-3cf0-4cb4-a735-4f70fe9348ef") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 119.38 184.15 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "89cc5f26-0360-4e40-b310-5b83f3cfe896") + (property "Reference" "#PWR016" + (at 119.38 190.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 119.507 188.5442 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 119.38 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 119.38 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 119.38 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c37e2b69-1797-46e8-9901-1298b3e7a0a5") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:M.2_Screw") + (at 260.35 142.24 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board no) + (dnp no) + (fields_autoplaced yes) + (uuid "91a6e385-8577-49eb-b867-1861d45af64f") + (property "Reference" "M1" + (at 267.97 140.9699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "M.2 Screw" + (at 267.97 143.5099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 260.35 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 260.35 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 260.35 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M.2 Screw" + (at 260.35 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "M1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 83.82 177.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "941776e4-7428-4368-abee-207de271bd46") + (property "Reference" "#PWR023" + (at 83.82 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 83.947 182.1942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 83.82 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 83.82 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 83.82 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9b42fc83-cfae-446f-b6e0-eeda880803ca") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR023") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 109.22 171.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "96e70b84-5816-4e46-b34d-08055049da47") + (property "Reference" "C11" + (at 112.141 170.2816 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7nF" + (at 112.141 172.593 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" + (at 110.1852 175.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 109.22 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 109.22 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "4.7nF capacitor 0402" + (at 109.22 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1315c287-850c-4b9e-baa6-144fa435d756") + ) + (pin "2" + (uuid "809b41b9-0002-4e7e-916f-6b0f197f7a2e") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:SolderNut") + (at 257.81 100.33 0) + (unit 1) + (exclude_from_sim yes) + (in_bom yes) + (on_board no) + (dnp no) + (fields_autoplaced yes) + (uuid "9cb03503-7593-4624-99a4-78d3c087fff9") + (property "Reference" "M4" + (at 262.89 99.0599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "M.2 Solder Nut" + (at 262.89 101.5999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 257.81 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 257.81 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 257.81 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Solder nut for M.2 slot" + (at 257.81 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "M4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 142.24 177.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ba4363bc-6240-45c0-9e50-bd531b9c58d5") + (property "Reference" "#PWR015" + (at 142.24 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 142.367 182.1942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 142.24 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 142.24 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 142.24 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6d5b328d-950c-4253-b960-c052c01b73c0") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:SolderNut") + (at 257.81 87.63 0) + (unit 1) + (exclude_from_sim yes) + (in_bom yes) + (on_board no) + (dnp no) + (fields_autoplaced yes) + (uuid "be9d4b43-843e-4249-a36f-5a0db4337599") + (property "Reference" "M5" + (at 262.89 86.3599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "M.2 Solder Nut" + (at 262.89 88.8999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 257.81 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 257.81 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 257.81 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Solder nut for M.2 slot" + (at 257.81 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "M5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 74.93 173.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c152f6ff-c78e-4aa6-88d9-e9f11f3334a3") + (property "Reference" "#PWR028" + (at 74.93 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 75.057 178.3842 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 74.93 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 74.93 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 74.93 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6ce8156e-29f2-4b39-8a77-c65420563887") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR028") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 142.24 172.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c75569f8-e083-4852-bdc3-f66c84061f35") + (property "Reference" "C15" + (at 145.161 171.5516 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 145.161 173.863 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 143.2052 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 142.24 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 142.24 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 142.24 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 142.24 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 142.24 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 142.24 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 142.24 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 142.24 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5e1fd3ca-78c4-4c28-9eeb-489941c8616d") + ) + (pin "2" + (uuid "4c80af60-eb8d-435e-a7da-f62344c0189e") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 233.68 143.51 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "cbd6bbea-b0a5-47c4-9878-cef42d28181f") + (property "Reference" "#PWR025" + (at 233.68 149.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 233.807 147.9042 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 233.68 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 233.68 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 233.68 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ccf2906c-920b-4751-aada-e64ab481715c") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR025") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:Bus_M.2_Socket_M") + (at 161.29 80.01 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d23f5dbc-759a-43d4-bd39-1b05cee6022e") + (property "Reference" "J4" + (at 138.684 32.512 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Bus_M.2_Socket_M" + (at 175.006 32.766 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "CM5IO:M.2 M Key socket" + (at 161.29 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 161.29 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "M.2 Socket 3 Mechanical Key M" + (at 161.29 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "MTSSD03-67MSW337" + (at 161.29 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "MTSSD03-67MSW337" + (at 161.29 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "MTCONN" + (at 161.29 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "M.2 M Key connector" + (at 161.29 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "dccfb4de-a1e6-403e-a8d6-a0e4aac1fb98") + ) + (pin "10" + (uuid "341fda35-39cf-4ce1-86e8-5988e170997b") + ) + (pin "11" + (uuid "c9d8e3e5-db6d-43f4-9a25-3e0216f7b208") + ) + (pin "12" + (uuid "496a6638-088b-4418-907c-ebad9c9702ec") + ) + (pin "13" + (uuid "ae72cb38-1eec-4ebb-bd44-3be409c7456d") + ) + (pin "14" + (uuid "18919edf-dcb9-456f-b7f5-3ce4b0b01464") + ) + (pin "15" + (uuid "cf5de2bc-bd5f-4889-8006-7a243fff6690") + ) + (pin "16" + (uuid "c3502382-f6c0-4df3-8e53-16e18a36363d") + ) + (pin "17" + (uuid "e6e2d4e6-6a46-4f76-a4f8-ab16af098f10") + ) + (pin "18" + (uuid "825758ac-36d2-4b56-94c0-37732edc027a") + ) + (pin "19" + (uuid "9d7d2a20-b62f-44ce-857e-dabae7aa065c") + ) + (pin "2" + (uuid "2cecda96-8fc5-40d2-a9f4-ae1444adbd06") + ) + (pin "20" + (uuid "f93f4a28-a297-44da-a293-cecf89a0b305") + ) + (pin "21" + (uuid "5fd3d554-ed83-4c24-b810-276943514cce") + ) + (pin "22" + (uuid "f9664bca-2020-4220-852d-b0d9321a2077") + ) + (pin "23" + (uuid "dca71cb7-4719-4de8-b90f-d3affcf84d61") + ) + (pin "24" + (uuid "549a76af-936f-491c-8649-e6242f08e32e") + ) + (pin "25" + (uuid "d6486005-ec54-4549-b1dc-7aad52b2c1d7") + ) + (pin "26" + (uuid "ad41891f-8a80-42c7-b727-27b8536670ab") + ) + (pin "27" + (uuid "31131cd3-5257-49be-9d32-e38d74fe807f") + ) + (pin "28" + (uuid "3be45dc1-e9dd-4d20-9088-62d24034e871") + ) + (pin "29" + (uuid "58b5d056-e739-430b-9540-a9692fb727bb") + ) + (pin "3" + (uuid "b3545195-cd78-4d04-9775-6d281b80ccf5") + ) + (pin "30" + (uuid "64c2d744-6ecc-4cfb-9fc1-1d0e1a2e98aa") + ) + (pin "31" + (uuid "412352cb-5e2e-4f55-af38-968b89fe3122") + ) + (pin "32" + (uuid "d6f84625-c5ca-4502-b7d8-d30eb87278f7") + ) + (pin "33" + (uuid "8e7e4dc3-ae83-4f97-85d0-fce85b73ed67") + ) + (pin "34" + (uuid "91efe822-534b-4bc8-873d-547d147deff9") + ) + (pin "35" + (uuid "7b378b2e-4950-423f-a7ba-8766abda2ce5") + ) + (pin "36" + (uuid "77a11cec-5da8-4958-9522-c1af14b22302") + ) + (pin "37" + (uuid "a7d34dd4-d0c1-4bf5-8992-c84da7c4326b") + ) + (pin "38" + (uuid "9c01d9c3-c31f-43f7-a5b1-9cda8a58ada0") + ) + (pin "39" + (uuid "b8837052-544c-44c9-899b-d99038e24acd") + ) + (pin "4" + (uuid "43f8ab75-4cad-4215-9397-e7f3fedd9469") + ) + (pin "40" + (uuid "817f410d-974d-4c97-b2b8-dbf67470b467") + ) + (pin "41" + (uuid "5e077c85-3ef5-46f4-92fb-33b585e45c90") + ) + (pin "42" + (uuid "f041ab97-6ff0-4edb-b323-864734e8a54f") + ) + (pin "43" + (uuid "7560f081-cac3-4ff1-b211-3754c326e51f") + ) + (pin "44" + (uuid "db303a23-faa4-4969-b427-2262b0e3ed0b") + ) + (pin "45" + (uuid "6e610de8-b066-440c-a85f-b40f4b471c52") + ) + (pin "46" + (uuid "2cb143ea-495f-4b7b-9e0d-ae4dc8152a14") + ) + (pin "47" + (uuid "f0658fd1-4029-4f3a-bdf3-26049864d8bf") + ) + (pin "48" + (uuid "186c6480-6147-4ab5-b289-7ed880ece2de") + ) + (pin "49" + (uuid "d4d3e10d-7971-4d8b-9819-737d79e5925d") + ) + (pin "5" + (uuid "610857bc-0671-4bca-adf2-b98fab2e4eef") + ) + (pin "50" + (uuid "50b1ac80-f41d-485e-9b27-0618309e0fff") + ) + (pin "51" + (uuid "92d0989a-1a9a-4339-9ead-f8a5ac6f5215") + ) + (pin "52" + (uuid "2e48434e-decc-4937-ac3f-49ee171b1b66") + ) + (pin "53" + (uuid "2de06acb-b686-4367-8eac-b95ad97e5905") + ) + (pin "54" + (uuid "d89b8364-b216-4384-9f54-4111e4178dda") + ) + (pin "55" + (uuid "f223cb8d-1e60-4a80-984b-d5a0be14182f") + ) + (pin "56" + (uuid "7dd77fb2-5377-454c-a412-9dcd1c01730d") + ) + (pin "57" + (uuid "6f366854-684f-47a6-a017-f1ce4bf04096") + ) + (pin "58" + (uuid "66e9a4ba-0ecd-48b0-9762-e6f9568f6c1f") + ) + (pin "6" + (uuid "4fcf4522-7112-43ea-a073-668b5152ac15") + ) + (pin "67" + (uuid "42c53b49-c1ae-4b57-b1ab-2dfae584abee") + ) + (pin "68" + (uuid "e2287649-fd3a-4f25-89da-678e6dffa848") + ) + (pin "69" + (uuid "7afde20f-5ef1-461f-8353-204603c8afa0") + ) + (pin "7" + (uuid "4eecdd38-33c7-4c08-a245-e19dcb0423f9") + ) + (pin "70" + (uuid "1573805a-7130-4060-bf7c-7fa8ff481fe6") + ) + (pin "71" + (uuid "2f26c7b8-99dd-4e8f-9ffe-953badd6fa04") + ) + (pin "72" + (uuid "a265392d-7a62-474b-8d7d-9af9e68b76cc") + ) + (pin "73" + (uuid "9ffcfc54-56c0-456c-b9f8-f4684519bbf8") + ) + (pin "74" + (uuid "c5297dec-1611-4059-972c-9e32806c9338") + ) + (pin "75" + (uuid "978866f9-c891-40c2-a1aa-730dfa04b5f4") + ) + (pin "8" + (uuid "8c0c9fdd-3545-4d74-adff-530bb414e929") + ) + (pin "9" + (uuid "84be935f-0185-4e1c-80cc-a068f065382e") + ) + (pin "S1" + (uuid "3b642b7d-c275-43a2-bf11-9923e1ff24f7") + ) + (pin "S2" + (uuid "4031fade-8b67-44e9-b25e-70f4071cafb0") + ) + (pin "M2" + (uuid "4f98c9b4-d244-40ff-b161-3580bc37fd23") + ) + (pin "M1" + (uuid "76938e52-0b8d-4ad2-beb1-3a61b89b78f5") + ) + (pin "M3" + (uuid "33444c48-3dc3-4586-8e06-fd4f8a74adfa") + ) + (pin "M4" + (uuid "0cdac0cb-685c-4aed-9a00-aec9cd64133a") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "J4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 55.88 176.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d62198dc-a4f4-46c2-b169-cf11dd39d658") + (property "Reference" "#PWR014" + (at 55.88 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 56.007 180.9242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 55.88 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 55.88 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 55.88 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "837db394-ffbe-4bed-b227-2e57efdc97bb") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "CM5IO:SolderNut") + (at 257.81 125.73 0) + (unit 1) + (exclude_from_sim yes) + (in_bom yes) + (on_board no) + (dnp no) + (fields_autoplaced yes) + (uuid "d724fbc1-c3ee-40a2-95fb-70b7601b787f") + (property "Reference" "M2" + (at 262.89 124.4599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "M.2 Solder Nut" + (at 262.89 126.9999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 257.81 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 257.81 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 257.81 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" "Solder nut for M.2 slot" + (at 257.81 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "M2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 162.56 172.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e09bbf7f-fc97-4ba3-a424-8e5e7046c73f") + (property "Reference" "C17" + (at 165.481 171.5516 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 165.481 173.863 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 163.5252 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" + (at 162.56 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 162.56 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 162.56 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "490-14381-1-ND" + (at 162.56 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field6" "GRM21BR71A106KA73L" + (at 162.56 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field7" "Murata" + (at 162.56 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field8" "111893011" + (at 162.56 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" + (at 162.56 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e67d528a-c90d-4cdd-810a-d09600466276") + ) + (pin "2" + (uuid "57412694-f93a-44f3-af6d-2c372efca802") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "C17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 203.2 135.89 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e5872d9c-a1dc-4943-ac40-9705a1501b75") + (property "Reference" "#PWR026" + (at 203.2 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 203.327 140.2842 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 203.2 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 203.2 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 203.2 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "73d6095e-946d-4662-bafa-4f7b900465ce") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR026") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 132.08 177.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ef957b89-d502-4c1e-86b6-6c81a6f0d72a") + (property "Reference" "#PWR017" + (at 132.08 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 132.207 182.1942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 132.08 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 132.08 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 132.08 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4f85a8f0-fa75-4f89-8d75-8f9c885dec47") + ) + (instances + (project "CM5IO" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) +) diff --git a/carrier/fp-lib-table b/carrier/fp-lib-table new file mode 100644 index 0000000..283e1ea --- /dev/null +++ b/carrier/fp-lib-table @@ -0,0 +1,4 @@ +(fp_lib_table + (version 7) + (lib (name "CM5IO")(type "KiCad")(uri "${KIPRJMOD}/CM5IO.pretty")(options "")(descr "")) +) diff --git a/carrier/sym-lib-table b/carrier/sym-lib-table new file mode 100644 index 0000000..9984a33 --- /dev/null +++ b/carrier/sym-lib-table @@ -0,0 +1,4 @@ +(sym_lib_table + (version 7) + (lib (name "CM5IO")(type "KiCad")(uri "${KIPRJMOD}/CM5IO.kicad_sym")(options "")(descr "")) +) diff --git a/datasheets/extracted/SC1466_43a9ec.json b/datasheets/extracted/SC1466_43a9ec.json new file mode 100644 index 0000000..dfc2540 --- /dev/null +++ b/datasheets/extracted/SC1466_43a9ec.json @@ -0,0 +1,1807 @@ +{ + "mpn": "SC1466", + "manufacturer": "Raspberry Pi Ltd", + "category": "module", + "package": "200-pin board-to-board (2x Amphenol 10164227, 40x55mm SoM)", + "description": "Raspberry Pi Compute Module 5 (BCM2712 SoC). 200-pin SoM, 5V input, on-module GbE PHY, PCIe Gen2 x1, 2x USB3, native USB2, 4x I2C/6x SPI/5x UART, on-module 3.3V & 1.8V regulators.", + "topology": "other", + "pins": [ + { + "number": "1", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "2", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "3", + "name": "Ethernet_Pair3_P", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "Ethernet_Pair3_P: Gigabit Ethernet differential pair (connect to magjack/transformer)." + }, + { + "number": "4", + "name": "Ethernet_Pair1_P", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "Ethernet_Pair1_P: Gigabit Ethernet differential pair (connect to magjack/transformer)." + }, + { + "number": "5", + "name": "Ethernet_Pair3_N", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "Ethernet_Pair3_N: Gigabit Ethernet differential pair (connect to magjack/transformer)." + }, + { + "number": "6", + "name": "Ethernet_Pair1_N", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "Ethernet_Pair1_N: Gigabit Ethernet differential pair (connect to magjack/transformer)." + }, + { + "number": "7", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "8", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "9", + "name": "Ethernet_Pair2_N", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "Ethernet_Pair2_N: Gigabit Ethernet differential pair (connect to magjack/transformer)." + }, + { + "number": "10", + "name": "Ethernet_Pair0_N", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "Ethernet_Pair0_N: Gigabit Ethernet differential pair (connect to magjack/transformer)." + }, + { + "number": "11", + "name": "Ethernet_Pair2_P", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "Ethernet_Pair2_P: Gigabit Ethernet differential pair (connect to magjack/transformer)." + }, + { + "number": "12", + "name": "Ethernet_Pair0_P", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "Ethernet_Pair0_P: Gigabit Ethernet differential pair (connect to magjack/transformer)." + }, + { + "number": "13", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "14", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "15", + "name": "Ethernet_nLED3", + "type": "digital", + "function": "OTHER", + "direction": "output", + "description": "Active-low Ethernet activity (1Gb/100Mb link) LED, CM5_3.3V, IOL=8mA", + "voltage_operating_max": 3.3 + }, + { + "number": "16", + "name": "Fan_Tacho", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "Fan tacho input, internal 1.8k pull-up to CM5_3.3V", + "has_internal_pullup": true + }, + { + "number": "17", + "name": "Ethernet_nLED2", + "type": "digital", + "function": "OTHER", + "direction": "output", + "description": "Active-low Ethernet speed LED, CM5_3.3V, IOL=8mA", + "voltage_operating_max": 3.3 + }, + { + "number": "18", + "name": "Ethernet_SYNC_OUT", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "IEEE1588 SYNC output (may be configured as input). CM5_3.3V signal, IOL=8mA @ VOL<0.4V. PPS path source for the carrier.", + "voltage_operating_max": 3.3 + }, + { + "number": "19", + "name": "Fan_PWM", + "type": "digital", + "function": "OTHER", + "direction": "output", + "description": "Open-drain fan PWM output" + }, + { + "number": "20", + "name": "EEPROM_nWP", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "Boot EEPROM write-protect. Float=NB pulled to CM5_3.3V via 100k; ground to write-protect. Must be LOW before power-up.", + "required_external": "Pull/strap low before power-up to write-protect boot EEPROM", + "has_internal_pullup": true + }, + { + "number": "21", + "name": "LED_nACT", + "type": "digital", + "function": "OTHER", + "direction": "output", + "description": "Active-low Pi activity LED, 20mA max, 5V tolerant (VOL<0.4V)", + "voltage_abs_max": 5.0 + }, + { + "number": "22", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "23", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "24", + "name": "GPIO26", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO26: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "25", + "name": "GPIO21", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO21: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "26", + "name": "GPIO19", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO19: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "27", + "name": "GPIO20", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO20: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "28", + "name": "GPIO13", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO13: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "29", + "name": "GPIO16", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO16: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "30", + "name": "GPIO6", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO6: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "31", + "name": "GPIO12", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO12: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "32", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "33", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "34", + "name": "GPIO5", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO5: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "35", + "name": "ID_SC", + "type": "digital", + "function": "CLK", + "direction": "bidirectional", + "description": "HAT ID EEPROM I2C clock (RP1 GPIO1)" + }, + { + "number": "36", + "name": "ID_SD", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "HAT ID EEPROM I2C data (RP1 GPIO0)" + }, + { + "number": "37", + "name": "GPIO7", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO7: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "38", + "name": "GPIO11", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO11: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "39", + "name": "GPIO8", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO8: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "40", + "name": "GPIO9", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO9: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "41", + "name": "GPIO25", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO25: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "42", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "43", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "44", + "name": "GPIO10", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO10: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "45", + "name": "GPIO24", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO24: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "46", + "name": "GPIO22", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO22: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "47", + "name": "GPIO23", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO23: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "48", + "name": "GPIO27", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO27: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "49", + "name": "GPIO18", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO18: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "50", + "name": "GPIO17", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO17: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "51", + "name": "GPIO15", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO15: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "52", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "53", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "54", + "name": "GPIO4", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO4: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "55", + "name": "GPIO14", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO14: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "56", + "name": "GPIO3", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO3: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "57", + "name": "SD_CLK", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_CLK: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "58", + "name": "GPIO2", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO2: 3.3V signal (1.8V if GPIO_VREF=CM5_1.8V). Maps to Pi 5 40-pin header.", + "voltage_operating_max": 3.3 + }, + { + "number": "59", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "60", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "61", + "name": "SD_DAT3", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_DAT3: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "62", + "name": "SD_CMD", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_CMD: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "63", + "name": "SD_DAT0", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_DAT0: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "64", + "name": "SD_DAT5", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_DAT5: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "65", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "66", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "67", + "name": "SD_DAT1", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_DAT1: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "68", + "name": "SD_DAT4", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_DAT4: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "69", + "name": "SD_DAT2", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_DAT2: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "70", + "name": "SD_DAT7", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_DAT7: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "71", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "72", + "name": "SD_DAT6", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "SD_DAT6: SD card/eMMC signal (CM5Lite only). Not used with eMMC module." + }, + { + "number": "73", + "name": "SD_VDD_OVERRIDE", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "Tie to CM5_3.3V to force SD/eMMC IO to 1.8V; else leave unconnected. CM5Lite/external-eMMC only." + }, + { + "number": "74", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "75", + "name": "SD_PWR_ON", + "type": "digital", + "function": "OTHER", + "direction": "output", + "description": "SD power-switch enable (CM5Lite only), internal 4.53k pull-up to CM5_3.3V", + "has_internal_pullup": true + }, + { + "number": "76", + "name": "VBAT", + "type": "power", + "function": "VIN", + "direction": "input", + "description": "RTC battery input 2.5-3.5V (typ 3V). CR2032 ~3yr when CM5 unpowered.", + "voltage_operating_min": 2.5, + "voltage_operating_max": 3.5, + "required_external": "CR2032 coin cell (2.5-3.5V)" + }, + { + "number": "77", + "name": "5V", + "type": "power", + "function": "VIN", + "direction": "input", + "description": "4.75-5.25V main power input. All six 5V pins must be supplied.", + "voltage_operating_min": 4.75, + "voltage_operating_max": 5.25, + "voltage_abs_max": 6.0, + "required_external": "Regulated 5V, abs max 6.0V; must rise monotonically to >=4.75V" + }, + { + "number": "78", + "name": "GPIO_VREF", + "type": "power", + "function": "VIN", + "direction": "input", + "description": "GPIO bank reference. Tie to CM5_3.3V (pins 84/86) for 3.3V signalling or CM5_1.8V (88/90) for 1.8V. Must not float.", + "voltage_abs_max": 3.6, + "required_external": "Tie to CM5_3.3V for 3.3V GPIO signalling" + }, + { + "number": "79", + "name": "5V", + "type": "power", + "function": "VIN", + "direction": "input", + "description": "4.75-5.25V main power input. All six 5V pins must be supplied.", + "voltage_operating_min": 4.75, + "voltage_operating_max": 5.25, + "voltage_abs_max": 6.0, + "required_external": "Regulated 5V, abs max 6.0V; must rise monotonically to >=4.75V" + }, + { + "number": "80", + "name": "SCL0", + "type": "digital", + "function": "CLK", + "direction": "bidirectional", + "description": "I2C0 clock (GPIO39), internal 1.8k pull-up to CM5_3.3V. Camera/display/RTC bus.", + "has_internal_pullup": true + }, + { + "number": "81", + "name": "5V", + "type": "power", + "function": "VIN", + "direction": "input", + "description": "4.75-5.25V main power input. All six 5V pins must be supplied.", + "voltage_operating_min": 4.75, + "voltage_operating_max": 5.25, + "voltage_abs_max": 6.0, + "required_external": "Regulated 5V, abs max 6.0V; must rise monotonically to >=4.75V" + }, + { + "number": "82", + "name": "SDA0", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "I2C0 data (GPIO38), internal 1.8k pull-up to CM5_3.3V.", + "has_internal_pullup": true + }, + { + "number": "83", + "name": "5V", + "type": "power", + "function": "VIN", + "direction": "input", + "description": "4.75-5.25V main power input. All six 5V pins must be supplied.", + "voltage_operating_min": 4.75, + "voltage_operating_max": 5.25, + "voltage_abs_max": 6.0, + "required_external": "Regulated 5V, abs max 6.0V; must rise monotonically to >=4.75V" + }, + { + "number": "84", + "name": "CM5_3.3V", + "type": "power", + "function": "VOUT", + "direction": "output", + "description": "3.3V +/-5% output, 300mA max per pin / 600mA total. Off during power-down or PMIC_Enable low.", + "voltage_operating_min": 3.135, + "voltage_operating_max": 3.465, + "current_max_ma": 300 + }, + { + "number": "85", + "name": "5V", + "type": "power", + "function": "VIN", + "direction": "input", + "description": "4.75-5.25V main power input. All six 5V pins must be supplied.", + "voltage_operating_min": 4.75, + "voltage_operating_max": 5.25, + "voltage_abs_max": 6.0, + "required_external": "Regulated 5V, abs max 6.0V; must rise monotonically to >=4.75V" + }, + { + "number": "86", + "name": "CM5_3.3V", + "type": "power", + "function": "VOUT", + "direction": "output", + "description": "3.3V +/-5% output, 300mA max per pin / 600mA total. Off during power-down or PMIC_Enable low.", + "voltage_operating_min": 3.135, + "voltage_operating_max": 3.465, + "current_max_ma": 300 + }, + { + "number": "87", + "name": "5V", + "type": "power", + "function": "VIN", + "direction": "input", + "description": "4.75-5.25V main power input. All six 5V pins must be supplied.", + "voltage_operating_min": 4.75, + "voltage_operating_max": 5.25, + "voltage_abs_max": 6.0, + "required_external": "Regulated 5V, abs max 6.0V; must rise monotonically to >=4.75V" + }, + { + "number": "88", + "name": "CM5_1.8V", + "type": "power", + "function": "VOUT", + "direction": "output", + "description": "1.8V +/-5% output, 300mA max per pin / 600mA total. Off during power-down or PMIC_Enable low.", + "voltage_operating_min": 1.71, + "voltage_operating_max": 1.89, + "current_max_ma": 300 + }, + { + "number": "89", + "name": "WL_nDisable", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "WiFi disable. Float=enabled (internal 1.8k pull-up to CM5_3.3V); drive low to disable on-module WiFi.", + "has_internal_pullup": true + }, + { + "number": "90", + "name": "CM5_1.8V", + "type": "power", + "function": "VOUT", + "direction": "output", + "description": "1.8V +/-5% output, 300mA max per pin / 600mA total. Off during power-down or PMIC_Enable low.", + "voltage_operating_min": 1.71, + "voltage_operating_max": 1.89, + "current_max_ma": 300 + }, + { + "number": "91", + "name": "BT_nDisable", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "Bluetooth disable. Float=enabled (internal 1.8k pull-up to CM5_3.3V); drive low to disable.", + "has_internal_pullup": true + }, + { + "number": "92", + "name": "PWR_Button", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "Power button. Pull low briefly to toggle on/off; >5s forces shutdown. Internal 10k pull-up to 5V.", + "has_internal_pullup": true + }, + { + "number": "93", + "name": "nRPIBOOT", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "Boot select. Low forces boot from RPI server (USB) bypassing eMMC. Internal 10k pull-up to CM5_3.3V. Must be low within 2ms of 5V rise to USB-boot.", + "has_internal_pullup": true, + "required_external": "Float for eMMC boot; pull/strap low (e.g. button to GND) for rpiboot/USB flashing" + }, + { + "number": "94", + "name": "CC1", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB-C CC1 PD signal; wire to USB-C connector to negotiate 5V@5A." + }, + { + "number": "95", + "name": "LED_nPWR", + "type": "digital", + "function": "OTHER", + "direction": "output", + "description": "Active-low power-on LED, 3.3V, needs buffering", + "voltage_operating_max": 3.3 + }, + { + "number": "96", + "name": "CC2", + "type": "analog", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB-C CC2 PD signal; wire to USB-C connector to negotiate 5V@5A." + }, + { + "number": "97", + "name": "CAM_GPIO0", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "Camera power control / GPIO34, 3.3V" + }, + { + "number": "98", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "99", + "name": "PMIC_Enable", + "type": "digital", + "function": "EN", + "direction": "input", + "description": "Master enable. Drive low to power off CM5; internal 100k pull-up to 5V. Power-up begins after 5V>4.75V and PMIC_EN rises.", + "has_internal_pullup": true, + "required_external": "Drive high (or strap to 5V via pull-up) to enable; low for shutdown" + }, + { + "number": "100", + "name": "CAM_GPIO1", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "GPIO35, internal 15k pull-up to CM5_3.3V", + "has_internal_pullup": true + }, + { + "number": "101", + "name": "USB_OTG_ID", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "USB OTG ID, 3.3V, internal pull-up. Ground to make CM5 a USB host (needs OS driver).", + "has_internal_pullup": true + }, + { + "number": "102", + "name": "PCIe_CLK_nREQ", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "PCIe clock request (low=request clock), 3.3V, internal pull-up", + "has_internal_pullup": true + }, + { + "number": "103", + "name": "USB_N", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "USB 2.0 D- (native high-speed PHY).", + "voltage_abs_max": 3.6 + }, + { + "number": "104", + "name": "PCIE_nWAKE", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "PCIe WAKE#, may be left unconnected, internal pull-up", + "has_internal_pullup": true + }, + { + "number": "105", + "name": "USB_P", + "type": "digital", + "function": "IO", + "direction": "bidirectional", + "description": "USB 2.0 D+ (native high-speed PHY). Used for rpiboot/eMMC flashing.", + "voltage_abs_max": 3.6 + }, + { + "number": "106", + "name": "PCIE_PWR_EN", + "type": "digital", + "function": "EN", + "direction": "output", + "description": "Active-high; low signals a PCIe device may be powered down. 3.3V" + }, + { + "number": "107", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "108", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "109", + "name": "PCIe_nRST", + "type": "digital", + "function": "RESET", + "direction": "output", + "description": "PCIe reset, active-low, 3.3V" + }, + { + "number": "110", + "name": "PCIe_CLK_P", + "type": "digital", + "function": "CLK", + "direction": "output", + "description": "PCIe 100MHz refclk + (NB AC-couple on carrier)" + }, + { + "number": "111", + "name": "VBUS_EN", + "type": "digital", + "function": "EN", + "direction": "output", + "description": "Active-high enable for USB 3.0 port power, driven by RP1 GPIO42. Gate USB-A VBUS load switches with this.", + "voltage_operating_max": 3.3 + }, + { + "number": "112", + "name": "PCIe_CLK_N", + "type": "digital", + "function": "CLK", + "direction": "output", + "description": "PCIe 100MHz refclk -" + }, + { + "number": "113", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "114", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "115", + "name": "MIPI0_D0_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_D0_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "116", + "name": "PCIe_RX_P", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "PCIe Gen2 RX +, external AC-coupling cap required", + "required_external": "Series AC-coupling cap" + }, + { + "number": "117", + "name": "MIPI0_D0_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_D0_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "118", + "name": "PCIe_RX_N", + "type": "digital", + "function": "OTHER", + "direction": "input", + "description": "PCIe Gen2 RX -, external AC-coupling cap required", + "required_external": "Series AC-coupling cap" + }, + { + "number": "119", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "120", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "121", + "name": "MIPI0_D1_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_D1_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "122", + "name": "PCIe_TX_P", + "type": "digital", + "function": "OTHER", + "direction": "output", + "description": "PCIe Gen2 TX +, AC-coupling cap included on CM5" + }, + { + "number": "123", + "name": "MIPI0_D1_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_D1_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "124", + "name": "PCIe_TX_N", + "type": "digital", + "function": "OTHER", + "direction": "output", + "description": "PCIe Gen2 TX -, AC-coupling cap included on CM5" + }, + { + "number": "125", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "126", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "127", + "name": "MIPI0_C_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_C_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "128", + "name": "USB3-0-RX_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-0-RX_N: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "129", + "name": "MIPI0_C_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_C_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "130", + "name": "USB3-0-RX_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-0-RX_P: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "131", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "132", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "133", + "name": "MIPI0_D2_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_D2_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "134", + "name": "USB3-0-DP", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-0-DP: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "135", + "name": "MIPI0_D2_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_D2_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "136", + "name": "USB3-0-DM", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-0-DM: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "137", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "138", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "139", + "name": "MIPI0_D3_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_D3_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "140", + "name": "USB3-0-TX_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-0-TX_N: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "141", + "name": "MIPI0_D3_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI0_D3_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "142", + "name": "USB3-0-TX_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-0-TX_P: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "143", + "name": "HDMI1_HOTPLUG", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_HOTPLUG: HDMI signal (dropped on this carrier)." + }, + { + "number": "144", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "145", + "name": "HDMI1_SDA", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_SDA: HDMI signal (dropped on this carrier)." + }, + { + "number": "146", + "name": "HDMI1_TX2_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_TX2_P: HDMI signal (dropped on this carrier)." + }, + { + "number": "147", + "name": "HDMI1_SCL", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_SCL: HDMI signal (dropped on this carrier)." + }, + { + "number": "148", + "name": "HDMI1_TX2_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_TX2_N: HDMI signal (dropped on this carrier)." + }, + { + "number": "149", + "name": "HDMI1_CEC", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_CEC: HDMI signal (dropped on this carrier)." + }, + { + "number": "150", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "151", + "name": "HDMI0_CEC", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_CEC: HDMI signal (dropped on this carrier)." + }, + { + "number": "152", + "name": "HDMI1_TX1_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_TX1_P: HDMI signal (dropped on this carrier)." + }, + { + "number": "153", + "name": "HDMI0_HOTPLUG", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_HOTPLUG: HDMI signal (dropped on this carrier)." + }, + { + "number": "154", + "name": "HDMI1_TX1_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_TX1_N: HDMI signal (dropped on this carrier)." + }, + { + "number": "155", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "156", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "157", + "name": "USB3-1-RX_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-1-RX_N: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "158", + "name": "HDMI1_TX0_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_TX0_P: HDMI signal (dropped on this carrier)." + }, + { + "number": "159", + "name": "USB3-1-RX_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-1-RX_P: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "160", + "name": "HDMI1_TX0_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_TX0_N: HDMI signal (dropped on this carrier)." + }, + { + "number": "161", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "162", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "163", + "name": "USB3-1-DP", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-1-DP: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "164", + "name": "HDMI1_CLK_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_CLK_P: HDMI signal (dropped on this carrier)." + }, + { + "number": "165", + "name": "USB3-1-DM", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-1-DM: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "166", + "name": "HDMI1_CLK_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI1_CLK_N: HDMI signal (dropped on this carrier)." + }, + { + "number": "167", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "168", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "169", + "name": "USB3-1-TX_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-1-TX_N: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "170", + "name": "HDMI0_TX2_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_TX2_P: HDMI signal (dropped on this carrier)." + }, + { + "number": "171", + "name": "USB3-1-TX_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "USB3-1-TX_P: USB 3.0 SuperSpeed lane (via RP1). TX pairs AC-coupled on CM5; carrier needs caps on RX." + }, + { + "number": "172", + "name": "HDMI0_TX2_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_TX2_N: HDMI signal (dropped on this carrier)." + }, + { + "number": "173", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "174", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "175", + "name": "MIPI1_D0_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_D0_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "176", + "name": "HDMI0_TX1_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_TX1_P: HDMI signal (dropped on this carrier)." + }, + { + "number": "177", + "name": "MIPI1_D0_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_D0_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "178", + "name": "HDMI0_TX1_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_TX1_N: HDMI signal (dropped on this carrier)." + }, + { + "number": "179", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "180", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "181", + "name": "MIPI1_D1_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_D1_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "182", + "name": "HDMI0_TX0_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_TX0_P: HDMI signal (dropped on this carrier)." + }, + { + "number": "183", + "name": "MIPI1_D1_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_D1_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "184", + "name": "HDMI0_TX0_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_TX0_N: HDMI signal (dropped on this carrier)." + }, + { + "number": "185", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "186", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "187", + "name": "MIPI1_C_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_C_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "188", + "name": "HDMI0_CLK_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_CLK_P: HDMI signal (dropped on this carrier)." + }, + { + "number": "189", + "name": "MIPI1_C_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_C_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "190", + "name": "HDMI0_CLK_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_CLK_N: HDMI signal (dropped on this carrier)." + }, + { + "number": "191", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "192", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "193", + "name": "MIPI1_D2_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_D2_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "194", + "name": "MIPI1_D3_N", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_D3_N: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "195", + "name": "MIPI1_D2_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_D2_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "196", + "name": "MIPI1_D3_P", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "MIPI1_D3_P: MIPI DSI/CSI differential (dropped on this carrier)." + }, + { + "number": "197", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "198", + "name": "GND", + "type": "ground", + "function": "GND", + "direction": "passive", + "description": "Ground (0 V)" + }, + { + "number": "199", + "name": "HDMI0_SDA", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_SDA: HDMI signal (dropped on this carrier)." + }, + { + "number": "200", + "name": "HDMI0_SCL", + "type": "digital", + "function": "OTHER", + "direction": "bidirectional", + "description": "HDMI0_SCL: HDMI signal (dropped on this carrier)." + } + ], + "features": { + "has_pg": false, + "has_soft_start": null, + "iss_time_us": null, + "on_module_gbe_phy": "BCM54210PE", + "soc": "BCM2712", + "rp1_io_controller": true, + "on_module_regulators": [ + "CM5_3.3V (600mA)", + "CM5_1.8V (600mA)" + ] + }, + "peripherals": { + "usb": { + "speed": "HS", + "native_phy": true, + "series_r_required": false, + "note": "Native USB2.0 HS on USB_P/USB_N (pins 103/105) for rpiboot. Two additional USB3.0 SuperSpeed ports via RP1 (USB3-0-*, USB3-1-*)." + }, + "pcie": { + "gen": 2, + "lanes": 1, + "refclk_mhz": 100, + "tx_accoupled_on_module": true, + "rx_accoupling_required_on_carrier": true + }, + "uart_count": 5, + "i2c_count": 4, + "spi_count": 6, + "gpio_count": 28 + }, + "absolute_maximum_ratings": { + "vin_max_v": 6.0, + "vin_min_v": -0.5, + "gpio_vref_max_v": 3.6, + "gpio_vref_min_v": -0.5, + "gpio_pin_max_v": "GPIO_VREF + 0.5" + }, + "recommended_operating_conditions": { + "vin_min_v": 4.75, + "vin_max_v": 5.25, + "vbat_min_v": 2.5, + "vbat_max_v": 3.5 + }, + "electrical_characteristics": { + "vil_gpio_3v3_max_v": 0.8, + "vih_gpio_3v3_min_v": 2.0, + "vil_gpio_1v8_max_v": "0.35*VREF", + "vih_gpio_1v8_min_v": "0.65*VREF", + "vol_gpio_max_v": 0.4, + "input_leakage_3v3_max_ua": 3, + "gpio_total_current_max_ma": 50, + "regulator_3v3_total_ma": 600, + "regulator_1v8_total_ma": 600, + "shutdown_current_ma": 1.3, + "idle_current_ma": 400, + "operating_current_ma": 900 + }, + "application_circuit": { + "topology": "system-on-module carrier", + "decoupling_cap": "Per CM5IO reference; bulk on 5V input", + "notes": [ + "Power-up order: 5V -> PMIC_EN -> CM5_3.3V -> CM5_1.8V (1.8V >=1ms after 3.3V).", + "Power-down: CM5_1.8V discharged before CM5_3.3V.", + "EEPROM_nWP must be low before power-up for boot-EEPROM write protection.", + "nRPIBOOT low within 2ms of 5V rise to boot via USB.", + "No external voltage may be applied to any pin while CM5 is off (reverse-voltage lockout).", + "GPIO_VREF must be tied to CM5_3.3V or CM5_1.8V and only active while CM5_1.8V is on.", + "100R differential pairs (PCIe, GbE) matched <0.05mm P/N on-module; 90R (USB3) <0.01mm." + ] + }, + "spice_specs": {}, + "extraction_metadata": { + "source_pdf": "cm5-datasheet.pdf", + "extracted_from_pages": [ + 1, + 3, + 12, + 13, + 14, + 15, + 17, + 18, + 19, + 20, + 21, + 22, + 25 + ], + "total_pdf_pages": 38, + "extraction_score": 8.7, + "score_breakdown": { + "pin_coverage": 10.0, + "voltage_ratings": 8.0, + "application_info": 8.5, + "electrical_characteristics": 10.0, + "spice_specs": 5.0 + }, + "source_pdf_hash": "sha256:80070fefd8db6e8abc6e146c8b7b5fb318ba129cc1e28826936d547fde79c863", + "extraction_date": "2026-06-24T16:39:26.264105+00:00", + "extraction_version": 2, + "retry_count": 0 + } +} \ No newline at end of file diff --git a/datasheets/extracted/manifest.json b/datasheets/extracted/manifest.json new file mode 100644 index 0000000..3b0c53e --- /dev/null +++ b/datasheets/extracted/manifest.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "last_updated": "2026-06-24T12:39:26-04:00", + "extractions": { + "SC1466_43a9ec": { + "file": "SC1466_43a9ec.json", + "mpn": "SC1466", + "category": "module", + "source_pdf": "cm5-datasheet.pdf", + "source_pdf_hash": "sha256:80070fefd8db6e8abc6e146c8b7b5fb318ba129cc1e28826936d547fde79c863", + "extraction_date": "2026-06-24T16:39:26.264105+00:00", + "extraction_score": 8.7, + "extraction_version": 2, + "pin_count": 200 + } + } +} \ No newline at end of file diff --git a/refs/.history b/refs/.history index ab8c8d6..a29df2e 160000 --- a/refs/.history +++ b/refs/.history @@ -1 +1 @@ -Subproject commit ab8c8d6b26142fb6c74fe9bed054c9025b189ca3 +Subproject commit a29df2ece6242323b2c0d01caae7c506254612bc diff --git a/tools/install-kicad-toolkit b/tools/install-kicad-toolkit new file mode 100755 index 0000000..b1cbb13 --- /dev/null +++ b/tools/install-kicad-toolkit @@ -0,0 +1,64 @@ +#!/usr/bin/env bash +# install-kicad-toolkit — install circuit_toolkit into KiCad's bundled Python +# so pcbnew-dependent builders (pcb.py) can import it. +# +# Usage: ./install-kicad-toolkit.sh +# +# This is a one-time setup. After KiCad updates, re-run to pick up changes. + +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" +PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" +TOOLKIT_SRC="$PROJECT_ROOT/kicad-claude-toolkit/python/circuit_toolkit" + +# Find KiCad Python +KICAD_APP="/Applications/KiCad/KiCad.app" +KICAD_PYTHON="${KICAD_APP}/Contents/Frameworks/Python.framework/Versions/3.9/bin/python3" + +if [ ! -x "$KICAD_PYTHON" ]; then + echo "ERROR: KiCad Python not found at $KICAD_PYTHON" >&2 + echo "Install KiCad from kicad.org, then re-run." >&2 + exit 1 +fi + +echo "KiCad Python: $KICAD_PYTHON" +echo "circuit_toolkit source: $TOOLKIT_SRC" +echo "" + +# Verify pcbnew works +echo "Checking pcbnew..." +if ! "$KICAD_PYTHON" -c "import pcbnew" 2>/dev/null; then + echo "ERROR: pcbnew not importable. Run KiCad.app at least once." >&2 + exit 1 +fi +echo " pcbnew OK" + +# Install circuit_toolkit in development mode +echo "" +echo "Installing circuit_toolkit (editable)..." +pushd "$TOOLKIT_SRC" >/dev/null +# KiCad ships Python 3.9; toolkit pyproject requires >=3.10. Use --no-build-isolation +# to bypass the version check (the code only needs 3.9 features). +"$KICAD_PYTHON" -m pip install --no-build-isolation -e . 2>&1 +echo " installed" + +# Also install optional sim deps +echo "" +echo "Installing optional sim deps (matplotlib, numpy)..." +"$KICAD_PYTHON" -m pip install matplotlib numpy 2>&1 || echo " (non-fatal: sim deps skipped)" + +# Verify +echo "" +echo "Verifying..." +"$KICAD_PYTHON" -c " +import pcbnew +import circuit_toolkit +from circuit_toolkit.core.board import Board +from circuit_toolkit.builders.pcb import build_pcb +print(f' circuit_toolkit {circuit_toolkit.__version__} OK (pcbnew {pcbnew.__file__})') +" + +echo "" +echo "Done. circuit_toolkit is now available inside KiCad's Python." +echo "Use ./tools/kicad-python to run scripts with pcbnew access." diff --git a/tools/kicad-build b/tools/kicad-build new file mode 100755 index 0000000..b044110 --- /dev/null +++ b/tools/kicad-build @@ -0,0 +1,256 @@ +#!/usr/bin/env bash +# kicad-build — orchestrator for circuit_toolkit + kicad-cli. +# +# Usage: +# ./kicad-build [--erc] [--drc] [--gerber] [--bom] [--schematic] [--sim] [--all] +# +# Steps (all are optional, --all runs everything): +# 1. circuit_toolkit build (generates .kicad_sch + .kicad_pcb) +# 2. kicad-cli sch erc (electrical rules check) +# 3. kicad-cli pcb drc (design rules check) +# 4. kicad-cli pcb export gerber/drill/position +# 5. kicad-cli sch export bom/pdf/netlist +# 6. SPICE simulation (if sim/ present) +# +# Requires: +# - KiCad.app installed (for pcbnew) +# - kicad-cli on PATH (homebrew: brew install kicad) +# - ngspice on PATH (for --sim, brew install ngspice) +# - netlistsvg on PATH (for --schematic SVG, npm install -g netlistsvg) +# - circuit_toolkit installed into KiCad's Python (run install-kicad-toolkit.sh) + +set -euo pipefail + +SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" +PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" +KICAD_PYTHON="$SCRIPT_DIR/kicad-python" +KICAD_CLI=$(command -v kicad-cli 2>/dev/null || echo "") + +# circuit_toolkit paths +TOOLKIT_SRC="$PROJECT_ROOT/kicad-claude-toolkit/python/circuit_toolkit" +TOOLKIT_PY="$TOOLKIT_SRC/circuit_toolkit" + +# Output directory (relative to board dir) +OUTPUT_DIR="" + +usage() { + echo "Usage: $0 [--erc] [--drc] [--gerber] [--bom] [--schematic] [--sim] [--all]" + echo "" + echo " --erc Run ERC on generated schematic" + echo " --drc Run DRC on generated PCB" + echo " --gerber Export Gerber + drill + position files" + echo " --bom Generate BOM (flat + JLCPCB)" + echo " --schematic Generate schematic SVG via netlistsvg" + echo " --sim Run SPICE simulations (if sim/ present)" + echo " --all Run all steps (default)" + echo " --dry-run Print planned commands without executing" + exit 1 +} + +# Parse args +BOARD_DIR="" +DO_ERC=false +DO_DRC=false +DO_GERBER=false +DO_BOM=false +DO_SCHEMATIC=false +DO_SIM=false +DO_ALL=true +DRY_RUN=false + +for arg in "$@"; do + case "$arg" in + --erc) DO_ERC=true; DO_ALL=false;; + --drc) DO_DRC=true; DO_ALL=false;; + --gerber) DO_GERBER=true; DO_ALL=false;; + --bom) DO_BOM=true; DO_ALL=false;; + --schematic) DO_SCHEMATIC=true; DO_ALL=false;; + --sim) DO_SIM=true; DO_ALL=false;; + --dry-run) DRY_RUN=true;; + -h|--help) usage;; + -*) + echo "Unknown option: $arg" >&2 + usage;; + *) + if [ -z "$BOARD_DIR" ]; then + BOARD_DIR="$arg" + else + echo "Unexpected argument: $arg" >&2 + usage + fi + ;; + esac +done + +if [ -z "$BOARD_DIR" ]; then + echo "ERROR: board directory required" >&2 + usage +fi + +BOARD_DIR="$(cd "$BOARD_DIR" && pwd)" +OUTPUT_DIR="$BOARD_DIR/output" + +if $DO_ALL; then + DO_ERC=true; DO_DRC=true; DO_GERBER=true; DO_BOM=true; DO_SCHEMATIC=true +fi + +# ── Pre-flight checks ────────────────────────────────────────────────── +check_kicad_python() { + if ! $DRY_RUN && ! bash "$KICAD_PYTHON" -c "import pcbnew" 2>/dev/null; then + echo "ERROR: pcbnew not available. Run KiCad.app at least once, then retry." >&2 + exit 1 + fi +} + +check_kicad_cli() { + if [ -z "$KICAD_CLI" ]; then + echo "ERROR: kicad-cli not on PATH. Install via: brew install kicad" >&2 + exit 1 + fi +} + +# ── Step 1: circuit_toolkit build ────────────────────────────────────── +step_build() { + local build_script="$BOARD_DIR/build.py" + if [ ! -f "$build_script" ]; then + echo "SKIP build: no build.py in $BOARD_DIR" + return 0 + fi + echo "=== Step 1: circuit_toolkit build ===" + if $DRY_RUN; then + echo " [dry-run] KiCad Python $KICAD_PYTHON" + echo " [dry-run] cd $BOARD_DIR && $KICAD_PYTHON build.py" + return 0 + fi + mkdir -p "$OUTPUT_DIR" + pushd "$BOARD_DIR" >/dev/null + PYTHONPATH="$TOOLKIT_SRC:$PYTHONPATH" \ + bash "$KICAD_PYTHON" build.py + popd >/dev/null + echo " -> $OUTPUT_DIR/" +} + +# ── Step 2: ERC ──────────────────────────────────────────────────────── +step_erc() { + local sch="$BOARD_DIR/*.kicad_sch" + sch=$(ls $sch 2>/dev/null | head -1 || true) + if [ -z "$sch" ]; then + echo "SKIP ERC: no .kicad_sch found" + return 0 + fi + echo "=== Step 2: ERC ===" + if $DRY_RUN; then + echo " [dry-run] $KICAD_CLI sch erc $sch" + return 0 + fi + mkdir -p "$OUTPUT_DIR/erc" + $KICAD_CLI sch erc "$sch" --output "$OUTPUT_DIR/erc/erc_report.txt" 2>&1 || true + echo " -> $OUTPUT_DIR/erc/" +} + +# ── Step 3: DRC ──────────────────────────────────────────────────────── +step_drc() { + local pcb="$BOARD_DIR/*.kicad_pcb" + pcb=$(ls $pcb 2>/dev/null | head -1 || true) + if [ -z "$pcb" ]; then + echo "SKIP DRC: no .kicad_pcb found" + return 0 + fi + echo "=== Step 3: DRC ===" + if $DRY_RUN; then + echo " [dry-run] $KICAD_CLI pcb drc $pcb" + return 0 + fi + mkdir -p "$OUTPUT_DIR/drc" + $KICAD_CLI pcb drc "$pcb" --output "$OUTPUT_DIR/drc/drc_report.html" 2>&1 || true + echo " -> $OUTPUT_DIR/drc/" +} + +# ── Step 4: Gerber/Drill/Position export ────────────────────────────── +step_gerber() { + local pcb="$BOARD_DIR/*.kicad_pcb" + pcb=$(ls $pcb 2>/dev/null | head -1 || true) + if [ -z "$pcb" ]; then + echo "SKIP gerber: no .kicad_pcb found" + return 0 + fi + echo "=== Step 4: Gerber + Drill + Position export ===" + if $DRY_RUN; then + echo " [dry-run] $KICAD_CLI pcb export gerbers $pcb --output $OUTPUT_DIR/fab/gerber" + return 0 + fi + mkdir -p "$OUTPUT_DIR/fab/gerber" + $KICAD_CLI pcb export gerbers "$pcb" --output "$OUTPUT_DIR/fab/gerber" 2>&1 + $KICAD_CLI pcb export drill "$pcb" --output "$OUTPUT_DIR/fab/gerber" 2>&1 + $KICAD_CLI pcb export pos "$pcb" --output "$OUTPUT_DIR/fab/positions.csv" 2>&1 + echo " -> $OUTPUT_DIR/fab/" +} + +# ── Step 5: BOM + schematic PDF + netlist ───────────────────────────── +step_bom() { + local sch="$BOARD_DIR/*.kicad_sch" + sch=$(ls $sch 2>/dev/null | head -1 || true) + if [ -z "$sch" ]; then + echo "SKIP bom: no .kicad_sch found" + return 0 + fi + echo "=== Step 5: BOM + schematic PDF + netlist ===" + if $DRY_RUN; then + echo " [dry-run] $KICAD_CLI sch export bom $sch --output $OUTPUT_DIR/fab" + return 0 + fi + mkdir -p "$OUTPUT_DIR/fab" + $KICAD_CLI sch export bom "$sch" --output "$OUTPUT_DIR/fab" 2>&1 + $KICAD_CLI sch export pdf "$sch" --output "$OUTPUT_DIR/schematic.pdf" 2>&1 + $KICAD_CLI sch export "$sch" --format netlist --output "$OUTPUT_DIR/fab/netlist.xml" 2>&1 + echo " -> $OUTPUT_DIR/fab/" +} + +# ── Step 6: SPICE simulation ────────────────────────────────────────── +step_sim() { + if [ ! -d "$BOARD_DIR/sim" ]; then + echo "SKIP sim: no sim/ directory" + return 0 + fi + echo "=== Step 6: SPICE simulation ===" + if $DRY_RUN; then + echo " [dry-run] ngspice -b $BOARD_DIR/sim/*.cir" + return 0 + fi + if ! command -v ngspice &>/dev/null; then + echo "SKIP sim: ngspice not on PATH (brew install ngspice)" + return 0 + fi + mkdir -p "$OUTPUT_DIR/sim" + for cir in "$BOARD_DIR"/sim/*.cir; do + echo " sim: $(basename "$cir")" + ngspice -b -r "$OUTPUT_DIR/sim/$(basename "$cir" .cir).raw" "$cir" 2>&1 || true + done + echo " -> $OUTPUT_DIR/sim/" +} + +# ── Run ──────────────────────────────────────────────────────────────── +echo "kicad-build: $BOARD_DIR" +echo " KiCad Python: $KICAD_PYTHON" +echo " kicad-cli: $KICAD_CLI" +echo " output: $OUTPUT_DIR" +echo "" + +check_kicad_python +if [ -n "$KICAD_CLI" ]; then + : # ok +else + echo "WARNING: kicad-cli not found (ERC/DRC/gerber/bom will be skipped)" +fi + +step_build +$DO_ERC && step_erc +$DO_DRC && step_drc +$DO_GERBER && step_gerber +$DO_BOM && step_bom +$DO_SIM && step_sim + +echo "" +echo "=== Done ===" +echo "Output: $OUTPUT_DIR/" +ls -la "$OUTPUT_DIR/" 2>/dev/null || true diff --git a/tools/kicad-python b/tools/kicad-python new file mode 100755 index 0000000..4e05679 --- /dev/null +++ b/tools/kicad-python @@ -0,0 +1,44 @@ +#!/usr/bin/env bash +# kicad-python — launcher for KiCad's bundled Python with pcbnew available. +# +# Usage: +# ./kicad-python [args...] +# ./kicad-python -c "import pcbnew; ..." +# ./kicad-python -m circuit_toolkit.build my-board/ +# +# Detects KiCad.app on macOS, KiCad on Linux, or KiCad Flatpak. +# Exits non-zero if KiCad Python is not found. + +set -euo pipefail + +KICAD_APP="/Applications/KiCad/KiCad.app" +KICAD_PYTHON="${KICAD_APP}/Contents/Frameworks/Python.framework/Versions/3.9/bin/python3" + +# Try Flatpak install +if [ -x "/var/lib/flatpak/app/org.kicad.KiCad" ] || command -v flatpak &>/dev/null; then + FLATPAK_PYTHON=$(flatpak run --command=python3 org.kicad.KiCad 2>/dev/null || true) + if [ -n "$FLATPAK_PYTHON" ]; then + KICAD_PYTHON="$FLATPAK_PYTHON" + fi +fi + +# Try Linux install +if [ ! -x "$KICAD_PYTHON" ]; then + for candidate in \ + /opt/kicad/bin/python3 \ + /usr/bin/kicad-python \ + /usr/bin/python3; do + if "$candidate" -c "import pcbnew" 2>/dev/null; then + KICAD_PYTHON="$candidate" + break + fi + done +fi + +if [ ! -x "$KICAD_PYTHON" ]; then + echo "ERROR: KiCad Python not found at $KICAD_PYTHON" >&2 + echo "Install KiCad (kicad.org) or a Flatpak, then re-run." >&2 + exit 1 +fi + +exec "$KICAD_PYTHON" "$@" diff --git a/tools/retire_block.py b/tools/retire_block.py new file mode 100644 index 0000000..55cae1e --- /dev/null +++ b/tools/retire_block.py @@ -0,0 +1,266 @@ +#!/usr/bin/env python3 +"""retire_block.py — remove a circuit block from a CM5-carrier KiCad sheet cleanly. + +For the diff-from-reference port (see .claude/skills/kicad-port). Given a sheet and a +set of reference designators to drop plus the net-name globs they own, this: + 1. excises each named (symbol ...) block (paren-matched, by Reference property), + 2. floods the retired nets from their (label ...) coords through (wire ...) segments, + 3. removes those labels + every wire in the flooded nets, + 4. places (no_connect ...) markers on the exposed module pins that sat on those nets, + 5. writes back only if parentheses stay balanced. + +Module pin coordinates are computed from the lib_symbol pin locals + the placement +transform (validated abs = origin + (lx, -ly) for rot0/no-mirror; other orientations +are rejected rather than guessed). Idempotent-ish: re-running finds nothing to do. + +Usage: + python3 tools/retire_block.py \ + --symbols J7,U18 --nets 'SD_*' \ + --module-lib CM5IO:ComputeModule5-CM5 [--apply] +Without --apply it's a dry run (prints the plan, writes nothing). +""" +import re, sys, argparse, fnmatch, math, uuid as uuidlib + +S = r'\s*' + +def xform(px, py, rot, mirror, lx, ly): + """Schematic abs coord of a lib pin local (lx,ly) for a placement. Validated: + mirror, then CCW rotate, then lib-Y-up -> schematic-Y-down flip.""" + X, Y = lx, ly + if mirror == 'y': X = -X + if mirror == 'x': Y = -Y + r = math.radians(rot) + rx = X * math.cos(r) - Y * math.sin(r) + ry = X * math.sin(r) + Y * math.cos(r) + return (round(px + rx, 2), round(py - ry, 2)) + +def paren_end(t, s): + d = 0 + for i in range(s, len(t)): + if t[i] == '(': d += 1 + elif t[i] == ')': + d -= 1 + if d == 0: return i + 1 + raise ValueError("unbalanced from offset %d" % s) + +def fnum(x): return round(float(x), 2) + +def find_symbol_blocks(t): + """Yield (start,end,reference) for every placed (symbol (lib_id ...)) block.""" + for m in re.finditer(r'\(symbol' + S + r'\(lib_id' + S + r'"', t): + s = m.start(); e = paren_end(t, s); seg = t[s:e] + ref = re.search(r'\(property' + S + r'"Reference"' + S + r'"([^"]+)"', seg) + if ref: yield (s, e, ref.group(1)) + +def module_pins_abs(t, module_lib): + """Compute {pin_number:(x,y)} for the placed module instance on this sheet.""" + inst = re.search(r'\(symbol' + S + r'\(lib_id' + S + r'"' + re.escape(module_lib) + r'"\)(.{0,500}?)\(unit' + S + r'(\d+)\)', t, re.S) + if not inst: return {}, None + body, unit = inst.group(1), inst.group(2) + at = re.search(r'\(at' + S + r'([\d.-]+)' + S + r'([\d.-]+)' + S + r'([\d.-]+)\)', body) + mir = re.search(r'\(mirror' + S + r'(\w+)\)', body) + px, py, rot = float(at.group(1)), float(at.group(2)), float(at.group(3)) + if rot != 0 or mir: + sys.exit(f"REFUSING: module instance has rot={rot} mirror={mir and mir.group(1)} — transform only validated for rot0/no-mirror.") + libname = module_lib.split(':')[-1] + pins = {} + for pm in re.finditer(r'\(pin\b.*?\(at' + S + r'([\d.-]+)' + S + r'([\d.-]+)' + S + r'[\d.-]+\).*?\(number' + S + r'"([^"]+)"', t, re.S): + lx, ly, num = float(pm.group(1)), float(pm.group(2)), pm.group(3) + pins.setdefault(num, (round(px + lx, 2), round(py - ly, 2))) + return pins, unit + +def collect(t, pat): + """Return list of (start,end,coord,text) for top-level objects named `pat` token.""" + out = [] + for m in re.finditer(r'\(' + pat + r'\b', t): + s = m.start(); e = paren_end(t, s); seg = t[s:e] + at = re.search(r'\(at' + S + r'([\d.-]+)' + S + r'([\d.-]+)', seg) + out.append((s, e, (fnum(at.group(1)), fnum(at.group(2))) if at else None, seg)) + return out + +def wire_pts(seg): + return [(fnum(a), fnum(b)) for a, b in re.findall(r'\(xy' + S + r'([\d.-]+)' + S + r'([\d.-]+)\)', seg)] + +def lib_pins(t, lib_id): + """Local (lx,ly,angle) for every pin of a lib_symbol definition.""" + name = lib_id.split(':')[-1] + lm = re.search(r'\(symbol' + S + r'"' + re.escape(lib_id) + r'"', t) or \ + re.search(r'\(symbol' + S + r'"' + re.escape(name) + r'"', t) + if not lm: return [] + seg = t[lm.start():paren_end(t, lm.start())] + return [(float(a), float(b), float(c)) for a, b, c in + re.findall(r'\(pin\b.*?\(at' + S + r'([\d.-]+)' + S + r'([\d.-]+)' + S + r'([\d.-]+)\)', seg, re.S)] + +def placed_symbols(t): + """Yield dict per placed symbol: start,end,ref,lib,at(px,py,rot),mirror.""" + for m in re.finditer(r'\(symbol' + S + r'\(lib_id' + S + r'"([^"]+)"\)', t): + s = m.start(); e = paren_end(t, s); seg = t[s:e] + ref = re.search(r'\(property' + S + r'"Reference"' + S + r'"([^"]+)"', seg) + at = re.search(r'\(at' + S + r'([\d.-]+)' + S + r'([\d.-]+)' + S + r'([\d.-]+)\)', seg) + mir = re.search(r'\(mirror' + S + r'(\w+)\)', seg) + yield dict(s=s, e=e, ref=ref.group(1) if ref else None, lib=m.group(1), + at=(float(at.group(1)), float(at.group(2)), float(at.group(3))) if at else None, + mirror=mir.group(1) if mir else None) + +def sym_pin_coords(t, sym): + if not sym['at']: return [] + px, py, rot = sym['at'] + return [xform(px, py, rot, sym['mirror'], lx, ly) for lx, ly, _ in lib_pins(t, sym['lib'])] + +def sheet_port_spans(t, names): + """On a ROOT sheet, find (pin "NAME" ...) hierarchical ports inside (sheet ...) blocks + whose name is in `names`. Returns (pin spans to remove, their connection coords).""" + spans, coords = [], set() + for m in re.finditer(r'\(sheet\b', t): + s = m.start(); e = paren_end(t, s) + for pm in re.finditer(r'\(pin' + S + r'"([^"]+)"', t[s:e]): + if pm.group(1) in names: + ps = s + pm.start(); pe = paren_end(t, ps) + at = re.search(r'\(at' + S + r'([\d.-]+)' + S + r'([\d.-]+)', t[ps:pe]) + spans.append((ps, pe)) + if at: coords.add((fnum(at.group(1)), fnum(at.group(2)))) + return spans, coords + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument('sheet') + ap.add_argument('--symbols', default='') + ap.add_argument('--nets', default='') + ap.add_argument('--nc-pins', default='', help='module pin NUMBERS to no-connect (from analyzer regressions)') + ap.add_argument('--sheet-ports', default='', help='hierarchical net names: remove matching sheet-symbol pins + connecting root wires (run on the ROOT sheet)') + ap.add_argument('--module-lib', default='CM5IO:ComputeModule5-CM5') + ap.add_argument('--apply', action='store_true') + a = ap.parse_args() + drop_refs = set(filter(None, a.symbols.split(','))) + net_globs = list(filter(None, a.nets.split(','))) + nc_nums = list(filter(None, a.nc_pins.split(','))) + port_names = set(filter(None, a.sheet_ports.split(','))) + t = open(a.sheet).read() + + modpins, unit = module_pins_abs(t, a.module_lib) + pin_at = {xy: n for n, xy in modpins.items()} + nc_pins = [(n, modpins[n]) for n in nc_nums if n in modpins] + missing_nc = [n for n in nc_nums if n not in modpins] + if missing_nc: sys.exit(f"NC pins not found on module: {missing_nc}") + + # 1) symbols to remove + their abs pin coords (for stub cleanup) + placed = list(placed_symbols(t)) + removed_syms = [sy for sy in placed if sy['ref'] in drop_refs] + found_refs = {sy['ref'] for sy in removed_syms} + sym_spans = [(sy['s'], sy['e']) for sy in removed_syms] + removed_pin_coords = set() + for sy in removed_syms: + removed_pin_coords |= set(sym_pin_coords(t, sy)) + + # 2) retired labels by glob — match ANY label type (local / hierarchical / global) + labels = collect(t, 'label') + collect(t, 'hierarchical_label') + collect(t, 'global_label') + retired_labels = [(s, e, c) for s, e, c, seg in labels + for nm in [re.search(r'"([^"]+)"', seg).group(1)] + if any(fnmatch.fnmatch(nm, g) for g in net_globs)] + retired_coords = {c for _, _, c in retired_labels} + + # 3) anchor-aware wire removal via connected components. + # A wire is removed only if its component (a) is orphaned by THIS edit (touches a + # removed pin, retired label, or target NC pin) AND (b) reaches no KEPT anchor — + # a kept non-power component pin or a kept label. Shared nets (e.g. a camera FFC's + # I2C/power pins) stay anchored by the kept side, so they survive; pre-existing + # floating wires aren't seeded, so they're untouched. + wires = collect(t, 'wire') + wpts = [(s, e, wire_pts(seg)) for s, e, _, seg in wires] + parent = {} + def find(x): + parent.setdefault(x, x) + root = x + while parent[root] != root: root = parent[root] + while parent[x] != root: parent[x], x = root, parent[x] + return root + def union(a, b): parent[find(a)] = find(b) + for s, e, pts in wpts: + for p in pts[1:]: + union(pts[0], p) + + nc_coords = {xy for _, xy in nc_pins} + kept_label_coords = {c for s, e, c, seg in labels + if not any(fnmatch.fnmatch(re.search(r'"([^"]+)"', seg).group(1), g) + for g in net_globs)} + kept_pin_coords = set() + for sy in placed: + if sy['ref'] in drop_refs or sy['lib'].startswith('power:'): continue + kept_pin_coords |= set(sym_pin_coords(t, sy)) + kept_pin_coords -= nc_coords # pins we are NC'ing are being disconnected + anchors = kept_pin_coords | kept_label_coords + # sheet-symbol hierarchical ports to drop (root sheet) + their connection coords + port_spans, port_coords = sheet_port_spans(t, port_names) if port_names else ([], set()) + seeds = set(removed_pin_coords) | set(retired_coords) | nc_coords | port_coords + + anchored_roots, seeded_roots = set(), set() + for c in anchors: + if c in parent: anchored_roots.add(find(c)) + for c in seeds: + if c in parent: seeded_roots.add(find(c)) + removable_roots = seeded_roots - anchored_roots + wire_remove = [(s, e, pts) for s, e, pts in wpts if find(pts[0]) in removable_roots] + wire_remove_spans = {(s, e) for s, e, _ in wire_remove} + freed = set(removed_pin_coords) + for _, _, pts in wire_remove: + freed |= set(pts) + kept_wire_pts = set() + for s, e, pts in wpts: + if (s, e) not in wire_remove_spans: + kept_wire_pts |= set(pts) + flooded_wires = wire_remove # naming compat for the summary print + stub_wires = [] + + # 5) orphaned power flags (power:*): pin freed by my edit, no kept wire left on it + power_spans = [] + for sy in placed: + if sy['ref'] in drop_refs or not sy['lib'].startswith('power:'): continue + pcs = sym_pin_coords(t, sy) + if pcs and all(pc in freed and pc not in kept_wire_pts for pc in pcs): + power_spans.append((sy['s'], sy['e'])) + + # 6) dangling no_connects sitting on a removed symbol's pin + dangling_nc = [(s, e) for s, e, c, _ in collect(t, 'no_connect') if c in removed_pin_coords] + + # 7) labels orphaned by my edit (any label type): coord freed, no kept wire left, + # not already retired. Covers local (label), and cross-sheet (hierarchical_label / + # global_label) that only fed a removed connector (e.g. a camera FFC's SCL0/CAM_GPIO). + retired_label_spans = {(s, e) for s, e, _ in retired_labels} + all_label_objs = collect(t, 'label') + collect(t, 'hierarchical_label') + collect(t, 'global_label') + orphan_labels = [(s, e) for s, e, c, _ in all_label_objs + if (s, e) not in retired_label_spans and c in freed and c not in kept_wire_pts] + + nc_pins = sorted(nc_pins, key=lambda kv: int(re.sub(r'\D', '', kv[0]) or 0)) + print(f"sheet: {a.sheet} (module unit {unit}, {len(modpins)} pins)") + print(f"symbols to remove: {sorted(found_refs)} (requested {sorted(drop_refs)}; missing {sorted(drop_refs-found_refs)})") + print(f"retired-net labels: {len(retired_labels)} | wires removed (anchor-aware): {len(wire_remove)}") + print(f"orphaned power flags: {len(power_spans)} | dangling NC removed: {len(dangling_nc)} | orphaned labels: {len(orphan_labels)}") + if port_names: print(f"sheet-symbol ports removed: {len(port_spans)} ({sorted(port_names)})") + print(f"module pins to NC ({len(nc_pins)}): " + ", ".join(f"{n}@{xy}" for n, xy in nc_pins)) + + # build new text: remove all spans, then append fresh no_connects on exposed module pins + spans = sorted(set(sym_spans) | {(s, e) for s, e, _ in retired_labels} + | wire_remove_spans | set(power_spans) | set(dangling_nc) | set(orphan_labels) + | set(port_spans), key=lambda x: -x[0]) + nt = t + for s, e in spans: + p = s + while p > 0 and nt[p-1] in '\t ': p -= 1 + if p > 0 and nt[p-1] == '\n': p -= 1 + nt = nt[:p] + nt[e:] + # insert no_connect markers before the final closing paren of the sheet + nc_block = "".join( + f'\t(no_connect\n\t\t(at {xy[0]} {xy[1]})\n\t\t(uuid "{uuidlib.uuid5(uuidlib.NAMESPACE_DNS, a.sheet+n)}")\n\t)\n' + for n, xy in nc_pins) + last = nt.rstrip().rfind(')') + nt = nt[:last] + nc_block + nt[last:] + assert nt.count('(') == nt.count(')'), "UNBALANCED — aborting" + + if a.apply: + open(a.sheet, 'w').write(nt) + print(f"APPLIED. parens balanced ({nt.count('(')}). +{len(nc_pins)} no_connect, -{len(spans)} objects.") + else: + print(f"DRY RUN ok. parens would balance ({nt.count('(')}). Re-run with --apply to write.") + +if __name__ == '__main__': + main() From 1d169476fbd5c54bd620798094f374ee8f25c72c Mon Sep 17 00:00:00 2001 From: noise Date: Tue, 30 Jun 2026 11:27:41 -0400 Subject: [PATCH 02/16] Strip PCIe-M2 (M-key/NVMe) sheet; re-baseline stripped carrier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drops the unused M.2 M-key/NVMe block — design is 1x M.2 E-key (Wi-Fi) only, since the CM5 exposes a single PCIe x1 lane (datasheet SC1466), reserved for the E-key. The 10 freed PCIE_* lanes are NC on Module1 unit 2, to be rewired to a fresh E-key sheet in the add phase. - CM5_HighSpeed: retire PCIE_* labels/wires, NC pins 102,104,106,109, 110,112,116,118,122,124 - root CM5IO: drop whole PCIe-M2 (sheet) block; strip dangling PCIE_* pins off the kept CM5_HighSpeed sheet symbol - delete carrier/PCIe-M2.kicad_sch; clean .kicad_pro sheets array + ERC exclusion - retire_block.py: add --drop-sheet FILE (remove whole (sheet) block + sheet_instances path) - analysis/baseline/carrier_stripped.json: new add-phase diff anchor Verify: ERC 136->133 (zero new violation types); analyzer diff +0/~0 (cumulative -41 removed vs original ref); netlist confirms +5v/+3.3v/ GND/+1.8v intact (U8's M2_3v3 was a local rail, not board +3.3v). Co-Authored-By: Claude Opus 4.8 (1M context) --- PORT_STATUS.md | 10 +- analysis/baseline/carrier_stripped.json | 70876 ++++++++++++++++++++++ carrier/CM5IO.kicad_pro | 5 - carrier/CM5IO.kicad_sch | 349 - carrier/CM5_HighSpeed.kicad_sch | 260 +- carrier/PCIe-M2.kicad_sch | 7933 --- tools/retire_block.py | 24 +- 7 files changed, 70945 insertions(+), 8512 deletions(-) create mode 100644 analysis/baseline/carrier_stripped.json delete mode 100644 carrier/PCIe-M2.kicad_sch diff --git a/PORT_STATUS.md b/PORT_STATUS.md index 7451cda..b73046a 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -62,13 +62,16 @@ Usage: `python3 tools/retire_block.py --symbols J7,U18 --nets 'SD_*' --n **Known gap (next improvement):** does NOT auto-prune orphaned power-label/wire *stubs* left after a connector is removed (e.g. leftover `+3.3v`/`HDMI_5v` labels). Those were cleaned manually — see git history. -## Strip phase — DONE (microSD + HDMI + MIPI), ERC 182 → 136, 0 new violations, 0 regressions +## Strip phase — DONE (microSD + HDMI + MIPI + PCIe-M2), ERC 182 → 133, 0 new violations, 0 regressions | Block | Sheet(s) | Command(s) (run with `--apply`) | |---|---|---| | **microSD** | CM5_GPIO | `--symbols J7,U18,C5 --nets 'SD_*' --nc-pins 57,61,62,63,67,69,75` | | **HDMI** | CM5_HighSpeed | `--symbols J22,J10 --nets 'HDMI0_*,HDMI1_*,HDMI_5v' --nc-pins 143,145,146,147,148,149,151,152,153,154,158,160,164,166,170,172,176,178,182,184,188,190,199,200` | | **MIPI/camera** | CM5_HighSpeed, CM5_GPIO, CM5IO(root) | (1) HighSpeed `--symbols J5,J16 --nets 'DPHY0_*,DPHY1_*,SCL1,SDA1' --nc-pins 115,117,121,123,127,129,133,135,139,141,175,177,181,183,187,189,193,194,195,196` (2) GPIO `--nc-pins 80,82,97,100` (3) root `--sheet-ports SCL0,SDA0,CAM_GPIO0,CAM_GPIO1` (4) HighSpeed `--symbols R8 --nets 'SCL0,SDA0'` (5) manual: remove 3 orphaned +3.3v labels + 2 wire stubs | +| **PCIe-M2 (M-key/NVMe)** | CM5_HighSpeed, CM5IO(root), `.kicad_pro` | (1) HighSpeed `--nets 'PCIE_*' --nc-pins 102,104,106,109,110,112,116,118,122,124` (2) root `--drop-sheet PCIe-M2.kicad_sch` (3) root `--sheet-ports PCIE_CLK_P,PCIE_CLK_N,PCIE_TX_P,PCIE_TX_N,PCIE_nRST,PCIE_RX_P,PCIE_RX_N,PCIE_nCLKREQ,PCIE_PWR_EN,PCIE_nWAKE` (strip dangling HighSpeed sheet-symbol pins) (4) `git rm carrier/PCIe-M2.kicad_sch` (5) manual: remove PCIe-M2 entry from `.kicad_pro` `sheets` array + its ERC exclusion. **Design confirmed: 1× M.2 E-key (Wi-Fi) only, 0× M-key SSD** — the single CM5 PCIe ×1 lane is reserved for the E-key; the freed `PCIE_*` lanes (now NC on Module1 unit 2) will be rewired to the fresh E-key sheet in the add phase. | + +**`retire_block.py` gained `--drop-sheet FILE`**: removes the whole `(sheet …)` block by Sheetfile + its `sheet_instances` path (run on the parent sheet). `.kicad_pro` `sheets`-array + ERC-exclusion cleanup is still manual (next tool gap). Notes that bit us (don't re-learn the hard way): - **MIPI lanes are labeled `DPHY0_*`/`DPHY1_*`, NOT `MIPI*`.** The connectors J5/J16 are camera FFCs @@ -80,10 +83,9 @@ Notes that bit us (don't re-learn the hard way): ## Next steps -1. **Drop the PCIe-M2 sheet entirely** (NVMe M-key — not used; the M.2 **E-key** Wi-Fi will be a - FRESH sheet in the add phase, per design decision). Use `--sheet-ports` for its root hierarchical pins. +1. ~~Drop the PCIe-M2 sheet entirely~~ **DONE** (see strip table). Confirmed E-key-only (no M-key SSD). 2. **Re-baseline**: capture a new analyzer baseline of `carrier/` so the add phase diffs against the - stripped design, not the original reference. + stripped design, not the original reference. (`analyze_schematic.py carrier/CM5IO.kicad_sch -o analysis/baseline/carrier_stripped.json`) 3. **Add phase**: 15V→5V buck front-end (reverse-protection + TVS), M.2 E-key (PCIe Gen2 ×1 + CLKREQ/PERST/RF_KILL + 3.3V), GPS connector, PPS distribution (GPS PPS → TVS → Schmitt buffer → fan-out: CM5 `Ethernet_SYNC_OUT` + 2 header taps). SPICE-validate the buck divider + PPS network. diff --git a/analysis/baseline/carrier_stripped.json b/analysis/baseline/carrier_stripped.json new file mode 100644 index 0000000..d5d938e --- /dev/null +++ b/analysis/baseline/carrier_stripped.json @@ -0,0 +1,70876 @@ +{ + "analyzer_type": "schematic", + "schema_version": "1.3.0", + "summary": { + "total_findings": 36, + "by_severity": { + "error": 1, + "warning": 7, + "info": 28 + } + }, + "trust_summary": { + "total_findings": 36, + "trust_level": "high", + "by_confidence": { + "deterministic": 29, + "heuristic": 7, + "datasheet-backed": 0 + }, + "by_evidence_source": { + "datasheet": 0, + "topology": 34, + "heuristic_rule": 0, + "symbol_footprint": 0, + "bom": 2, + "geometry": 0, + "api_lookup": 0 + }, + "provenance_coverage_pct": 94.4, + "bom_coverage": { + "total_components": 24, + "with_mpn": 0, + "with_datasheet": 20, + "mpn_pct": 0.0, + "datasheet_pct": 83.3 + } + }, + "file": "/Users/noise/Documents/obsidian/rpiboard/carrier/CM5IO.kicad_sch", + "kicad_version": "8.0", + "file_version": "20231120", + "title_block": { + "title": "Compute Module 5 IO Board - Top Level", + "rev": "1", + "company": "Copyright \u00a9 2024 Raspberry Pi Ltd.", + "comment_1": "www.raspberrypi.com" + }, + "statistics": { + "total_components": 48, + "unique_parts": 24, + "dnp_parts": 0, + "total_nets": 164, + "total_wires": 410, + "total_no_connects": 74, + "component_types": { + "mounting_hole": 8, + "capacitor": 9, + "connector": 8, + "resistor": 10, + "ic": 6, + "other": 1, + "led": 2, + "test_point": 2, + "battery": 1, + "switch": 1 + }, + "power_rails": [ + { + "name": "+1.8v", + "voltage": 1.8 + }, + { + "name": "+3.3v", + "voltage": 3.3 + }, + { + "name": "+5v", + "voltage": 5.0 + }, + { + "name": "GND", + "voltage": null + }, + { + "name": "PWR_BUT", + "voltage": null + }, + { + "name": "VBAT", + "voltage": null + }, + { + "name": "VBUS", + "voltage": null + }, + { + "name": "VBUS_EN", + "voltage": null + } + ], + "missing_mpn": [ + "C18", + "J11", + "R9", + "C9", + "U5", + "Module1", + "C1", + "J9", + "J8", + "R2", + "R3", + "D2", + "R1", + "D1", + "R10", + "U2", + "R5", + "J2", + "U1", + "BT1", + "U3", + "J14", + "SW1", + "R6", + "R7", + "C13", + "C12", + "U12", + "J6", + "C7", + "C3", + "R12", + "C8", + "U6", + "J12", + "C2" + ], + "missing_footprint": [] + }, + "findings": [ + { + "rail": "/00000000-0000-0000-0000-00005cff706a/+5v", + "capacitors": [ + { + "ref": "C18", + "value": "100n", + "farads": 1.0000000000000001e-07, + "self_resonant_hz": 15915494.0, + "package": "0402", + "esr_ohm": 0.5, + "dielectric": "X7R" + }, + { + "ref": "C9", + "value": "100n", + "farads": 1.0000000000000001e-07, + "self_resonant_hz": 15915494.0, + "package": "0402", + "esr_ohm": 0.5, + "dielectric": "X7R" + }, + { + "ref": "C12", + "value": "100n", + "farads": 1.0000000000000001e-07, + "self_resonant_hz": 15915494.0, + "package": "0402", + "esr_ohm": 0.5, + "dielectric": "X7R" + } + ], + "total_capacitance_uF": 0.3, + "cap_count": 3, + "detector": "detect_decoupling", + "rule_id": "DC-DET", + "category": "decoupling", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "Decoupling on /00000000-0000-0000-0000-00005cff706a/+5v", + "description": "Decoupling capacitors on power rail /00000000-0000-0000-0000-00005cff706a/+5v", + "components": [ + "C12", + "C18", + "C9" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Decoupling", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "decoup_cap_near_ic", + "confidence": "deterministic", + "claimed_components": [ + "C18", + "C9", + "C12" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "decoupling_analysis:9a1adf60f6b2", + "stages": [ + "schematic", + "layout" + ] + }, + { + "rail": "+5v", + "capacitors": [ + { + "ref": "C2", + "value": "10u", + "farads": 9.999999999999999e-06, + "self_resonant_hz": 1591549.0, + "package": "0805", + "esr_ohm": 0.03, + "dielectric": "X7R" + } + ], + "total_capacitance_uF": 10.0, + "cap_count": 1, + "detector": "detect_decoupling", + "rule_id": "DC-DET", + "category": "decoupling", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "Decoupling on +5v", + "description": "Decoupling capacitors on power rail +5v", + "components": [ + "C2" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Decoupling", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "decoup_cap_near_ic", + "confidence": "deterministic", + "claimed_components": [ + "C2" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "decoupling_analysis:9a1adf60f6b2", + "stages": [ + "schematic", + "layout" + ] + }, + { + "rail": "VBUS", + "capacitors": [ + { + "ref": "C7", + "value": "10u", + "farads": 9.999999999999999e-06, + "self_resonant_hz": 1591549.0, + "package": "0805", + "esr_ohm": 0.03, + "dielectric": "X7R" + }, + { + "ref": "C3", + "value": "100uF", + "farads": 9.999999999999999e-05, + "self_resonant_hz": 503292.0, + "package": "7343", + "esr_ohm": 0.1, + "dielectric": "X7R" + }, + { + "ref": "C8", + "value": "10u", + "farads": 9.999999999999999e-06, + "self_resonant_hz": 1591549.0, + "package": "0805", + "esr_ohm": 0.03, + "dielectric": "X7R" + } + ], + "total_capacitance_uF": 120.0, + "cap_count": 3, + "detector": "detect_decoupling", + "rule_id": "DC-DET", + "category": "decoupling", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "Decoupling on VBUS", + "description": "Decoupling capacitors on power rail VBUS", + "components": [ + "C3", + "C7", + "C8" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Decoupling", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "decoup_cap_near_ic", + "confidence": "deterministic", + "claimed_components": [ + "C7", + "C3", + "C8" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "decoupling_analysis:9a1adf60f6b2", + "stages": [ + "schematic", + "layout" + ] + }, + { + "category": "decoupling_coverage", + "rail": "/00000000-0000-0000-0000-00005cff706a/+5v", + "cap_count": 3, + "total_uF": 0.3, + "has_bulk": false, + "has_bypass": true, + "has_high_freq": false, + "detector": "detect_design_observations", + "rule_id": "DO-DET", + "severity": "info", + "confidence": "heuristic", + "evidence_source": "topology", + "summary": "Decoupling coverage on /00000000-0000-0000-0000-00005cff706a/+5v", + "description": "Decoupling frequency coverage for rail /00000000-0000-0000-0000-00005cff706a/+5v", + "components": [ + "C12", + "C18", + "C9" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Design Observations", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "obs_topology", + "confidence": "heuristic", + "claimed_components": [ + "C18", + "C9", + "C12" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "category": "decoupling_coverage", + "rail": "+5v", + "cap_count": 1, + "total_uF": 10.0, + "has_bulk": true, + "has_bypass": false, + "has_high_freq": false, + "detector": "detect_design_observations", + "rule_id": "DO-DET", + "severity": "info", + "confidence": "heuristic", + "evidence_source": "topology", + "summary": "Decoupling coverage on +5v", + "description": "Decoupling frequency coverage for rail +5v", + "components": [ + "C2" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Design Observations", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "obs_topology", + "confidence": "heuristic", + "claimed_components": [ + "C2" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "category": "decoupling_coverage", + "rail": "VBUS", + "cap_count": 3, + "total_uF": 120.0, + "has_bulk": true, + "has_bypass": false, + "has_high_freq": false, + "detector": "detect_design_observations", + "rule_id": "DO-DET", + "severity": "info", + "confidence": "heuristic", + "evidence_source": "topology", + "summary": "Decoupling coverage on VBUS", + "description": "Decoupling frequency coverage for rail VBUS", + "components": [ + "C3", + "C7", + "C8" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Design Observations", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "obs_topology", + "confidence": "heuristic", + "claimed_components": [ + "C7", + "C3", + "C8" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "category": "decoupling", + "component": "U3", + "value": "MagJack-A70-112-331N126", + "rails_without_caps": [ + "/00000000-0000-0000-0000-00005cff70b1/+3.3v" + ], + "rails_with_caps": [], + "detector": "detect_design_observations", + "rule_id": "DO-DET", + "severity": "info", + "confidence": "heuristic", + "evidence_source": "topology", + "summary": "IC U3 missing decoupling on /00000000-0000-0000-0000-00005cff70b1/+3.3v", + "description": "IC power pin(s) without decoupling capacitors", + "components": [ + "U3" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Design Observations", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "obs_topology", + "confidence": "heuristic", + "claimed_components": [ + "U3" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "category": "decoupling", + "component": "U5", + "value": "74LVC1G07SE-7", + "rails_without_caps": [ + "/00000000-0000-0000-0000-00005cff70b1/+3.3v" + ], + "rails_with_caps": [], + "detector": "detect_design_observations", + "rule_id": "DO-DET", + "severity": "info", + "confidence": "heuristic", + "evidence_source": "topology", + "summary": "IC U5 missing decoupling on /00000000-0000-0000-0000-00005cff70b1/+3.3v", + "description": "IC power pin(s) without decoupling capacitors", + "components": [ + "U5" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Design Observations", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "obs_topology", + "confidence": "heuristic", + "claimed_components": [ + "U5" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "category": "decoupling", + "component": "U6", + "value": "AP22653W6", + "rails_without_caps": [ + "VBUS_EN" + ], + "rails_with_caps": [ + "+5v", + "VBUS" + ], + "detector": "detect_design_observations", + "rule_id": "DO-DET", + "severity": "info", + "confidence": "heuristic", + "evidence_source": "topology", + "summary": "IC U6 missing decoupling on VBUS_EN", + "description": "IC power pin(s) without decoupling capacitors", + "components": [ + "U6" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Design Observations", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "obs_topology", + "confidence": "heuristic", + "claimed_components": [ + "U6" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_datasheet_coverage", + "rule_id": "DS-003", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "bom", + "category": "verification", + "summary": "Datasheets present (2 files) but 36/36 BOM parts lack an MPN \u2014 those parts can't be cross-referenced.", + "components": [ + "BT1", + "C1", + "C12", + "C13", + "C18", + "C2", + "C3", + "C7", + "C8", + "C9", + "D1", + "D2", + "J11", + "J12", + "J14", + "J2", + "J6", + "J8", + "J9", + "Module1" + ], + "nets": [], + "pins": [], + "datasheets_dir": "/Users/noise/Documents/obsidian/rpiboard/datasheets", + "datasheet_file_count": 2, + "bom_size": 36, + "mpn_coverage_percent": 0.0, + "recommendation": "Set the MPN field on the listed parts and re-sync datasheets so every BOM entry has manufacturer evidence.", + "report_context": { + "section": "Datasheet Coverage", + "impact": "Partial coverage: pin mapping and electrical claims for unmapped parts remain unverified.", + "standard_ref": "" + }, + "stages": [ + "schematic" + ] + }, + { + "connector_ref": "J11", + "connector_value": "USB_C_Receptacle_USB2.0", + "interface_type": "generic", + "risk_level": "medium_risk", + "signal_nets": [ + "/00000000-0000-0000-0000-00005cff706a/CC1", + "/00000000-0000-0000-0000-00005cff706a/CC2", + "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "__unnamed_0", + "__unnamed_1" + ], + "protected_nets": [], + "unprotected_nets": [ + "/00000000-0000-0000-0000-00005cff706a/CC1", + "/00000000-0000-0000-0000-00005cff706a/CC2", + "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "__unnamed_0", + "__unnamed_1" + ], + "coverage": "none", + "esd_devices": [], + "esd_device_details": [], + "detector": "audit_esd_protection", + "rule_id": "EP-AUD", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "ESD audit J11 (generic): none coverage", + "description": "ESD protection audit for generic connector J11: none coverage.", + "components": [ + "J11" + ], + "nets": [ + "/00000000-0000-0000-0000-00005cff706a/CC1", + "/00000000-0000-0000-0000-00005cff706a/CC2", + "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "__unnamed_0", + "__unnamed_1" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "ESD Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "esd_coverage_audit", + "confidence": "deterministic", + "claimed_components": [ + "J11" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "connector_ref": "J12", + "connector_value": "USB3_A", + "interface_type": "generic", + "risk_level": "medium_risk", + "signal_nets": [ + "USB3-0-D_N", + "USB3-0-D_P", + "USB3-0-RX_N", + "USB3-0-RX_P", + "USB3-0-TX_N", + "USB3-0-TX_P", + "USB3-1-D_N", + "USB3-1-D_P", + "USB3-1-RX_N", + "USB3-1-RX_P", + "USB3-1-TX_N", + "USB3-1-TX_P" + ], + "protected_nets": [], + "unprotected_nets": [ + "USB3-0-D_N", + "USB3-0-D_P", + "USB3-0-RX_N", + "USB3-0-RX_P", + "USB3-0-TX_N", + "USB3-0-TX_P", + "USB3-1-D_N", + "USB3-1-D_P", + "USB3-1-RX_N", + "USB3-1-RX_P", + "USB3-1-TX_N", + "USB3-1-TX_P" + ], + "coverage": "none", + "esd_devices": [], + "esd_device_details": [], + "detector": "audit_esd_protection", + "rule_id": "EP-AUD", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "ESD audit J12 (generic): none coverage", + "description": "ESD protection audit for generic connector J12: none coverage.", + "components": [ + "J12" + ], + "nets": [ + "USB3-0-D_N", + "USB3-0-D_P", + "USB3-0-RX_N", + "USB3-0-RX_P", + "USB3-0-TX_N", + "USB3-0-TX_P", + "USB3-1-D_N", + "USB3-1-D_P", + "USB3-1-RX_N", + "USB3-1-RX_P", + "USB3-1-TX_N", + "USB3-1-TX_P" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "ESD Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "esd_coverage_audit", + "confidence": "deterministic", + "claimed_components": [ + "J12" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "connector_ref": "J14", + "connector_value": "JST_SHBM04B-SRSS-TB", + "interface_type": "header", + "risk_level": "medium_risk", + "signal_nets": [ + "PWM", + "TACHO" + ], + "protected_nets": [], + "unprotected_nets": [ + "PWM", + "TACHO" + ], + "coverage": "none", + "esd_devices": [], + "esd_device_details": [], + "detector": "audit_esd_protection", + "rule_id": "EP-AUD", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "ESD audit J14 (header): none coverage", + "description": "ESD protection audit for header connector J14: none coverage.", + "components": [ + "J14" + ], + "nets": [ + "PWM", + "TACHO" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "ESD Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "esd_coverage_audit", + "confidence": "deterministic", + "claimed_components": [ + "J14" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "connector_ref": "J2", + "connector_value": "Conn_02x07_Odd_Even", + "interface_type": "header", + "risk_level": "medium_risk", + "signal_nets": [ + "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "EEPROM_nWP", + "PMIC_ENABLE", + "SYNC_OUT", + "__unnamed_26", + "nRPIBOOT" + ], + "protected_nets": [], + "unprotected_nets": [ + "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "EEPROM_nWP", + "PMIC_ENABLE", + "SYNC_OUT", + "__unnamed_26", + "nRPIBOOT" + ], + "coverage": "none", + "esd_devices": [], + "esd_device_details": [], + "detector": "audit_esd_protection", + "rule_id": "EP-AUD", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "ESD audit J2 (header): none coverage", + "description": "ESD protection audit for header connector J2: none coverage.", + "components": [ + "J2" + ], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "EEPROM_nWP", + "PMIC_ENABLE", + "SYNC_OUT", + "__unnamed_26", + "nRPIBOOT" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "ESD Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "esd_coverage_audit", + "confidence": "deterministic", + "claimed_components": [ + "J2" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "connector_ref": "J3", + "connector_value": "Conn_01x03", + "interface_type": "header", + "risk_level": "medium_risk", + "signal_nets": [ + "BT_nDis", + "WL_nDis" + ], + "protected_nets": [], + "unprotected_nets": [ + "BT_nDis", + "WL_nDis" + ], + "coverage": "none", + "esd_devices": [], + "esd_device_details": [], + "detector": "audit_esd_protection", + "rule_id": "EP-AUD", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "ESD audit J3 (header): none coverage", + "description": "ESD protection audit for header connector J3: none coverage.", + "components": [ + "J3" + ], + "nets": [ + "BT_nDis", + "WL_nDis" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "ESD Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "esd_coverage_audit", + "confidence": "deterministic", + "claimed_components": [ + "J3" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "connector_ref": "J6", + "connector_value": "THD-02-R", + "interface_type": "header", + "risk_level": "medium_risk", + "signal_nets": [ + "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "__unnamed_27", + "__unnamed_28" + ], + "protected_nets": [], + "unprotected_nets": [ + "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "__unnamed_27", + "__unnamed_28" + ], + "coverage": "none", + "esd_devices": [], + "esd_device_details": [], + "detector": "audit_esd_protection", + "rule_id": "EP-AUD", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "ESD audit J6 (header): none coverage", + "description": "ESD protection audit for header connector J6: none coverage.", + "components": [ + "J6" + ], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "__unnamed_27", + "__unnamed_28" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "ESD Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "esd_coverage_audit", + "confidence": "deterministic", + "claimed_components": [ + "J6" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "connector_ref": "J8", + "connector_value": "THD-20-R", + "interface_type": "header", + "risk_level": "medium_risk", + "signal_nets": [ + "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "GPIO10", + "GPIO11", + "GPIO12", + "GPIO13", + "GPIO14", + "GPIO15", + "GPIO16", + "GPIO17", + "GPIO18", + "GPIO19", + "GPIO2", + "GPIO20", + "GPIO21", + "GPIO22", + "GPIO23", + "GPIO24", + "GPIO25", + "GPIO26", + "GPIO27", + "GPIO3", + "GPIO4", + "GPIO5", + "GPIO6", + "GPIO7", + "GPIO8", + "GPIO9" + ], + "protected_nets": [], + "unprotected_nets": [ + "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "GPIO10", + "GPIO11", + "GPIO12", + "GPIO13", + "GPIO14", + "GPIO15", + "GPIO16", + "GPIO17", + "GPIO18", + "GPIO19", + "GPIO2", + "GPIO20", + "GPIO21", + "GPIO22", + "GPIO23", + "GPIO24", + "GPIO25", + "GPIO26", + "GPIO27", + "GPIO3", + "GPIO4", + "GPIO5", + "GPIO6", + "GPIO7", + "GPIO8", + "GPIO9" + ], + "coverage": "none", + "esd_devices": [], + "esd_device_details": [], + "detector": "audit_esd_protection", + "rule_id": "EP-AUD", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "ESD audit J8 (header): none coverage", + "description": "ESD protection audit for header connector J8: none coverage.", + "components": [ + "J8" + ], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "GPIO10", + "GPIO11", + "GPIO12", + "GPIO13", + "GPIO14", + "GPIO15", + "GPIO16", + "GPIO17", + "GPIO18", + "GPIO19", + "GPIO2", + "GPIO20", + "GPIO21", + "GPIO22", + "GPIO23", + "GPIO24", + "GPIO25", + "GPIO26", + "GPIO27", + "GPIO3", + "GPIO4", + "GPIO5", + "GPIO6", + "GPIO7", + "GPIO8", + "GPIO9" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "ESD Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "esd_coverage_audit", + "confidence": "deterministic", + "claimed_components": [ + "J8" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "connector_ref": "J9", + "connector_value": "THD-02-R", + "interface_type": "header", + "risk_level": "medium_risk", + "signal_nets": [ + "TR0_TAP", + "TR1_TAP", + "TR2_TAP", + "TR3_TAP" + ], + "protected_nets": [], + "unprotected_nets": [ + "TR0_TAP", + "TR1_TAP", + "TR2_TAP", + "TR3_TAP" + ], + "coverage": "none", + "esd_devices": [], + "esd_device_details": [], + "detector": "audit_esd_protection", + "rule_id": "EP-AUD", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "ESD audit J9 (header): none coverage", + "description": "ESD protection audit for header connector J9: none coverage.", + "components": [ + "J9" + ], + "nets": [ + "TR0_TAP", + "TR1_TAP", + "TR2_TAP", + "TR3_TAP" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "ESD Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "esd_coverage_audit", + "confidence": "deterministic", + "claimed_components": [ + "J9" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "ref": "D1", + "value": "LED Red", + "type": "indicator_led", + "drive_method": "resistor_limited", + "detector": "audit_led_circuits", + "rule_id": "LA-AUD", + "category": "led_control", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "LED D1 (LED Red) [resistor_limited]", + "description": "LED audit: D1 using resistor_limited drive method.", + "components": [ + "D1", + "R10", + "U5" + ], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/+3.3v" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "LED Audit", + "impact": "", + "standard_ref": "" + }, + "series_resistor": { + "ref": "R10", + "ohms": 1000.0 + }, + "supply_net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "driver_source": "U5", + "estimated_current_mA": 1.3, + "provenance": { + "evidence": "led_audit", + "confidence": "deterministic", + "claimed_components": [ + "D1" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "ref": "D2", + "value": "LED Green", + "type": "indicator_led", + "drive_method": "resistor_limited", + "detector": "audit_led_circuits", + "rule_id": "LA-AUD", + "category": "led_control", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "LED D2 (LED Green) [resistor_limited]", + "description": "LED audit: D2 using resistor_limited drive method.", + "components": [ + "D2", + "R1" + ], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/+3.3v" + ], + "pins": [], + "recommendation": "", + "report_context": { + "section": "LED Audit", + "impact": "", + "standard_ref": "" + }, + "series_resistor": { + "ref": "R1", + "ohms": 1000.0 + }, + "supply_net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "estimated_current_mA": 0.1, + "provenance": { + "evidence": "led_audit", + "confidence": "deterministic", + "claimed_components": [ + "D2" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "detect_label_aliases", + "rule_id": "LB-001", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "labels", + "summary": "Net /00000000-0000-0000-0000-00005cff70b1/GPIO_VREF has multiple global/hierarchical labels: /00000000-0000-0000-0000-00005cff706a/GPIO_VREF, /00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "description": "Net '/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF' is labelled with multiple names: /00000000-0000-0000-0000-00005cff706a/GPIO_VREF, /00000000-0000-0000-0000-00005cff70b1/GPIO_VREF. KiCad treats this as one electrical net, but a future refactor that renames one label without the other silently decouples the two halves.", + "components": [], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF" + ], + "pins": [], + "aliases": [ + "/00000000-0000-0000-0000-00005cff706a/GPIO_VREF", + "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF" + ], + "label_count": 2, + "recommendation": "Pick the canonical name and remove the other labels, OR document the alias intentionally (e.g. an expressly named test point). If this is a cross-sheet connection via both global and hierarchical labels, prefer one or the other style consistently.", + "report_context": { + "section": "Labels", + "impact": "Maintainability \u2014 silent alias across future edits.", + "standard_ref": "" + }, + "provenance": { + "evidence": "lb_multi_label", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "detect_label_aliases", + "rule_id": "LB-001", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "labels", + "summary": "Net /00000000-0000-0000-0000-00005cff70b1/ID_SC has multiple global/hierarchical labels: /00000000-0000-0000-0000-00005cff706a/ID_SC, /00000000-0000-0000-0000-00005cff70b1/ID_SC", + "description": "Net '/00000000-0000-0000-0000-00005cff70b1/ID_SC' is labelled with multiple names: /00000000-0000-0000-0000-00005cff706a/ID_SC, /00000000-0000-0000-0000-00005cff70b1/ID_SC. KiCad treats this as one electrical net, but a future refactor that renames one label without the other silently decouples the two halves.", + "components": [], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/ID_SC" + ], + "pins": [], + "aliases": [ + "/00000000-0000-0000-0000-00005cff706a/ID_SC", + "/00000000-0000-0000-0000-00005cff70b1/ID_SC" + ], + "label_count": 2, + "recommendation": "Pick the canonical name and remove the other labels, OR document the alias intentionally (e.g. an expressly named test point). If this is a cross-sheet connection via both global and hierarchical labels, prefer one or the other style consistently.", + "report_context": { + "section": "Labels", + "impact": "Maintainability \u2014 silent alias across future edits.", + "standard_ref": "" + }, + "provenance": { + "evidence": "lb_multi_label", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "detect_label_aliases", + "rule_id": "LB-001", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "labels", + "summary": "Net /00000000-0000-0000-0000-00005cff70b1/ID_SD has multiple global/hierarchical labels: /00000000-0000-0000-0000-00005cff706a/ID_SD, /00000000-0000-0000-0000-00005cff70b1/ID_SD", + "description": "Net '/00000000-0000-0000-0000-00005cff70b1/ID_SD' is labelled with multiple names: /00000000-0000-0000-0000-00005cff706a/ID_SD, /00000000-0000-0000-0000-00005cff70b1/ID_SD. KiCad treats this as one electrical net, but a future refactor that renames one label without the other silently decouples the two halves.", + "components": [], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/ID_SD" + ], + "pins": [], + "aliases": [ + "/00000000-0000-0000-0000-00005cff706a/ID_SD", + "/00000000-0000-0000-0000-00005cff70b1/ID_SD" + ], + "label_count": 2, + "recommendation": "Pick the canonical name and remove the other labels, OR document the alias intentionally (e.g. an expressly named test point). If this is a cross-sheet connection via both global and hierarchical labels, prefer one or the other style consistently.", + "report_context": { + "section": "Labels", + "impact": "Maintainability \u2014 silent alias across future edits.", + "standard_ref": "" + }, + "provenance": { + "evidence": "lb_multi_label", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "detect_label_aliases", + "rule_id": "LB-001", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "labels", + "summary": "Net /00000000-0000-0000-0000-00005cff70b1/USBOTG_ID has multiple global/hierarchical labels: /00000000-0000-0000-0000-00005cff706a/USBOTG, /00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "description": "Net '/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID' is labelled with multiple names: /00000000-0000-0000-0000-00005cff706a/USBOTG, /00000000-0000-0000-0000-00005cff70b1/USBOTG_ID. KiCad treats this as one electrical net, but a future refactor that renames one label without the other silently decouples the two halves.", + "components": [], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID" + ], + "pins": [], + "aliases": [ + "/00000000-0000-0000-0000-00005cff706a/USBOTG", + "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID" + ], + "label_count": 2, + "recommendation": "Pick the canonical name and remove the other labels, OR document the alias intentionally (e.g. an expressly named test point). If this is a cross-sheet connection via both global and hierarchical labels, prefer one or the other style consistently.", + "report_context": { + "section": "Labels", + "impact": "Maintainability \u2014 silent alias across future edits.", + "standard_ref": "" + }, + "provenance": { + "evidence": "lb_multi_label", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "esd_ic", + "protected_net": "TRD2_N", + "protected_nets": [ + "TRD2_N", + "TRD2_P", + "TRD3_N", + "TRD3_P" + ], + "clamp_net": null, + "detector": "detect_protection_devices", + "rule_id": "PD-DET", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "Protection U1 esd_ic", + "description": "IC-based ESD protection device detected", + "components": [ + "U1" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "prot_ic_based", + "confidence": "deterministic", + "claimed_components": [ + "U1" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "protection_devices:9613148bae35", + "stages": [ + "schematic" + ] + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "esd_ic", + "protected_net": "TRD0_N", + "protected_nets": [ + "TRD0_N", + "TRD0_P", + "TRD1_N", + "TRD1_P" + ], + "clamp_net": null, + "detector": "detect_protection_devices", + "rule_id": "PD-DET", + "category": "protection", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "Protection U2 esd_ic", + "description": "IC-based ESD protection device detected", + "components": [ + "U2" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Protection", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "prot_ic_based", + "confidence": "deterministic", + "claimed_components": [ + "U2" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "protection_devices:9613148bae35", + "stages": [ + "schematic" + ] + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "load_switch", + "input_rail": "/00000000-0000-0000-0000-00005cff706a/+5v", + "output_rail": "__unnamed_29", + "enable_net": null, + "enable_active_high": true, + "detector": "detect_power_path", + "rule_id": "PP-DET", + "category": "power_management", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "Power path U12 (RT9742SNGV) [load_switch]", + "description": "Detected load_switch power path component U12.", + "components": [ + "U12" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Power Management", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "ppath_topology", + "confidence": "deterministic", + "claimed_components": [ + "U12" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "ref": "U6", + "value": "AP22653W6", + "lib_id": "CM5IO:AP2553W6", + "topology": "LDO", + "input_rail": "+5v", + "output_rail": "VBUS", + "detector": "detect_power_regulators", + "rule_id": "PR-DET", + "category": "power_management", + "severity": "info", + "confidence": "deterministic", + "evidence_source": "topology", + "summary": "Regulator U6 LDO", + "description": "Power regulator (LDO) detected", + "components": [ + "U6" + ], + "nets": [], + "pins": [], + "recommendation": "", + "report_context": { + "section": "Power Management", + "impact": "", + "standard_ref": "" + }, + "provenance": { + "evidence": "reg_keyword", + "confidence": "heuristic", + "claimed_components": [ + "U6" + ], + "excluded_by": [], + "suppressed_candidates": [] + }, + "output_capacitors": [ + { + "ref": "C3", + "value": "100uF", + "farads": 9.999999999999999e-05, + "package": "7343", + "esr_ohm": 0.1, + "dielectric": "X7R" + }, + { + "ref": "C7", + "value": "10u", + "farads": 9.999999999999999e-06, + "package": "0805", + "dielectric": "X7R" + }, + { + "ref": "C8", + "value": "10u", + "farads": 9.999999999999999e-06, + "package": "0805", + "dielectric": "X7R" + } + ], + "input_capacitors": [ + { + "ref": "C2", + "value": "10u", + "farads": 9.999999999999999e-06, + "package": "0805", + "dielectric": "X7R" + } + ], + "detection_id": "power_regulators:14005101bf66", + "stages": [ + "schematic" + ] + }, + { + "detector": "validate_pullups", + "rule_id": "PU-001", + "category": "signal_integrity", + "summary": "U6 pin nFault (__unnamed_85) missing pull-up resistor", + "description": "Pin nFault on U6 (AP22653W6) is connected to net __unnamed_85 but has no pull-up resistor. This pin type typically requires an external pull-up to a power rail for correct operation.", + "components": [ + "U6" + ], + "nets": [ + "__unnamed_85" + ], + "pins": [ + { + "ref": "U6", + "pin": "nFault", + "function": "open_drain_or_input" + } + ], + "severity": "warning", + "confidence": "heuristic", + "evidence_source": "topology", + "recommendation": "Add a 4.7k-10k pull-up resistor from __unnamed_85 to the appropriate power rail.", + "fix_params": { + "type": "add_component", + "components": [ + { + "type": "resistor", + "value": "10k", + "net_from": "__unnamed_85", + "net_to": "" + } + ], + "basis": "Pin nFault is open-drain/input type requiring pull-up" + }, + "report_context": { + "section": "Signal Integrity", + "impact": "Pin may float or bus may not function without pull-up", + "standard_ref": "" + }, + "provenance": { + "evidence": "pu_missing_pullup", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "validation_findings:5144931b8073", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "+5v has no declared source", + "description": "Net +5v carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "+5v" + ], + "pins": [ + "U6.1" + ], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "/00000000-0000-0000-0000-00005cff706a/+5v has no declared source", + "description": "Net /00000000-0000-0000-0000-00005cff706a/+5v carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "/00000000-0000-0000-0000-00005cff706a/+5v" + ], + "pins": [ + "Module1.77", + "Module1.79", + "Module1.81", + "Module1.83", + "Module1.85", + "Module1.87", + "U12.1" + ], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF has no declared source", + "description": "Net /00000000-0000-0000-0000-00005cff70b1/GPIO_VREF carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF" + ], + "pins": [ + "Module1.78" + ], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "PWR_BUT has no declared source", + "description": "Net PWR_BUT carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "PWR_BUT" + ], + "pins": [], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "VBAT has no declared source", + "description": "Net VBAT carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "VBAT" + ], + "pins": [], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "VBUS_EN has no declared source", + "description": "Net VBUS_EN carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "VBUS_EN" + ], + "pins": [], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_sourcing_gate", + "rule_id": "SS-001", + "severity": "error", + "confidence": "deterministic", + "evidence_source": "bom", + "category": "sourcing", + "summary": "Sourcing blocker: BOM has <50% MPN coverage (0/24 unique parts). Board is not pre-fab ready.", + "description": "Sourcing audit: 0 of 24 unique BOM lines (grouped by value + footprint) carry a manufacturer part number (0.0%). Pre-fab readiness requires 100% coverage; production assembly requires all parts sourceable via one of the supported distributors.", + "components": [ + "BT1", + "C1", + "C12", + "C13", + "C18", + "C2", + "C3", + "C7", + "C8", + "C9", + "D1", + "D2", + "J11", + "J12", + "J14", + "J2", + "J6", + "J8", + "J9", + "Module1", + "R1", + "R10", + "R12", + "R2", + "R3", + "R5", + "R6", + "R7", + "R9", + "SW1", + "U1", + "U12", + "U2", + "U3", + "U5", + "U6" + ], + "nets": [], + "pins": [], + "mpn_coverage_percent": 0.0, + "missing_mpn_lines": 24, + "missing_mpn_refs": 36, + "total_bom_lines": 24, + "recommendation": "Populate the MPN field on the listed refs (use the digikey / mouser / lcsc / element14 skill to search by value/footprint when the MPN isn't already known).", + "report_context": { + "section": "Sourcing", + "impact": "Pre-fab gate: board cannot be ordered until MPN coverage reaches 100%.", + "standard_ref": "" + }, + "stages": [ + "pre_fab" + ] + } + ], + "bom": [ + { + "value": "Battery_Cell", + "footprint": "CM5IO:BatteryHolder_Keystone_3034_1x20mm", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.keyelco.com/userAssets/file/M65p9.pdf", + "description": "", + "references": [ + "BT1" + ], + "quantity": 1, + "dnp": false, + "type": "battery" + }, + { + "value": "100n", + "footprint": "Capacitor_SMD:C_0402_1005Metric", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf", + "description": "", + "references": [ + "C18", + "C9", + "C1", + "C13", + "C12" + ], + "quantity": 5, + "dnp": false, + "type": "capacitor" + }, + { + "value": "100uF", + "footprint": "Capacitor_Tantalum_SMD:CP_EIA-7343-31_Kemet-D", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "~", + "description": "", + "references": [ + "C3" + ], + "quantity": 1, + "dnp": false, + "type": "capacitor" + }, + { + "value": "10u", + "footprint": "Capacitor_SMD:C_0805_2012Metric", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf", + "description": "", + "references": [ + "C7", + "C8", + "C2" + ], + "quantity": 3, + "dnp": false, + "type": "capacitor" + }, + { + "value": "LED Red", + "footprint": "LED_SMD:LED_0603_1608Metric", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "http://optoelectronics.liteon.com/upload/download/DS22-2000-210/LTST-S270KRKT.pdf", + "description": "", + "references": [ + "D1" + ], + "quantity": 1, + "dnp": false, + "type": "led" + }, + { + "value": "LED Green", + "footprint": "LED_SMD:LED_0603_1608Metric", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "http://optoelectronics.liteon.com/upload/download/DS22-2000-226/LTST-S270KGKT.pdf", + "description": "", + "references": [ + "D2" + ], + "quantity": 1, + "dnp": false, + "type": "led" + }, + { + "value": "USB_C_Receptacle_USB2.0", + "footprint": "Connector_USB:USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.usb.org/sites/default/files/documents/usb_type-c.zip", + "description": "", + "references": [ + "J11" + ], + "quantity": 1, + "dnp": false, + "type": "connector" + }, + { + "value": "USB3_A", + "footprint": "CM5IO:MTCONN_UBAF30-D2011", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "~", + "description": "", + "references": [ + "J12" + ], + "quantity": 1, + "dnp": false, + "type": "connector" + }, + { + "value": "JST_SHBM04B-SRSS-TB", + "footprint": "Connector_JST:JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "", + "description": "", + "references": [ + "J14" + ], + "quantity": 1, + "dnp": false, + "type": "connector" + }, + { + "value": "Conn_02x07_Odd_Even", + "footprint": "Connector_PinHeader_2.54mm:PinHeader_2x07_P2.54mm_Vertical", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "description": "", + "references": [ + "J2" + ], + "quantity": 1, + "dnp": false, + "type": "connector" + }, + { + "value": "THD-20-R", + "footprint": "Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Vertical", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "description": "", + "references": [ + "J8" + ], + "quantity": 1, + "dnp": false, + "type": "connector" + }, + { + "value": "THD-02-R", + "footprint": "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "description": "", + "references": [ + "J9", + "J6" + ], + "quantity": 2, + "dnp": false, + "type": "connector" + }, + { + "value": "ComputeModule5-CM5", + "footprint": "CM5IO:Raspberry-Pi-5-Compute-Module", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "", + "description": "RaspberryPi Compute module 5", + "references": [ + "Module1" + ], + "quantity": 1, + "dnp": false, + "type": "other" + }, + { + "value": "1k", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "references": [ + "R1", + "R10" + ], + "quantity": 2, + "dnp": false, + "type": "resistor" + }, + { + "value": "15K 1%", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "references": [ + "R12" + ], + "quantity": 1, + "dnp": false, + "type": "resistor" + }, + { + "value": "470R", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "references": [ + "R2", + "R3" + ], + "quantity": 2, + "dnp": false, + "type": "resistor" + }, + { + "value": "0R", + "footprint": "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "references": [ + "R5" + ], + "quantity": 1, + "dnp": false, + "type": "resistor" + }, + { + "value": "2.2K 1%", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "references": [ + "R9", + "R6", + "R7" + ], + "quantity": 3, + "dnp": false, + "type": "resistor" + }, + { + "value": "Right angle Tact button", + "footprint": "Button_Switch_THT:SW_Tactile_SPST_Angled_PTS645Vx58-2LFS", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.mouser.co.uk/datasheet/2/240/Littelfuse-3050591.pdf", + "description": "Push button switch, generic, two pins", + "references": [ + "SW1" + ], + "quantity": 1, + "dnp": false, + "type": "switch" + }, + { + "value": "RT9742SNGV", + "footprint": "Package_TO_SOT_SMD:TSOT-23_HandSoldering", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf", + "description": "", + "references": [ + "U12" + ], + "quantity": 1, + "dnp": false, + "type": "ic" + }, + { + "value": "TPD4EUSB30", + "footprint": "Package_SON:USON-10_2.5x1.0mm_P0.5mm", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf", + "description": "", + "references": [ + "U2", + "U1" + ], + "quantity": 2, + "dnp": false, + "type": "ic" + }, + { + "value": "MagJack-A70-112-331N126", + "footprint": "CM5IO:TRJG0926HENL", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://p.globalsources.com/IMAGES/PDT/SPEC/690/K1160305690.pdf", + "description": "", + "references": [ + "U3" + ], + "quantity": 1, + "dnp": false, + "type": "ic" + }, + { + "value": "74LVC1G07SE-7", + "footprint": "Package_TO_SOT_SMD:SOT-353_SC-70-5", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.diodes.com/assets/Datasheets/74LVC1G07.pdf", + "description": "", + "references": [ + "U5" + ], + "quantity": 1, + "dnp": false, + "type": "ic" + }, + { + "value": "AP22653W6", + "footprint": "Package_TO_SOT_SMD:SOT-23-6", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "datasheet": "https://www.diodes.com/assets/Datasheets/AP255x.pdf", + "description": "", + "references": [ + "U6" + ], + "quantity": 1, + "dnp": false, + "type": "ic" + } + ], + "components": [ + { + "reference": "H4", + "value": "MountingHole", + "lib_id": "Mechanical:MountingHole", + "lib_name": "", + "footprint": "CM5IO:MountingHole_2.7mm_M2.5_DIN965", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 22.86, + "y": 180.975, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e3b1a1d", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": {}, + "type": "mounting_hole", + "keywords": "mounting hole", + "_sheet": 0, + "category": "mounting_hole", + "pin_nets": {} + }, + { + "reference": "H3", + "value": "MountingHole", + "lib_id": "Mechanical:MountingHole", + "lib_name": "", + "footprint": "CM5IO:MountingHole_2.7mm_M2.5_DIN965", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 22.86, + "y": 175.895, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e3b25a9", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": {}, + "type": "mounting_hole", + "keywords": "mounting hole", + "_sheet": 0, + "category": "mounting_hole", + "pin_nets": {} + }, + { + "reference": "H2", + "value": "MountingHole", + "lib_id": "Mechanical:MountingHole", + "lib_name": "", + "footprint": "CM5IO:MountingHole_2.7mm_M2.5_DIN965", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 22.86, + "y": 170.815, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e3b2cb2", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": {}, + "type": "mounting_hole", + "keywords": "mounting hole", + "_sheet": 0, + "category": "mounting_hole", + "pin_nets": {} + }, + { + "reference": "H1", + "value": "MountingHole", + "lib_id": "Mechanical:MountingHole", + "lib_name": "", + "footprint": "CM5IO:MountingHole_2.7mm_M2.5_DIN965", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 22.86, + "y": 165.735, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e3b2f75", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": {}, + "type": "mounting_hole", + "keywords": "mounting hole", + "_sheet": 0, + "category": "mounting_hole", + "pin_nets": {} + }, + { + "reference": "H5", + "value": "MountingHole", + "lib_id": "Mechanical:MountingHole", + "lib_name": "", + "footprint": "CM5IO:MountingHole_2.7mm_M2.5_DIN965", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 43.815, + "y": 165.735, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e3b32fa", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": {}, + "type": "mounting_hole", + "keywords": "mounting hole", + "_sheet": 0, + "category": "mounting_hole", + "pin_nets": {} + }, + { + "reference": "H8", + "value": "MountingHole", + "lib_id": "Mechanical:MountingHole", + "lib_name": "", + "footprint": "CM5IO:MountingHole_2.7mm_M2.5_DIN965", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 43.815, + "y": 180.975, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e3b330c", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": {}, + "type": "mounting_hole", + "keywords": "mounting hole", + "_sheet": 0, + "category": "mounting_hole", + "pin_nets": {} + }, + { + "reference": "H7", + "value": "MountingHole", + "lib_id": "Mechanical:MountingHole", + "lib_name": "", + "footprint": "CM5IO:MountingHole_2.7mm_M2.5_DIN965", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 43.815, + "y": 175.895, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e3b331e", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": {}, + "type": "mounting_hole", + "keywords": "mounting hole", + "_sheet": 0, + "category": "mounting_hole", + "pin_nets": {} + }, + { + "reference": "H6", + "value": "MountingHole", + "lib_id": "Mechanical:MountingHole", + "lib_name": "", + "footprint": "CM5IO:MountingHole_2.7mm_M2.5_DIN965", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 43.815, + "y": 170.815, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e3b3330", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": {}, + "type": "mounting_hole", + "keywords": "mounting hole", + "_sheet": 0, + "category": "mounting_hole", + "pin_nets": {} + }, + { + "reference": "C18", + "value": "100n", + "lib_id": "Device:C", + "lib_name": "", + "footprint": "Capacitor_SMD:C_0402_1005Metric", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 83.82, + "y": 76.2, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "3c5f4bb0-04d2-46c1-9c7f-c06460df6a62", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "291ccd32-a37d-4fac-b11d-c12157e045a7", + "2": "d83594dc-e88c-4a0a-8e24-5cdfbaac4255" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 0, + "category": "capacitor", + "parsed_value": 1.0000000000000001e-07, + "pin_nets": { + "2": "GND", + "1": "/00000000-0000-0000-0000-00005cff706a/+5v" + } + }, + { + "reference": "J11", + "value": "USB_C_Receptacle_USB2.0", + "lib_id": "Connector:USB_C_Receptacle_USB2.0_16P", + "lib_name": "", + "footprint": "Connector_USB:USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal", + "datasheet": "https://www.usb.org/sites/default/files/documents/usb_type-c.zip", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 46.99, + "y": 59.69, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "97d07611-189f-4c78-a601-68743dc1d983", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "A1": "fdf87c87-2aff-495c-a0ce-0704592f00f8", + "A12": "1225c31b-5aa5-476d-9ffe-f4363f88ba1b", + "A4": "11b4082e-6643-4bd1-b1b7-e03eb59b4036", + "A5": "363f2685-0414-4375-bec6-f880ae7df0e9", + "A6": "aa6866ec-e6ca-4f00-90f5-2e7828451b2d", + "A7": "b485a3c8-1661-46c2-a7bb-653a1cd7e2c4", + "A8": "7ccabdf1-f918-446c-8096-2f1259971a32", + "A9": "cf9f7eed-4497-4917-8463-9f268f832fee", + "B1": "96ca13c5-8648-46b1-8e8b-3a60911609c7", + "B12": "c4f6d189-b8f2-4c82-a8cc-b05c36f261a6", + "B4": "74034120-6d0a-4565-8f62-35c865c1ca9e", + "B5": "8c8a9e1a-325a-4fd2-aa94-bcf4a72cb62b", + "B6": "10904109-2072-4f5e-9581-12c97e37134f", + "B7": "0066139c-d638-4dcf-8af9-25b5585967e3", + "B8": "3dd824a5-6584-4178-b78b-53f1a01f7d25", + "B9": "5f8aacc9-9bae-4abd-9a47-260ac0d2084a", + "S1": "50951762-fdee-419e-aeb0-b7310ba2514e" + }, + "type": "connector", + "keywords": "usb universal serial bus type-C USB2.0", + "is_external_connector": true, + "connector_layout": "usb_c", + "_sheet": 0, + "category": "connector", + "pin_nets": { + "A1": "GND", + "A12": "GND", + "B1": "GND", + "B12": "GND", + "S1": "GND", + "A4": "/00000000-0000-0000-0000-00005cff706a/+5v", + "A9": "/00000000-0000-0000-0000-00005cff706a/+5v", + "B4": "/00000000-0000-0000-0000-00005cff706a/+5v", + "B9": "/00000000-0000-0000-0000-00005cff706a/+5v", + "A5": "/00000000-0000-0000-0000-00005cff706a/CC1", + "A6": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "B6": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "A7": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "B7": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "A8": "__unnamed_0", + "B5": "/00000000-0000-0000-0000-00005cff706a/CC2", + "B8": "__unnamed_1" + } + }, + { + "reference": "R9", + "value": "2.2K 1%", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 87.63, + "y": 48.26, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "b30c000d-795b-488f-8e69-a058391ab578", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "31bcfe0a-bb6a-4e1b-98c4-465ef952edcd", + "2": "b96ce79e-de64-4bb5-8b7f-4429c99aa19f" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 0, + "category": "resistor", + "parsed_value": 2200.0, + "pin_nets": { + "2": "GND", + "1": "/00000000-0000-0000-0000-00005cff706a/+5v" + } + }, + { + "reference": "C9", + "value": "100n", + "lib_id": "Device:C", + "lib_name": "", + "footprint": "Capacitor_SMD:C_0402_1005Metric", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 72.39, + "y": 76.2, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "cf24492d-8526-4d53-a0eb-2486aa3ca298", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "b8d7b860-3ed6-457c-a4fe-755e37bbede8", + "2": "6f6e9283-9dfc-4003-89e3-ea1d47079c07" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 0, + "category": "capacitor", + "parsed_value": 1.0000000000000001e-07, + "pin_nets": { + "2": "GND", + "1": "/00000000-0000-0000-0000-00005cff706a/+5v" + } + }, + { + "reference": "U5", + "value": "74LVC1G07SE-7", + "lib_id": "CM5IO:74LVC1G07_copy", + "lib_name": "", + "footprint": "Package_TO_SOT_SMD:SOT-353_SC-70-5", + "datasheet": "https://www.diodes.com/assets/Datasheets/74LVC1G07.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 165.1, + "y": 139.7, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005d4045a5", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "2": "33f0ff87-5826-47b7-a189-ca3528f1f211", + "3": "b7b0924b-a534-453f-b03b-3088a452d2d5", + "4": "6f0bf181-b7ac-48a2-905c-c67feeb7d571", + "5": "a2e657e9-8fbb-46fe-96c9-f7babcd4a7d6", + "1": "22fdc37f-fd26-497c-8d6e-7d9eb6019020" + }, + "type": "ic", + "keywords": "Single Gate Buff LVC CMOS Open Drain", + "functional_class": "interface", + "_sheet": 1, + "category": "ic", + "pin_nets": { + "3": "GND", + "1": "__unnamed_2", + "2": "nPWR_LED", + "4": "__unnamed_3", + "5": "/00000000-0000-0000-0000-00005cff70b1/+3.3v" + } + }, + { + "reference": "Module1", + "value": "ComputeModule5-CM5", + "lib_id": "CM5IO:ComputeModule5-CM5", + "lib_name": "", + "footprint": "CM5IO:Raspberry-Pi-5-Compute-Module", + "datasheet": "", + "description": "RaspberryPi Compute module 5", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 72.39, + "y": 77.47, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005dc6d7d8", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "cf686d81-9f88-4310-8cca-09c4155d1a81", + "10": "a7e4ce5c-98fb-48d0-9ff3-cdec8a457bcf", + "100": "2570aee6-6e18-4261-b22f-3d8d6a2e1ea5", + "11": "c9e56185-f336-4312-a98e-d42d46197976", + "12": "f364e29b-5711-4bf2-8799-5bbae295994d", + "13": "efb33de0-b764-4444-a29e-2b79ab867302", + "14": "131591c0-0ebb-44a4-b02e-592ed1debb2d", + "15": "92427605-f1a6-4b8d-b9ee-1721c0349167", + "16": "e1612cdc-ee8b-49c2-9424-f5cbb6a0c53e", + "17": "280b0630-d0d3-42bc-a3bf-d42ba3faa203", + "18": "0d0df2ac-f3f7-482e-ba7c-5f666b048a62", + "19": "8cb07eef-4e4e-47a5-9a8b-ea7986073b39", + "2": "bcecf866-87db-4f8d-b360-a530337f4827", + "20": "b5f14956-a9e6-4c63-951c-e4703e1cd030", + "21": "3ce75223-3147-40f3-b47b-f7fa88e08c27", + "22": "0ee88c70-b4a6-4a69-8494-c8cddbda5aef", + "23": "af7e52d1-be2a-4da2-9768-453b8924e9cd", + "24": "0a8229a4-9df7-43bb-a8d3-ff415d614cd1", + "25": "d978c51f-73a6-4c68-a2f0-34685b94acb5", + "26": "754b5411-6980-4296-853f-191c0eb30474", + "27": "14ff9087-b8eb-4ee6-bbfe-2436601097d4", + "28": "11cda506-0128-4093-b8a5-7efe9e45a170", + "29": "a3c7a0be-f018-44c9-b3c2-73fbc0d13b4a", + "3": "48c58df3-effd-400c-a749-bb7805bd9b54", + "30": "1422cffc-a6ff-4e64-b009-59da6be804dd", + "31": "38ab1f4f-649b-4964-b8f9-a4f320fd8fd4", + "32": "7514181d-4b93-44cc-9ca7-051e857346c5", + "33": "09932d00-40d2-44f7-a7a8-9b4da70484c9", + "34": "9caa825e-43a9-45d3-8dad-ce1e46623c13", + "35": "49e13fb6-9495-424e-bd9f-1ff5b065001b", + "36": "d17a8152-3efa-4cbc-b6d7-fac93119bd8f", + "37": "dc7fe6ab-e2e1-48c0-b2af-0f1c6ebb04ac", + "38": "059c55b9-3878-4a5d-8c36-f2e1ac20b66c", + "39": "41512000-8ddc-4c35-95f9-181a97b6f8de", + "4": "d47cd15e-87a5-4fca-ba12-29ea14d72c4e", + "40": "cdbabdff-d445-4ad0-8e7c-a52b2d06f74a", + "41": "4da6302c-cd1f-4909-89d2-621a3bbeb204", + "42": "c57e2c9b-795f-49e5-8ca2-7169d63a4374", + "43": "9ffa7a41-84e2-439f-ab9e-a1334179edc6", + "44": "f0660c30-1630-4fed-a3e9-3ee2ebca41e2", + "45": "8255a4a1-ab2d-4484-a456-579f6137ea5a", + "46": "ff4b84a8-44fb-443b-a568-552d59e4da52", + "47": "f59e37a0-83e4-49c9-8f65-5fe074c3ea86", + "48": "c2b59e2d-0fe7-43e7-af54-44a53e27c754", + "49": "c3d355e2-5a2e-4900-90d5-2140e7b8830b", + "5": "e3961296-b4c5-459d-a7b6-a37ca9fc9b04", + "50": "f75bced6-245a-490c-a39b-3a0d1b65c852", + "51": "38134ebd-0595-4638-9fc3-f48d527bf8a2", + "52": "d3e7f16d-a250-4de7-87e5-9bc710a55c24", + "53": "2cfd8b65-c57f-44e9-b75d-735b42146491", + "54": "b52fd3a8-77a9-486e-9d72-e8640bb775c2", + "55": "21b4b02d-73c0-4ae0-b147-e60dae395da4", + "56": "7e56433f-8047-4182-a23d-dde6a3760eda", + "57": "fe6381fb-e684-46de-8891-ee7b19da70c7", + "58": "c14e0e25-addb-4acf-be94-fc826be74200", + "59": "68d357fe-ef13-4a8c-b5b7-37c38f47c25e", + "6": "79554df7-9d43-44f1-8fa6-0ceeb5d746bd", + "60": "45a58a3c-0ae3-4319-9136-f718ae1af278", + "61": "47f8e668-273a-44f0-a487-9421f049d27f", + "62": "e2482bc1-8d09-4ceb-8e49-1d592e89906a", + "63": "af062573-b97b-4aa1-bea6-0733ff8c3373", + "64": "85718cbc-a90f-4e6a-81e3-0f34c8de5e82", + "65": "6b28a6c4-36d3-4664-8389-c43d55c8b7b4", + "66": "46a31d9d-311e-4951-9580-8458ea12a084", + "67": "d765feb8-0d2b-4f91-9055-021e050d2c2d", + "68": "d525482e-5dc6-4c44-b919-a131777fba8e", + "69": "39e74c5c-b798-4d06-8858-8667944befeb", + "7": "b5b9cc39-57c4-4b34-9753-47ab693cf9f1", + "70": "b0e60bf5-2ca9-4c6d-859b-816ea2de1be9", + "71": "87c4c6cd-a743-45fa-8a20-56ccd5bd596e", + "72": "6c1dc8fe-cd68-4d9d-b5d0-383668c0989d", + "73": "57943a54-0d5a-4776-92d5-28c3ef73c2a2", + "74": "8afdbac1-8ba5-475c-b038-16f606d61c74", + "75": "bf76e491-9dd7-40e2-950e-c79b71b72d93", + "76": "06af765d-0fb4-424b-b8bb-f25711eb599e", + "77": "66cf9899-100d-45fb-9b9f-8f866de8a3fe", + "78": "0fc4267c-2119-444e-b3b2-d8a7bd88ec8a", + "79": "e0e1ca09-86a2-4a1e-91c7-9e30fee9ab8c", + "8": "2f40c2ed-ea77-481a-b728-3e9572b94a99", + "80": "d5eff103-a41e-48a6-8a4d-2e4bc46feaa5", + "81": "d32b960b-36c8-46d0-9686-73cb0b40a548", + "82": "8f141cb6-d196-4940-89f8-4e8940598ec7", + "83": "9b2c3896-c54b-4cf2-8fa5-0036fca2d447", + "84": "6755f669-82b7-4ff1-bfd2-0c84dbe58282", + "85": "5b1d9dd6-e256-4086-9ce7-efa87daa8a99", + "86": "165b2e7b-1b46-4d73-a3c9-4eda1d2e3f87", + "87": "476d457b-c549-4355-a12e-b5454fb7f25c", + "88": "51a42fbb-e03a-42b8-8723-2ff8b13b7002", + "89": "50cd2860-5a3b-49f4-b0e5-143db7d397c7", + "9": "e6e5213e-6aad-48c9-a436-d90409753d19", + "90": "b9288ffb-24d0-402b-b179-78cd1bd46e32", + "91": "0f924090-ddb0-4e05-904c-8a63a32e091d", + "92": "201a0ca7-5d89-410f-baa8-63fe4094eb66", + "93": "675bb9b6-2005-4a9f-96b9-341a2d5d4912", + "94": "e8858172-31ad-4b9d-9cff-5ab15d2d3f69", + "95": "52993c55-48a5-4744-9dbb-f7eb4807ee61", + "96": "f4edeaa1-4cc0-4360-b5b4-a3eea7e42791", + "97": "351b096d-5254-458a-92e3-ec4c37dc4234", + "98": "9e6297e3-595a-45e9-bd9b-72048fbe738d", + "99": "c5f0e625-91e0-4e3b-82aa-8bf5701eb728", + "101": "aea881c4-8caf-467d-8340-1ce698551049", + "102": "724170ab-119b-4b45-8af7-13cc9bec0dba", + "103": "28e72ce0-e024-463e-87bd-42a4f46be6d1", + "104": "300c20a1-fc81-4917-9ba0-108968b73ee9", + "105": "486f3d58-274b-4e26-930e-64cc6478bb6c", + "106": "153fdbf7-776b-4db5-bea2-cd1d9c0f9562", + "107": "66207e11-76aa-462f-a686-57e6c136ce7b", + "108": "66a3fa14-a4dd-4744-a83d-cf9d06b1979d", + "109": "dfea6824-b19e-44be-837f-758d2443f576", + "110": "7e6cb0c5-2dfb-4b93-80a2-f479cdf69114", + "111": "6035b0c5-e2b1-4c89-a9d8-875e3e3ce498", + "112": "2e88dfec-2c12-426b-ba9f-3d2c6268a17e", + "113": "084c8618-326c-40ff-9450-3118db3944cf", + "114": "6c44260c-7a53-4136-8c7e-a2b73fbbd67f", + "115": "8545d7bb-b858-4960-92f4-17296cac0f20", + "116": "637c0c1c-0249-4fec-ae34-836a797ca960", + "117": "b8cb6787-b443-4f2b-b321-1c845ee99316", + "118": "84ab3fdb-7f4f-4ac9-ba69-3d653b260fd3", + "119": "f58a0090-0b2a-4c12-846b-76978c41198f", + "120": "e479b5bb-8476-4f42-a758-90407adcd69f", + "121": "b958b562-9436-48d9-b969-8bc2ff91e09e", + "122": "27a7a6fb-987e-49b8-ad5e-9612104284a8", + "123": "ef7a04f0-e75f-4abf-91b0-b0a6ceb45223", + "124": "32ba2c3e-0f16-4a1f-a816-e2c389b7123f", + "125": "fadce81f-827f-4983-b158-56de9699b2fe", + "126": "33f31515-b338-4c20-ab37-f9fd210a8428", + "127": "ff98ad0e-815b-41fd-a537-e38dbd834335", + "128": "04521550-f1af-40bf-86f9-f6b45855a401", + "129": "459ee465-a816-44a3-9cb0-317595e28031", + "130": "2555d332-98a2-40a5-810c-4583144af029", + "131": "4fb8a599-4e8a-42d4-a9ed-86d08bdb8ec7", + "132": "d322148a-3b76-4a4b-96f0-fb64b4611f38", + "133": "56185c3e-52d1-41ad-b397-ad1d12738be0", + "134": "af5cfc5c-aa2b-43ec-a91c-e7aa79af05d5", + "135": "f0594829-acff-4eee-892e-7f1ae622e69e", + "136": "1897ea92-1b93-4b6d-9dbd-660e4346ee3b", + "137": "e1bab841-57e1-4e18-af31-52db7c130226", + "138": "37f5376f-ad19-4a72-b0d3-51644eb7a8fe", + "139": "ee85e469-359b-4b69-b999-232795eb053b", + "140": "66632d4d-3728-43fe-afcb-622f62034031", + "141": "48d804f0-994e-4745-981a-62eeaf8c0596", + "142": "be5daddc-4c37-4cec-90b0-f4631727a24a", + "143": "fe462979-80e8-4735-9063-d4e53649516e", + "144": "65daa22e-4022-4d00-bec1-b48ddb1e6199", + "145": "a0338d03-c341-4cc7-955f-205be35815d3", + "146": "1ac2f3e7-32f4-4a20-a4cf-9aa6e183557a", + "147": "c7f135ea-84fe-4525-8bc3-f06e68e9afb1", + "148": "1023dd18-b45b-4a56-9b9c-1d8978036cd6", + "149": "d17d595e-6e32-4f37-8617-4a782c60cf2c", + "150": "a44f3dec-7a5f-40ec-9840-97966a4b3952", + "151": "869baa06-e51c-4c0b-a89f-48c895eb00a6", + "152": "3ced1108-0289-4b99-bda1-5515398a9ff1", + "153": "fecb8832-dff3-482a-91df-29da98b3a970", + "154": "052139c4-7ae8-4247-ab0d-b9cb3a0172ac", + "155": "cb550739-a5e0-41bd-a4ef-12f87d2c0bfe", + "156": "768c92f2-7260-4dc9-9198-50978b902139", + "157": "5542b51c-6a27-4f13-9c6e-28231b4ba885", + "158": "6fe71729-0733-4b9f-a5ef-36dd203049e4", + "159": "e7748ca0-874a-49cf-a53f-c6240a650a1e", + "160": "27fcaebd-ac3c-4289-96f4-c89d2d1d9ab9", + "161": "e5915a5c-4e0f-4545-a1b8-44026239a08d", + "162": "b2916a44-1d85-4301-91ac-b002dec85966", + "163": "8feabcda-4da4-4112-95ab-fd8c32ae6222", + "164": "4cf25d9d-67bb-471b-8ed1-8554218f8a3f", + "165": "1f41811d-a280-4499-a295-e04d63817c9a", + "166": "3853d479-0ed4-4e93-86dc-85b126dc4901", + "167": "3973d42c-f680-464a-b6ff-bc22c894af71", + "168": "538545de-5979-4023-9b86-a29b49026173", + "169": "dadc0f59-9092-416f-ba60-bcf46e34bc07", + "170": "174b605b-55bd-4438-8a96-99c25fbe857b", + "171": "951e4e0b-d1df-4f5d-a084-bf9fe994195f", + "172": "a3a8d500-8be5-428e-8b68-9b0c9642d6bf", + "173": "488b79a2-bba5-4c64-89e8-7313f01d08af", + "174": "7fba28f8-bae3-44d0-b68e-84effdc334b2", + "175": "aec1f2d7-4aca-41de-9639-9336022eaa44", + "176": "6478691b-0612-41d1-9d2d-c9f5ce4e612c", + "177": "8ead4e82-f9ea-47b6-9dbe-f7fe9cb15065", + "178": "fd290d96-aa1e-4ae9-85f4-20619772607d", + "179": "780ce7d6-c4a9-4af9-a8be-3e59b1966ed2", + "180": "8d150451-59a7-4046-8287-1bbce0ffdd7d", + "181": "949fb558-5f46-43f4-8f34-ceff3a4a0ffa", + "182": "10172055-f30d-445c-9418-7350ca9069f4", + "183": "39e7e9a1-2498-4c99-852c-59eb9f926cc0", + "184": "9503c37b-853b-4136-b4e5-be9e4fddbfdb", + "185": "42b1deb0-c69b-4760-92f6-cd34d3385767", + "186": "33f2e6e0-b55c-492d-ba38-c20f746f1190", + "187": "d19bc7cd-94fb-4e4e-8179-b18aa888f36a", + "188": "28d48e1c-8076-4979-83c4-8f19ae5a35b7", + "189": "2209de7b-631a-48a8-ac78-c1cd8cc5ddc4", + "190": "fddac95b-1361-424a-be49-9622a96aea98", + "191": "d5e231c1-65d1-4dad-b3a2-eb6d9e548f15", + "192": "93546868-a8eb-479b-a3b0-12858a5e2530", + "193": "2ae98b11-8cb7-4363-9842-a5e60ac8f67e", + "194": "95f2bba0-cb44-4335-9ea2-9f092a7386ae", + "195": "966038a4-8a1c-45f7-a3a7-0c20318d6c21", + "196": "dc0866f7-05a9-47a2-96f4-00bad9a6a4d5", + "197": "8f75a78f-fdd9-488d-a15d-6e625420973e", + "198": "a7b516b7-e216-467f-8af0-75441e90d7cb", + "199": "f62fd667-6085-442c-a14e-928627885059", + "200": "54cd07ae-2c6c-4038-9598-b6e1df70795e" + }, + "type": "other", + "keywords": "", + "_sheet": 1, + "category": "other", + "pin_nets": { + "1": "GND", + "13": "GND", + "14": "GND", + "2": "GND", + "22": "GND", + "23": "GND", + "32": "GND", + "33": "GND", + "42": "GND", + "43": "GND", + "52": "GND", + "53": "GND", + "59": "GND", + "60": "GND", + "65": "GND", + "66": "GND", + "7": "GND", + "71": "GND", + "74": "GND", + "8": "GND", + "98": "GND", + "77": "/00000000-0000-0000-0000-00005cff706a/+5v", + "79": "/00000000-0000-0000-0000-00005cff706a/+5v", + "81": "/00000000-0000-0000-0000-00005cff706a/+5v", + "83": "/00000000-0000-0000-0000-00005cff706a/+5v", + "85": "/00000000-0000-0000-0000-00005cff706a/+5v", + "87": "/00000000-0000-0000-0000-00005cff706a/+5v", + "94": "/00000000-0000-0000-0000-00005cff706a/CC1", + "96": "/00000000-0000-0000-0000-00005cff706a/CC2", + "95": "nPWR_LED", + "84": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "86": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "10": "TRD0_N", + "100": "__unnamed_4", + "11": "TRD2_P", + "12": "TRD0_P", + "15": "ETH_LEDY", + "16": "TACHO", + "17": "ETH_LEDG", + "18": "SYNC_OUT", + "19": "PWM", + "20": "EEPROM_nWP", + "21": "__unnamed_5", + "24": "GPIO26", + "25": "GPIO21", + "26": "GPIO19", + "27": "GPIO20", + "28": "GPIO13", + "29": "GPIO16", + "3": "TRD3_P", + "30": "GPIO6", + "31": "GPIO12", + "34": "GPIO5", + "35": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "36": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "37": "GPIO7", + "38": "GPIO11", + "39": "GPIO8", + "4": "TRD1_P", + "40": "GPIO9", + "41": "GPIO25", + "44": "GPIO10", + "45": "GPIO24", + "46": "GPIO22", + "47": "GPIO23", + "48": "GPIO27", + "49": "GPIO18", + "5": "TRD3_N", + "50": "GPIO17", + "51": "GPIO15", + "54": "GPIO4", + "55": "GPIO14", + "56": "GPIO3", + "57": "__unnamed_6", + "58": "GPIO2", + "6": "TRD1_N", + "61": "__unnamed_7", + "62": "__unnamed_8", + "63": "__unnamed_9", + "64": "__unnamed_10", + "67": "__unnamed_11", + "68": "__unnamed_12", + "69": "__unnamed_13", + "70": "__unnamed_14", + "72": "__unnamed_15", + "73": "__unnamed_16", + "75": "__unnamed_17", + "76": "VBAT", + "78": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "80": "__unnamed_18", + "82": "__unnamed_19", + "88": "+1.8v", + "90": "+1.8v", + "89": "WL_nDis", + "9": "TRD2_N", + "91": "BT_nDis", + "92": "PWR_BUT", + "93": "nRPIBOOT", + "97": "__unnamed_20", + "99": "PMIC_ENABLE" + } + }, + { + "reference": "C1", + "value": "100n", + "lib_id": "Device:C", + "lib_name": "", + "footprint": "Capacitor_SMD:C_0402_1005Metric", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 228.6, + "y": 41.91, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005dcc8bb6", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "2cb9c49e-82d7-476b-bc58-8c6fff3dddf8", + "2": "4bb5736a-d22c-47e8-a09f-02490b2d7b1d" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 1, + "category": "capacitor", + "parsed_value": 1.0000000000000001e-07, + "pin_nets": { + "2": "GND", + "1": "__unnamed_21" + } + }, + { + "reference": "J9", + "value": "THD-02-R", + "lib_id": "Connector_Generic:Conn_02x02_Odd_Even", + "lib_name": "", + "footprint": "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 205.74, + "y": 90.17, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005dd09d38", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "7670d6a4-669e-4a95-8178-29fc8bb78054", + "2": "4a8f9efa-0cc8-49f1-a296-c0ae29b30fa4", + "3": "d41115c9-7c02-4897-9fd1-4a591b7b2833", + "4": "9acfcfc7-989c-4acc-abb2-e00b92310a55" + }, + "type": "connector", + "keywords": "connector", + "is_external_connector": false, + "connector_layout": "dual", + "_sheet": 1, + "category": "connector", + "pin_nets": { + "1": "TR1_TAP", + "2": "TR2_TAP", + "3": "TR0_TAP", + "4": "TR3_TAP" + } + }, + { + "reference": "J8", + "value": "THD-20-R", + "lib_id": "Connector_Generic:Conn_02x20_Odd_Even", + "lib_name": "", + "footprint": "Connector_PinHeader_2.54mm:PinHeader_2x20_P2.54mm_Vertical", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 157.48, + "y": 46.99, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005dd3ddee", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "4ca1471d-e84a-43e6-9ec2-ac5bbbc86c1a", + "10": "d6a10cc9-e23d-4cff-880c-1c4e7c655172", + "11": "94730dbb-de24-4d1d-bbd2-23a5677884a2", + "12": "68a9e0d6-2c5b-4b0d-80b6-468567de10b2", + "13": "b407a461-6c5c-47f0-9bdb-869e25d7cc7f", + "14": "da90d19a-0e7e-4050-931c-1a89ae1517e3", + "15": "d698e8ba-f846-4664-9811-56600cef7a13", + "16": "dd792a1f-5f61-4685-b19e-ee5d59c531f5", + "17": "69428fcf-c4b7-4246-91ed-cfe5d045b05f", + "18": "1344c258-0a0e-4ec4-be37-1204c6a78d6a", + "19": "76585e07-3216-453f-b827-82d9c90a2876", + "2": "d8f086f0-c0a8-403b-adaf-40c349e5337e", + "20": "b4d73ef7-d069-453b-a7bd-227eec81fabc", + "21": "3ac1108e-506a-4c75-b603-f9a6a39785e0", + "22": "79fc1ef9-e921-4832-95d3-5ae7ff6b03fb", + "23": "ef546906-3f95-4037-a4d5-06936948161a", + "24": "9c5eb8ba-0370-4530-b0dd-d326ff9cd796", + "25": "5ce1aa0c-f98f-4b94-80bd-f188cf4c57de", + "26": "93ca340a-e8ae-4e1b-bdac-fe7f0eea36ae", + "27": "047ad835-c24f-4b94-8c87-da79f6183cc4", + "28": "aec76fa7-ca3b-4002-827b-890c008964e6", + "29": "646cbadb-b1e3-4f3d-b836-1d0a4642fad3", + "3": "b766fba3-ed3c-4f2a-a7b1-a58173e2399a", + "30": "56debd93-4345-487f-acb9-09e1591e88c2", + "31": "91c9312f-49bd-43e5-9ab5-9233b64d7f4a", + "32": "1129c821-4221-413a-b124-7cd2b452dee3", + "33": "5a703fbc-431f-40f4-ad99-bbe431b7f329", + "34": "ab1be128-b506-44db-b353-1b6cf0f1bff8", + "35": "c11800a1-7754-4ac5-a9a8-c6989ec2e1ac", + "36": "e494b54b-7300-4f8c-8bb9-32c84d3e63f0", + "37": "31d3bb61-3ab8-4ee5-98f7-19fcbef58004", + "38": "7b448334-a672-4f67-8bb7-9dc7daa7fefe", + "39": "a73753d8-f00b-4be9-a8c8-167668e414ea", + "4": "702adbad-cc32-40cc-8557-12ccbcc447f5", + "40": "7da14e3c-031d-42a9-a820-92c0765992b7", + "5": "b73189eb-ce33-4fd6-899f-a0fe6fefce38", + "6": "2cde09e2-1478-4e90-84f2-de808fbc4e00", + "7": "875d8101-02ec-4109-9cb3-dc03033ea564", + "8": "09518f18-8c5c-4629-8039-76c971a8c2f1", + "9": "8f3eb88d-9ce9-4013-ad67-32b8876a01b4" + }, + "type": "connector", + "keywords": "connector", + "is_external_connector": true, + "connector_layout": "dual", + "_sheet": 1, + "category": "connector", + "pin_nets": { + "14": "GND", + "20": "GND", + "25": "GND", + "30": "GND", + "34": "GND", + "39": "GND", + "6": "GND", + "9": "GND", + "2": "/00000000-0000-0000-0000-00005cff706a/+5v", + "4": "/00000000-0000-0000-0000-00005cff706a/+5v", + "1": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "17": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "37": "GPIO26", + "40": "GPIO21", + "35": "GPIO19", + "38": "GPIO20", + "33": "GPIO13", + "36": "GPIO16", + "31": "GPIO6", + "32": "GPIO12", + "29": "GPIO5", + "28": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "27": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "26": "GPIO7", + "23": "GPIO11", + "24": "GPIO8", + "21": "GPIO9", + "22": "GPIO25", + "19": "GPIO10", + "18": "GPIO24", + "15": "GPIO22", + "16": "GPIO23", + "13": "GPIO27", + "12": "GPIO18", + "11": "GPIO17", + "10": "GPIO15", + "7": "GPIO4", + "8": "GPIO14", + "5": "GPIO3", + "3": "GPIO2" + } + }, + { + "reference": "R2", + "value": "470R", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 232.41, + "y": 74.93, + "angle": 270.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e09a5b2", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "f2b36193-b632-424c-b534-9f2f874f65c5", + "2": "62a0b005-d543-412f-93b9-72a8d1c3610c" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 1, + "category": "resistor", + "parsed_value": 470.0, + "pin_nets": { + "2": "ETH_LEDG", + "1": "__unnamed_22" + } + }, + { + "reference": "R3", + "value": "470R", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 232.41, + "y": 80.01, + "angle": 270.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e0adefe", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "cfbc958e-3fb8-49ab-a1a0-0abbb8af3f4b", + "2": "8197234b-d466-4dd0-b29a-d8c861bfb7ac" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 1, + "category": "resistor", + "parsed_value": 470.0, + "pin_nets": { + "2": "ETH_LEDY", + "1": "__unnamed_23" + } + }, + { + "reference": "D2", + "value": "LED Green", + "lib_id": "Device:LED", + "lib_name": "", + "footprint": "LED_SMD:LED_0603_1608Metric", + "datasheet": "http://optoelectronics.liteon.com/upload/download/DS22-2000-226/LTST-S270KGKT.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 116.84, + "y": 27.94, + "angle": 90.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e19548d", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "fd1b2abd-acdb-456a-b12a-78be5659d6b2", + "2": "241e4967-98ec-42a7-b49a-322999e65405" + }, + "type": "led", + "keywords": "LED diode", + "_sheet": 1, + "category": "led", + "pin_nets": { + "2": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "1": "__unnamed_24" + } + }, + { + "reference": "R1", + "value": "1k", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 116.84, + "y": 40.64, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e19768b", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "ca7b197f-7808-47de-a461-95f69fe0e8ed", + "2": "7c70e3d7-b867-41ec-ba63-281d778af73f" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 1, + "category": "resistor", + "parsed_value": 1000.0, + "pin_nets": { + "2": "__unnamed_5", + "1": "__unnamed_24" + } + }, + { + "reference": "D1", + "value": "LED Red", + "lib_id": "Device:LED", + "lib_name": "LED_1", + "footprint": "LED_SMD:LED_0603_1608Metric", + "datasheet": "http://optoelectronics.liteon.com/upload/download/DS22-2000-210/LTST-S270KRKT.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 172.72, + "y": 119.38, + "angle": 90.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e286645", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "9c352ce5-8dcd-4676-8f85-0d97597fd098", + "2": "4035c6d5-0218-4683-a405-7b7b1fd841f8" + }, + "type": "led", + "keywords": "LED diode", + "_sheet": 1, + "category": "led", + "pin_nets": { + "2": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "1": "__unnamed_25" + } + }, + { + "reference": "R10", + "value": "1k", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 172.72, + "y": 129.54, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e28664f", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "0ec6de6a-5daa-4a3a-bcf9-49d82195b230", + "2": "16c12f8d-a9ce-4e1f-b395-2ad0bc43e76b" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 1, + "category": "resistor", + "parsed_value": 1000.0, + "pin_nets": { + "2": "__unnamed_3", + "1": "__unnamed_25" + } + }, + { + "reference": "U2", + "value": "TPD4EUSB30", + "lib_id": "CM5IO:TPD4EUSB30", + "lib_name": "", + "footprint": "Package_SON:USON-10_2.5x1.0mm_P0.5mm", + "datasheet": "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 207.01, + "y": 62.23, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e48728e", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "113c2e5c-5d21-44b9-9699-61a03d05b219", + "10": "3fab55da-a730-4225-adf1-b91eeeb16267", + "2": "6eb8a12c-f7dd-45db-ac57-5cf35b00d623", + "3": "6f893dfa-8241-4004-a564-8340bce225c5", + "4": "1ee3dc48-8cba-4d55-baee-99d61bca8a95", + "5": "7b7956cd-1bdf-4509-92c9-b55e8439ae86", + "6": "252ee15c-9ab5-448c-b1d6-904530764041", + "7": "9c946c42-87b3-4cd8-b0a1-90fe0d9167f2", + "8": "a4e9d70b-0682-4de7-a82a-24ad7fb3af1b", + "9": "b7676e80-9730-4696-8871-001d34b8b393" + }, + "type": "ic", + "keywords": "ESD protection USB 3.0", + "functional_class": "protection", + "_sheet": 1, + "category": "ic", + "pin_nets": { + "3": "GND", + "8": "GND", + "4": "TRD0_N", + "7": "TRD0_N", + "5": "TRD0_P", + "6": "TRD0_P", + "1": "TRD1_P", + "10": "TRD1_P", + "2": "TRD1_N", + "9": "TRD1_N" + } + }, + { + "reference": "TP5", + "value": "TestPoint", + "lib_id": "Connector:TestPoint", + "lib_name": "", + "footprint": "TestPoint:TestPoint_Pad_2.0x2.0mm", + "datasheet": "", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 167.64, + "y": 124.46, + "angle": 90.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e5bd558", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": { + "1": "32ad7fbe-e026-4d57-9f6b-f4af30c894d9" + }, + "type": "test_point", + "keywords": "test point tp", + "_sheet": 1, + "category": "test_point", + "pin_nets": { + "1": "__unnamed_25" + } + }, + { + "reference": "R5", + "value": "0R", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 156.21, + "y": 91.44, + "angle": 90.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e5f44e8", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "20f86032-2ca7-4d85-9342-2ec7dd95b228", + "2": "bb94c706-c1c6-4e19-ac2a-271d09f29af0" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 1, + "category": "resistor", + "parsed_value": 0.0, + "pin_nets": { + "1": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "2": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF" + } + }, + { + "reference": "R4", + "value": "nf", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 156.21, + "y": 95.25, + "angle": 90.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e5f7bb2", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": { + "1": "66b7ab9e-b2bf-4ee7-8912-f23a2d210480", + "2": "202557b3-1d57-491a-8c53-22fb6f02d7ed" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 1, + "category": "resistor", + "pin_nets": { + "2": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "1": "+1.8v" + } + }, + { + "reference": "J2", + "value": "Conn_02x07_Odd_Even", + "lib_id": "Connector_Generic:Conn_02x07_Odd_Even", + "lib_name": "", + "footprint": "Connector_PinHeader_2.54mm:PinHeader_2x07_P2.54mm_Vertical", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 36.83, + "y": 177.8, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e70fd78", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "20ec6350-74a5-4d42-b316-fcebf33d4f1f", + "10": "7bcd2b39-3ed2-4d2c-8455-de5fcab07493", + "11": "d08ce24e-7717-4be5-87bb-ae091c6d4b8b", + "12": "5066ec9a-19df-47c4-8835-fbd519c75492", + "13": "dab29796-d6b3-4d2d-805f-0b5d2109d9de", + "14": "fc83cf23-e446-4a86-a627-d51de5b41357", + "2": "c81031fb-1f04-4fac-8d59-ac8a1a81a15c", + "3": "62832516-11f1-4f5c-b685-8f41c44bdcd7", + "4": "bdd0b335-10a1-4a58-b644-8a502b93dd0b", + "5": "b0435ce7-bdba-4ce7-b15a-4c85a5fe1252", + "6": "854c8829-725c-43a9-9fc5-c324d25b9b34", + "7": "4bc86510-eacc-4743-bf0b-cadae3d7b4b3", + "8": "f9ff75f9-641a-49cb-8196-d4ed678570a7", + "9": "2451d668-51ff-44ab-acfe-cfe666fa0c7e" + }, + "type": "connector", + "keywords": "connector", + "is_external_connector": true, + "connector_layout": "dual", + "_sheet": 1, + "category": "connector", + "pin_nets": { + "1": "GND", + "11": "GND", + "13": "GND", + "3": "GND", + "5": "GND", + "7": "GND", + "9": "GND", + "6": "SYNC_OUT", + "4": "EEPROM_nWP", + "14": "PWR_BUT", + "2": "nRPIBOOT", + "12": "PMIC_ENABLE", + "10": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "8": "__unnamed_26" + } + }, + { + "reference": "J3", + "value": "Conn_01x03", + "lib_id": "Connector_Generic:Conn_01x03", + "lib_name": "", + "footprint": "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 123.19, + "y": 133.35, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e95ca2d", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": { + "1": "21c25529-23d9-48dd-b470-801777c483af", + "2": "5f8f5622-0fae-4eeb-bf3b-6112a55f318d", + "3": "ac2dd344-9bcd-43ef-97cf-410a56901723" + }, + "type": "connector", + "keywords": "connector", + "is_external_connector": false, + "connector_layout": "dual", + "_sheet": 1, + "category": "connector", + "pin_nets": { + "2": "GND", + "1": "WL_nDis", + "3": "BT_nDis" + } + }, + { + "reference": "U1", + "value": "TPD4EUSB30", + "lib_id": "CM5IO:TPD4EUSB30", + "lib_name": "", + "footprint": "Package_SON:USON-10_2.5x1.0mm_P0.5mm", + "datasheet": "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 207.01, + "y": 30.48, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005ea6ace7", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "a5c104d3-89c9-4abc-a64e-c0025d27215c", + "10": "cbdd1bbf-3cd0-4ee4-887c-601a6f0db5ee", + "2": "24a6640c-c25f-456d-8c74-892f609dcf13", + "3": "fd050c79-bed7-4987-a57a-77020a3e1a94", + "4": "7ab7b1db-1ff2-493f-8f9c-36792ad21c73", + "5": "bf1f6226-2275-4b86-9c1d-d63e3a6430dd", + "6": "53dd890e-5aba-493f-87ec-8a34bea86d70", + "7": "ca4b2a77-5a71-40ab-b178-0276e8dd2714", + "8": "8bcfde59-b85c-43bb-9e8e-e5706baedd16", + "9": "ed045454-339e-41b3-adf7-74925ba99853" + }, + "type": "ic", + "keywords": "ESD protection USB 3.0", + "functional_class": "protection", + "_sheet": 1, + "category": "ic", + "pin_nets": { + "3": "GND", + "8": "GND", + "5": "TRD2_P", + "6": "TRD2_P", + "1": "TRD3_P", + "10": "TRD3_P", + "2": "TRD3_N", + "9": "TRD3_N", + "4": "TRD2_N", + "7": "TRD2_N" + } + }, + { + "reference": "BT1", + "value": "Battery_Cell", + "lib_id": "Device:Battery_Cell", + "lib_name": "", + "footprint": "CM5IO:BatteryHolder_Keystone_3034_1x20mm", + "datasheet": "https://www.keyelco.com/userAssets/file/M65p9.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 111.76, + "y": 176.53, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "11b63360-04fd-4616-9fc5-ed1550e3c4f5", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "afb3c71c-5c1b-4a5e-a94b-014fff5120e7", + "2": "2febe397-9bc0-4cc1-9ead-cc00ed992d01" + }, + "type": "battery", + "keywords": "battery cell", + "_sheet": 1, + "category": "battery", + "pin_nets": { + "2": "GND", + "1": "VBAT" + } + }, + { + "reference": "U3", + "value": "MagJack-A70-112-331N126", + "lib_id": "CM5IO:MagJack-A70-112-331N126", + "lib_name": "", + "footprint": "CM5IO:TRJG0926HENL", + "datasheet": "https://p.globalsources.com/IMAGES/PDT/SPEC/690/K1160305690.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 267.97, + "y": 92.71, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "1fd45676-ece1-46f4-b6d1-0d78a89f20ca", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "ffcbff8e-ab26-41db-bf1a-b4c132bdb8a6", + "10": "32e6d5f9-b73a-409b-a341-b80aa666fbb4", + "11": "9d5ddb59-1e9e-4537-9599-057acace239b", + "12": "cd8fc82c-2372-4ab9-b58f-1c5bd1ca2b34", + "13": "31bc72e3-7b37-4039-ae03-b411f4438425", + "14": "b84bbe17-09c8-4aea-bd95-af34a96a069c", + "15": "2eae7d9d-0d7d-4755-80a4-ff458c263895", + "16": "b3dc6ebf-2791-42b3-a514-444efd66de71", + "17": "6f29f4c3-a661-4405-981e-bd400129444f", + "18": "e9b3c7ab-9a7d-41ab-b41f-c521c2f31bd3", + "19": "414c44f1-6dc8-47ac-8734-d071cba6d2ba", + "2": "3a95a55b-8a78-4e07-8313-782b4be21acd", + "20": "6551c37f-9afc-4b25-9b2a-c1739b8edf17", + "3": "ce87f310-f0ba-406a-b736-4ce38509611a", + "4": "5a8a64e8-0b04-48e4-b608-5cc887a127c8", + "5": "074bd178-4b8d-4443-a5fb-cfcbc87a942c", + "6": "616d2ae0-660e-4201-aead-18acef1aaa51", + "7": "5c9a0412-4fb3-44e0-8564-dd1f1d19974f", + "8": "4bcce46c-d9ae-4ab2-a9c8-5cc8f50b0e43", + "9": "de4ed296-9fb5-4bc2-9de6-dd78d5bf94a9" + }, + "type": "ic", + "keywords": "", + "functional_class": "other_ic", + "_sheet": 1, + "category": "ic", + "pin_nets": { + "19": "GND", + "20": "GND", + "15": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "17": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "2": "TRD0_N", + "7": "TRD2_P", + "1": "TRD0_P", + "9": "TRD3_P", + "3": "TRD1_P", + "10": "TRD3_N", + "6": "TRD1_N", + "8": "TRD2_N", + "4": "__unnamed_21", + "5": "__unnamed_21", + "12": "TR1_TAP", + "13": "TR2_TAP", + "11": "TR0_TAP", + "14": "TR3_TAP", + "16": "__unnamed_22", + "18": "__unnamed_23" + } + }, + { + "reference": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "lib_id": "Connector_Generic:Conn_01x04", + "lib_name": "", + "footprint": "Connector_JST:JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical", + "datasheet": "", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 152.4, + "y": 170.18, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "6aeabf3a-c9eb-43e4-983c-5a4d5e9c1160", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "4d9421e1-a748-4fa7-a9dc-d87a661c0564", + "2": "efe0c997-9709-4e54-b9b3-bef7f7d6baa0", + "3": "9b97d13a-bfc1-499e-9b09-38ac7754ef2f", + "4": "425a3672-f282-4190-91cf-6eed05366832" + }, + "type": "connector", + "keywords": "connector", + "is_external_connector": true, + "connector_layout": "dual", + "_sheet": 1, + "category": "connector", + "pin_nets": { + "3": "GND", + "1": "/00000000-0000-0000-0000-00005cff706a/+5v", + "4": "TACHO", + "2": "PWM" + } + }, + { + "reference": "SW1", + "value": "Right angle Tact button", + "lib_id": "Switch:SW_Push", + "lib_name": "", + "footprint": "Button_Switch_THT:SW_Tactile_SPST_Angled_PTS645Vx58-2LFS", + "datasheet": "https://www.mouser.co.uk/datasheet/2/240/Littelfuse-3050591.pdf", + "description": "Push button switch, generic, two pins", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 80.01, + "y": 175.26, + "angle": 270.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "6d6b7ec1-ac41-45c8-9cb4-3895d23e2861", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "9843560a-ccf5-47dd-bf25-d2df0bffae2b", + "2": "80bf1f2e-f8bd-43f5-a624-fdabf0dbca86" + }, + "type": "switch", + "keywords": "switch normally-open pushbutton push-button", + "_sheet": 1, + "category": "switch", + "pin_nets": { + "2": "GND", + "1": "PWR_BUT" + } + }, + { + "reference": "TP3", + "value": "TestPoint", + "lib_id": "Connector:TestPoint", + "lib_name": "", + "footprint": "TestPoint:TestPoint_Pad_2.0x2.0mm", + "datasheet": "", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 123.19, + "y": 34.29, + "angle": 270.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "a747e8fd-28f4-402b-969b-2c8e62ca6408", + "in_bom": false, + "dnp": true, + "on_board": true, + "pin_uuids": { + "1": "974678fc-a03f-4be4-9b67-a5d08857a8c2" + }, + "type": "test_point", + "keywords": "test point tp", + "_sheet": 1, + "category": "test_point", + "pin_nets": { + "1": "__unnamed_24" + } + }, + { + "reference": "R6", + "value": "2.2K 1%", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 207.01, + "y": 110.49, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005d3423d2", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "eca8c1f1-6751-4304-8a65-b05952048507", + "2": "35506831-8c22-45ab-9b57-69eb0f9ef003" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 2, + "category": "resistor", + "parsed_value": 2200.0, + "pin_nets": { + "1": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "2": "__unnamed_27" + } + }, + { + "reference": "R7", + "value": "2.2K 1%", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 214.63, + "y": 110.49, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005d343651", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "56dc9d1a-d125-4218-be7e-afbadad9f13c", + "2": "ea020aa6-c820-47b1-bdf7-82790dcca121" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 2, + "category": "resistor", + "parsed_value": 2200.0, + "pin_nets": { + "1": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "2": "__unnamed_28" + } + }, + { + "reference": "C13", + "value": "100n", + "lib_id": "Device:C", + "lib_name": "", + "footprint": "Capacitor_SMD:C_0402_1005Metric", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 229.87, + "y": 151.13, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005da83896", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "fb4e7351-d265-4999-adf6-bc7596c21cf3", + "2": "119c633c-175b-4b38-bbc1-1a076032c16e" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 2, + "category": "capacitor", + "parsed_value": 1.0000000000000001e-07, + "pin_nets": { + "2": "GND", + "1": "__unnamed_29" + } + }, + { + "reference": "C12", + "value": "100n", + "lib_id": "Device:C", + "lib_name": "", + "footprint": "Capacitor_SMD:C_0402_1005Metric", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 196.85, + "y": 151.13, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005daa0732", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "7308e13a-4809-4e8e-af65-9905819aa376", + "2": "91c69423-de51-44fe-bc70-fec455b50634" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 2, + "category": "capacitor", + "parsed_value": 1.0000000000000001e-07, + "pin_nets": { + "2": "GND", + "1": "/00000000-0000-0000-0000-00005cff706a/+5v" + } + }, + { + "reference": "U12", + "value": "RT9742SNGV", + "lib_id": "CM5IO:RT9742SNGV", + "lib_name": "", + "footprint": "Package_TO_SOT_SMD:TSOT-23_HandSoldering", + "datasheet": "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 213.36, + "y": 151.13, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005dad5ba8", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "42b7a68a-3837-4773-af68-a35059da48c3", + "2": "dfa2c928-7d9a-4cd3-90db-112716296421", + "3": "b7340f23-0eaa-48ae-aea8-b5b53a0ae99a" + }, + "type": "ic", + "keywords": "", + "functional_class": "other_ic", + "_sheet": 2, + "category": "ic", + "pin_nets": { + "3": "GND", + "1": "/00000000-0000-0000-0000-00005cff706a/+5v", + "2": "__unnamed_29" + } + }, + { + "reference": "Module1", + "value": "ComputeModule5-CM5", + "lib_id": "CM5IO:ComputeModule5-CM5", + "lib_name": "", + "footprint": "CM5IO:Raspberry-Pi-5-Compute-Module", + "datasheet": "", + "description": "RaspberryPi Compute module 5", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": -71.12, + "y": 86.36, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 2, + "uuid": "00000000-0000-0000-0000-00005e471fb9", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "572b3416-10dc-424b-a692-7c4d190a122a", + "10": "16cb3d00-1efe-4adf-b079-5aeae0cbdf76", + "100": "8b9f5b38-e948-4b14-a03c-bda09385ac53", + "11": "01ffbfdb-09bb-41b8-8cff-4a6dc54a32df", + "12": "b0211353-9c1f-4fe5-b812-bff7ee0d04df", + "13": "2ca83e86-5727-45b2-a22e-b9e3a7a42b8b", + "14": "f2dff45e-6124-4f53-8601-35754529714b", + "15": "1653988e-4af3-4feb-86de-82f3c0c6687e", + "16": "90e23f8d-4893-48de-aca9-fa09e49323c4", + "17": "6f8054d4-2934-499c-bda4-8ec68f1d2c9d", + "18": "86961c66-8441-4d53-a0d5-72fa94a01f4a", + "19": "390f8c51-eaaa-456a-8824-a41f86856d8a", + "2": "7f165692-929e-4a8b-9f3a-918c3b4b51a9", + "20": "ba388307-07be-435f-9bc9-34c6cc828fca", + "21": "8ff03bdb-dcd5-4ba7-8003-dee1dff5fec1", + "22": "b08b097e-b028-46d2-a8df-9a27c0408910", + "23": "2e734587-ef95-4207-9eec-a52977f89919", + "24": "a4bc01ae-f44c-4df2-83a7-4c594790b6c8", + "25": "a7c8a48d-8907-4625-b68f-642683572bb9", + "26": "927ad928-20e5-4411-b05e-c1367b74ae0e", + "27": "e9e40a8a-eb1d-435d-84b3-8b2b5c58bb4b", + "28": "ffa2cc3a-c965-46c0-b7e0-4deb5e97b83c", + "29": "7a6820c7-6757-47c2-8a7e-8ab9f1aa9ef4", + "3": "8a53184e-e60e-4015-bf3b-527729488da4", + "30": "38cf056e-f877-4da2-90a4-82c46f930335", + "31": "f7447608-d0b9-472d-82d9-9ded708c1994", + "32": "a6c007ed-6b74-446a-b634-07a9136b1d6d", + "33": "09335ac1-1045-4e38-967a-0d8c3d04bee8", + "34": "11537d71-357f-4c99-9694-f9265473aa8c", + "35": "4911c60c-b1f9-42ec-b56b-f646f637196b", + "36": "bd7b9b84-a521-46b8-a316-8c983f2bd658", + "37": "ef174540-a358-417b-8eae-88ae3814e168", + "38": "42963194-a343-4cb5-99ef-b6d761012529", + "39": "7f7f3964-07a0-4f2c-89eb-15ae8cd2dfad", + "4": "c0545133-0206-49aa-a33b-08f96c8bf40d", + "40": "22bf9612-eedd-48f1-96ba-354f46245b28", + "41": "c91d9b05-6c78-421b-b494-3347d6ee253b", + "42": "a451704b-03b5-4c25-bdda-5efbda0ae5ee", + "43": "f7505dc4-bed7-4d77-ab9b-74d6a15195e8", + "44": "94582087-7fdd-46db-a291-b2d7c8174a74", + "45": "ad832267-252b-4ab5-b2de-08062adc5e06", + "46": "fd381254-755e-4522-a610-a5c444e3a9ab", + "47": "0a56bbe0-4f07-4a8e-b813-30cb92c316d9", + "48": "ca475b36-41c0-4bda-bbb8-efdb411cb7d5", + "49": "274bdd5a-e6fc-44f8-8fda-7e4c5ed60733", + "5": "52ccaffc-61f7-43cb-8ef2-6f2a6592c48f", + "50": "a0a9d00f-c7ab-4df4-b065-03c2d953c7f4", + "51": "fb3fec69-27ef-41c2-9aee-15c4b566138e", + "52": "48c60631-e54d-4765-8a46-269200d1607b", + "53": "7e7a91e4-2389-4ad0-afd4-3ec5236d9ddc", + "54": "081cc7e3-35b5-4c9b-9143-4700af4d7696", + "55": "cbe867ee-ab71-4412-b037-afc74f9487f7", + "56": "02f34eb0-1453-455e-a4d5-726e3d6e5f66", + "57": "ed542461-2c95-44fc-b835-e9936c6d2cc9", + "58": "e26f76ec-3f8e-46be-a0b8-30d3d0ee6d4b", + "59": "012bb294-e8b0-4381-b8fb-0c9493823b75", + "6": "3ec62c9f-96c3-4ffa-8668-9a6b74353472", + "60": "44c6fd92-54e4-4222-a5cd-db544c0e50c6", + "61": "6446860c-6d05-4d4b-b366-2f58c0e04dd7", + "62": "e7c8b292-5244-4d0b-b384-ee94ef5b48f2", + "63": "c284d711-1ea1-4005-a020-2a533979dacb", + "64": "6c377de6-58fc-42ff-b80b-0db8c18a6e8a", + "65": "5a56997c-633c-495a-9a97-96edc86960c4", + "66": "21426c63-3988-4b23-85f7-46098354a3e0", + "67": "40f4f3b0-5b48-4ecf-a84c-b48c77d3ade2", + "68": "53603051-7634-4ffe-ae0f-48bd2dd2c22c", + "69": "aaae9628-c009-4eee-aade-a214a63ffbf7", + "7": "e7769a9d-1b07-4e16-8417-b5bc852c9851", + "70": "f4486c30-1724-4d5c-9129-7401404c7879", + "71": "e7560c02-92dd-4740-a821-636860076e22", + "72": "f7c78e15-7ff3-4ee2-be31-7443d2ae4e8b", + "73": "de66b9e3-cfef-495e-8b51-f7d9c8034360", + "74": "04251284-1c95-449f-863d-8f29d509beec", + "75": "1f06e8f5-6168-4578-bd7d-c58e88237b42", + "76": "a0d0729d-02f5-47fe-9a93-ff974969286f", + "77": "dc561236-d1e4-4535-abc0-ce7eda9d3524", + "78": "d6c0827a-9324-4e92-83d3-5bbbc5e46bec", + "79": "6c08a0a6-ff55-433c-81aa-11d07906770a", + "8": "234da0d9-6b11-4394-aad8-fb097f95e306", + "80": "80edfbb5-5314-4f70-8531-a36810730857", + "81": "6ef0539e-25da-4b41-b7c7-28ab1f62229b", + "82": "1c7ecf7d-9c06-4ecb-bf09-c6901794633c", + "83": "88994e57-a86f-4bed-ab16-eef9e9daf5cb", + "84": "a8a0235e-ae79-4303-b771-35ef47cf0dc0", + "85": "44530a8e-1ceb-47b7-9ab9-3a8cdaa13b90", + "86": "02c243bf-cc7e-4f87-abe4-b38c9e883013", + "87": "1c1dd044-f333-4ab2-856e-6be75ed838bf", + "88": "909c9da8-2033-41f7-99cd-079678ac8a71", + "89": "d8921de5-134b-468d-80db-99e34a014f93", + "9": "8dc595bd-ec20-4bed-ba03-656145a68dde", + "90": "54a7b851-5547-4236-89f3-9528c36ce738", + "91": "7c3e468c-478c-4ded-93ec-9824c5fcd8c3", + "92": "fe224cb2-afc3-43f4-a5b6-651e47d5652e", + "93": "b17f2bfe-86ad-4f88-9f6e-b01d7f1c9e66", + "94": "6ea0b369-26a1-439d-80b2-3e03fd1c0368", + "95": "afa37141-ec5e-4f91-ac4b-12b1a3047963", + "96": "eb7f31dc-92ec-46a2-8cc8-8a85101dfc7a", + "97": "49f9547d-c576-4d5b-9f8a-deb2db9a7725", + "98": "6a85ecf5-1f8b-48af-82c2-eb77fa1c286d", + "99": "ae3d18db-d06c-409f-b051-c949d588d498", + "101": "42012069-f136-4cdf-8386-a5e648d61587", + "102": "aafd680e-f3de-44c3-b8d2-897188909f89", + "103": "eb14ae89-b776-4a7c-b1cb-51227ede5631", + "104": "6b847b8a-c935-4366-8f7b-7cdbe96384da", + "105": "0844b132-5386-469c-86ff-d527c8a00608", + "106": "0774b60f-e343-428b-9125-3ca983239ad5", + "107": "9924c304-97d1-4655-9ab8-854a335a84c2", + "108": "b7844cf9-69d3-4f7a-977a-bfc30d5d4c82", + "109": "ef11623e-ea9c-4a76-a028-9fae209a45f2", + "110": "ee6e4a23-bb7c-4f28-ab56-3ba1b79e1c04", + "111": "825065db-dc11-43e9-aa2e-59e6b2cd21f3", + "112": "eaab2e59-ff73-4d74-b3d3-7e7c2515083f", + "113": "b3dbf4ad-71cb-48f5-9655-41b47deeea78", + "114": "4d7ffc75-3dd8-46f7-86f3-405d41c4571a", + "115": "2276bf47-b441-4aa2-ba22-8213875ce0ee", + "116": "2af1d271-3c6a-476d-8eba-6b2aab466da3", + "117": "b2691466-e53b-4f43-806f-abeb762713f6", + "118": "77cfe682-cc36-4979-823b-05ea5f187ba7", + "119": "88fb8817-4ee2-4465-a9af-37fedc8b835b", + "120": "a5dfaf18-d33f-45c4-b76f-2a5051ec9118", + "121": "f9570ec9-4338-4208-aee7-369a45a284f8", + "122": "01c54577-6862-4ca7-bb55-524c2e995aee", + "123": "8b9c1722-a1fd-4391-b4b4-854b2cc1549f", + "124": "9812a82a-67c8-4c7e-8eb9-2d5188d40486", + "125": "09741e1c-c412-4f50-b5b7-03d5820a1bad", + "126": "874dbaf8-adf6-4f01-81a0-e037bac53346", + "127": "ee80c1b4-78a3-4713-a7cd-fc09dd9d2b28", + "128": "7984c59d-64f6-424c-8273-5bab21ab292d", + "129": "3d0a8609-a059-4734-b988-da00f509164d", + "130": "338b7824-6fa7-42ef-b79a-c6dc90689f4e", + "131": "5a63aa46-8c18-43d5-8def-1c886562be17", + "132": "9d4bb085-5413-4cad-9765-4f916ffbe612", + "133": "059f4155-bed3-4fb2-9baa-d569f31b7e5d", + "134": "6fb8126a-bcf3-40a3-924c-e2fbe8dba36a", + "135": "b400c80e-5312-495d-b0d5-8365ed4de032", + "136": "45fc93ca-f8ba-48a8-9189-1c9886475cd3", + "137": "c9863f4f-bdf5-49f4-b18e-dce622ff9931", + "138": "802bd717-75a4-4efc-bdc3-ab512c6bce65", + "139": "88ea0fe3-17bb-45bf-bf71-4da88c965186", + "140": "bb7f3caf-4343-4dcb-b7b2-5479c850c4a2", + "141": "d8932824-bdfc-4009-a7d0-6ff32efa7e1a", + "142": "12c9f3e1-9431-42f8-b6f8-fb6fd35fc1cb", + "143": "9fbabfd5-5316-4dcb-8d99-3c53b9c69880", + "144": "f89b1d5e-28c8-498c-b199-7acbd8607540", + "145": "ce4b6c19-1441-4e43-8af4-a7f34dfbb538", + "146": "5c986000-fc83-4495-a50f-9f4b94e485bc", + "147": "7184670c-7656-49ee-9a6f-5771dc120d69", + "148": "325f33ca-3e2f-400b-a27c-dce9977a2780", + "149": "9c5b8388-0c5b-43a4-a3f4-d7cd72b89084", + "150": "52820a90-7869-43b3-b870-39c015371964", + "151": "b8eb5c02-d344-4431-a592-0e7ad9f9a78f", + "152": "8e981540-9cda-414d-abbb-d34e005f000e", + "153": "e7f989f7-95da-4be3-9e33-743523ae1ee0", + "154": "92ee3d85-c13e-4120-ad64-bd390adf040c", + "155": "35e13391-5257-46f3-93a5-87ffd4e862a4", + "156": "26edc121-4167-44e5-9aaf-65f4ac255233", + "157": "c96fb61f-984b-4e24-874e-ad2f1e86f9d7", + "158": "8a3381a5-19d1-47f5-85b0-cf20b0f3bb61", + "159": "a06bd114-6488-4d22-b31a-c3a8f70a2574", + "160": "7f9c0307-e84d-4f8a-93be-34fc4b3feb89", + "161": "db97118a-0872-4a5d-aaa5-b35f9498f22a", + "162": "cc93ecb4-fd7b-48b7-868d-89f294f07c27", + "163": "b4eddc61-2cab-493a-b874-62b106cef9f4", + "164": "7b58219a-a31d-4ba4-804a-77c6d706d8bc", + "165": "58728297-c362-4c70-a751-4d60ffa81b1a", + "166": "5125c4d9-cf5c-4fe5-9dc8-c939e40fcd6f", + "167": "5f7505cc-53a6-463b-b397-33ff845b1ac0", + "168": "60fc0348-15d2-462c-9b87-dbb507b8717b", + "169": "9efb25aa-d11e-4d2f-96a9-326a2f75dcc1", + "170": "d09d8e7f-f203-4b36-92ba-f9f29b6e7d13", + "171": "c1b603f4-7037-47e9-a9dc-a0bb6f7e58b1", + "172": "91637a62-ec43-463a-9edc-420af478d9cb", + "173": "a1223b95-aa11-427a-b201-9190a86a68be", + "174": "7a3fed5a-9b6f-45f0-9ad7-54e1bda0ea60", + "175": "e234e19f-cd33-4584-947b-bf9feaf6cddd", + "176": "80b5b54b-a1cc-434c-8739-1e133d53601d", + "177": "e250304b-2864-4f44-b1e8-173cc34a2ac6", + "178": "08bb8c58-1868-4a96-8aaa-36d9e141ec38", + "179": "dea30d29-44e9-47fc-bccc-6928d5c29cea", + "180": "767e3782-90bf-4d7f-b1ef-719aa7013187", + "181": "c34f5129-9516-486b-b322-ada2d7baa6ba", + "182": "407d0cd8-54f8-47a8-90cb-42c8a441d04f", + "183": "dc9eba43-a0ae-45fc-b91c-9050201557b9", + "184": "b6e7e52e-fa7c-4663-b29b-8d72461a55fb", + "185": "af35a153-e4cc-4cb5-9b0a-a247aa9a27b2", + "186": "581488ee-fe1f-43d1-a23d-526666571191", + "187": "58e02161-61cc-4d0f-bdc8-c497a25ae380", + "188": "7da78911-dd6f-4bbd-9a74-8a3476ec1fb5", + "189": "3f0c3fb9-57f0-4439-b2df-3c934842d7db", + "190": "f76f4233-905d-4cb5-a153-eed7fe8e458e", + "191": "de91796c-56de-4405-8fcc-748bd6a08e86", + "192": "d7de2887-c7b2-4bb7-a339-632f4f906224", + "193": "f69de914-d2d4-4fcf-a7d6-ce76fea2e1a7", + "194": "1f70d207-e63d-4692-be1f-5b6fa8599d57", + "195": "ea3cd08e-2d6a-4ba3-9c39-87a3d44d2015", + "196": "e978c208-72f4-4c78-b109-bcb5e56d4024", + "197": "65d0582b-c8a1-45a8-a0e9-e797f01caa63", + "198": "6e24aa9b-c7e6-40f2-905b-b9c541e0e2f6", + "199": "88f2670e-1113-4ed9-b644-cfdac6e8b249", + "200": "2a756062-4e0c-4114-bc6d-4d6635f2d703" + }, + "type": "other", + "keywords": "", + "_sheet": 2, + "category": "other", + "pin_nets": { + "107": "GND", + "108": "GND", + "113": "GND", + "114": "GND", + "119": "GND", + "120": "GND", + "125": "GND", + "126": "GND", + "131": "GND", + "132": "GND", + "137": "GND", + "138": "GND", + "144": "GND", + "150": "GND", + "155": "GND", + "156": "GND", + "161": "GND", + "162": "GND", + "167": "GND", + "168": "GND", + "173": "GND", + "174": "GND", + "179": "GND", + "180": "GND", + "185": "GND", + "186": "GND", + "191": "GND", + "192": "GND", + "197": "GND", + "198": "GND", + "105": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "103": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "101": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "102": "__unnamed_30", + "104": "__unnamed_31", + "106": "__unnamed_32", + "109": "__unnamed_33", + "110": "__unnamed_34", + "111": "VBUS_EN", + "112": "__unnamed_35", + "115": "__unnamed_36", + "116": "__unnamed_37", + "117": "__unnamed_38", + "118": "__unnamed_39", + "121": "__unnamed_40", + "122": "__unnamed_41", + "123": "__unnamed_42", + "124": "__unnamed_43", + "127": "__unnamed_44", + "128": "USB3-0-RX_N", + "129": "__unnamed_45", + "130": "USB3-0-RX_P", + "133": "__unnamed_46", + "134": "USB3-0-D_P", + "135": "__unnamed_47", + "136": "USB3-0-D_N", + "139": "__unnamed_48", + "140": "USB3-0-TX_N", + "141": "__unnamed_49", + "142": "USB3-0-TX_P", + "143": "__unnamed_50", + "145": "__unnamed_51", + "146": "__unnamed_52", + "147": "__unnamed_53", + "148": "__unnamed_54", + "149": "__unnamed_55", + "151": "__unnamed_56", + "152": "__unnamed_57", + "153": "__unnamed_58", + "154": "__unnamed_59", + "157": "USB3-1-RX_N", + "158": "__unnamed_60", + "159": "USB3-1-RX_P", + "160": "__unnamed_61", + "163": "USB3-1-D_P", + "164": "__unnamed_62", + "165": "USB3-1-D_N", + "166": "__unnamed_63", + "169": "USB3-1-TX_N", + "170": "__unnamed_64", + "171": "USB3-1-TX_P", + "172": "__unnamed_65", + "175": "__unnamed_66", + "176": "__unnamed_67", + "177": "__unnamed_68", + "178": "__unnamed_69", + "181": "__unnamed_70", + "182": "__unnamed_71", + "183": "__unnamed_72", + "184": "__unnamed_73", + "187": "__unnamed_74", + "188": "__unnamed_75", + "189": "__unnamed_76", + "190": "__unnamed_77", + "193": "__unnamed_78", + "194": "__unnamed_79", + "195": "__unnamed_80", + "196": "__unnamed_81", + "199": "__unnamed_82", + "200": "__unnamed_83" + } + }, + { + "reference": "J6", + "value": "THD-02-R", + "lib_id": "Connector_Generic:Conn_02x02_Odd_Even", + "lib_name": "", + "footprint": "Connector_PinHeader_2.54mm:PinHeader_2x02_P2.54mm_Vertical", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 196.85, + "y": 119.38, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "00000000-0000-0000-0000-00005e67855b", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "a6187c22-3622-4a1a-a49a-b21e96986f96", + "2": "504cb9e4-5572-4208-bc9d-30a7efff8b9a", + "3": "fda94f0a-876e-4bf0-ad10-35819851e3e9", + "4": "f0e6fae4-0008-43ed-8719-bf62839f601f" + }, + "type": "connector", + "keywords": "connector", + "is_external_connector": false, + "connector_layout": "dual", + "_sheet": 2, + "category": "connector", + "pin_nets": { + "1": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "3": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "4": "__unnamed_27", + "2": "__unnamed_28" + } + }, + { + "reference": "C7", + "value": "10u", + "lib_id": "Device:C", + "lib_name": "", + "footprint": "Capacitor_SMD:C_0805_2012Metric", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 100.33, + "y": 181.61, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "4f114cbe-127d-402b-9e43-20055519ebe9", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "15d5296c-f8fc-493c-bbc5-3b2dab8930e1", + "2": "e633cde2-5647-451f-b8f8-0917d27c1597" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 2, + "category": "capacitor", + "parsed_value": 9.999999999999999e-06, + "pin_nets": { + "2": "GND", + "1": "VBUS" + } + }, + { + "reference": "C3", + "value": "100uF", + "lib_id": "Device:C_Polarized", + "lib_name": "", + "footprint": "Capacitor_Tantalum_SMD:CP_EIA-7343-31_Kemet-D", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 87.63, + "y": 181.61, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "7af4c403-0a0f-4cd6-92c0-049725258d6c", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "09f421e8-acca-4e6f-ba1f-80adf40332ae", + "2": "96fa9929-97c7-46b5-a2be-419656c1818c" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 2, + "category": "capacitor", + "parsed_value": 9.999999999999999e-05, + "pin_nets": { + "2": "GND", + "1": "VBUS" + } + }, + { + "reference": "R12", + "value": "15K 1%", + "lib_id": "Device:R", + "lib_name": "", + "footprint": "Resistor_SMD:R_0402_1005Metric", + "datasheet": "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 78.74, + "y": 177.8, + "angle": 90.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "8285f9ed-94cb-4a50-bc45-60131837a76c", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "20b7d8a7-7f0d-4cf0-9ca6-dc04f34b16c8", + "2": "a9a51c23-c359-439a-9924-2057cf29b888" + }, + "type": "resistor", + "keywords": "R res resistor", + "_sheet": 2, + "category": "resistor", + "parsed_value": 15000.0, + "pin_nets": { + "2": "GND", + "1": "__unnamed_84" + } + }, + { + "reference": "C8", + "value": "10u", + "lib_id": "Device:C", + "lib_name": "", + "footprint": "Capacitor_SMD:C_0805_2012Metric", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 110.49, + "y": 181.61, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "9f9390e5-f859-41ea-a607-789531da8abb", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "5cccaafe-7218-4c61-bcd5-123669d22dea", + "2": "fa2eecf7-eda6-4b0c-ab49-346a7262452d" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 2, + "category": "capacitor", + "parsed_value": 9.999999999999999e-06, + "pin_nets": { + "2": "GND", + "1": "VBUS" + } + }, + { + "reference": "U6", + "value": "AP22653W6", + "lib_id": "CM5IO:AP2553W6", + "lib_name": "", + "footprint": "Package_TO_SOT_SMD:SOT-23-6", + "datasheet": "https://www.diodes.com/assets/Datasheets/AP255x.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 59.69, + "y": 177.8, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "bf051790-2c52-4db9-8be2-608cdd970d8a", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "6e9965ec-da2e-4a0c-8d06-3f2e1255a520", + "2": "1131a1ab-53e7-44a6-80d4-b32ba54a767a", + "3": "b66d6731-afec-4458-824e-eb0c3c3dad2b", + "4": "7de13870-533a-4b74-bacc-42ad4da418cc", + "5": "57ba1168-ffb5-41ca-9ecb-ae64656a4670", + "6": "920ac07a-102f-4348-a04f-e4d76c56afba" + }, + "type": "ic", + "keywords": "", + "functional_class": "other_ic", + "_sheet": 2, + "category": "ic", + "pin_nets": { + "2": "GND", + "3": "VBUS_EN", + "6": "VBUS", + "5": "__unnamed_84", + "1": "+5v", + "4": "__unnamed_85" + } + }, + { + "reference": "J12", + "value": "USB3_A", + "lib_id": "CM5IO:USB3_A", + "lib_name": "", + "footprint": "CM5IO:MTCONN_UBAF30-D2011", + "datasheet": "~", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 208.28, + "y": 52.07, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "c789bd3c-ea19-43e0-b046-0c95ce38bfd0", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "10": "6e6e7d2e-5112-4099-bc5f-c14b17eef45e", + "A1": "786d4dfd-c002-4ef0-a651-e2a13ced27ec", + "A2": "27de6d7f-f6cb-46c0-833b-cfa072a01e68", + "A3": "d0778a88-2123-47fe-8d57-9f4f43e8b7e4", + "A4": "a8e57369-59ab-4d01-a545-0e798cd447c7", + "A5": "d4806cae-5945-4be8-bcbe-0e51910d700c", + "A6": "1f31368f-7aac-4706-b9b5-b5ff33f213e8", + "A7": "80ef9a8c-0850-431f-87db-773b9b0328c1", + "A8": "cb1c4070-d914-432a-b682-4856d4600827", + "A9": "aa33d752-aa5c-4e8e-b997-113dd6d2d66e", + "B1": "f2c6e619-9906-41a5-a866-276fc47ff78b", + "B2": "cab92ddd-8d20-4d1f-92c2-151b4abbb7ad", + "B3": "75c7031b-6847-45f4-9aa3-a1ec9d079db5", + "B4": "ae5a781a-6fbb-43c4-a2b4-196bf7657a62", + "B5": "3c9da95c-156b-4951-a14e-8e1ed90ec9ac", + "B6": "7e173081-f3c1-4a6f-9e7a-297d613f4476", + "B7": "d5f91fa1-d518-426b-ae97-6b283f7c8e2f", + "B8": "2a304fe1-6c7d-4dcc-832a-ddf120a1d03b", + "B9": "4e12ed1d-3234-480d-b117-44b4f5fcf69f" + }, + "type": "connector", + "keywords": "usb universal serial bus", + "is_external_connector": true, + "connector_layout": "other", + "_sheet": 2, + "category": "connector", + "pin_nets": { + "10": "GND", + "A4": "GND", + "A7": "GND", + "B4": "GND", + "B7": "GND", + "A6": "USB3-0-RX_N", + "A5": "USB3-0-RX_P", + "A3": "USB3-0-D_P", + "A2": "USB3-0-D_N", + "A9": "USB3-0-TX_N", + "A8": "USB3-0-TX_P", + "B6": "USB3-1-RX_N", + "B5": "USB3-1-RX_P", + "B3": "USB3-1-D_P", + "B2": "USB3-1-D_N", + "B9": "USB3-1-TX_N", + "B8": "USB3-1-TX_P", + "A1": "VBUS", + "B1": "VBUS" + } + }, + { + "reference": "C2", + "value": "10u", + "lib_id": "Device:C", + "lib_name": "", + "footprint": "Capacitor_SMD:C_0805_2012Metric", + "datasheet": "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf", + "description": "", + "mpn": "", + "manufacturer": "", + "digikey": "", + "mouser": "", + "lcsc": "", + "element14": "", + "x": 29.21, + "y": 180.34, + "angle": 0.0, + "mirror_x": false, + "mirror_y": false, + "unit": 1, + "uuid": "ebac8f36-1624-46eb-be91-d5377e148349", + "in_bom": true, + "dnp": false, + "on_board": true, + "pin_uuids": { + "1": "e9d4c57f-e092-4a24-81a8-18efa9bc1ffc", + "2": "5b3e9722-0381-452b-a2f9-511c0d5e9a9b" + }, + "type": "capacitor", + "keywords": "cap capacitor", + "_sheet": 2, + "category": "capacitor", + "parsed_value": 9.999999999999999e-06, + "pin_nets": { + "2": "GND", + "1": "+5v" + } + } + ], + "nets": { + "GND": { + "name": "GND", + "pins": [ + { + "component": "#PWR031", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "R9", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "C18", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "A1", + "pin_name": "GND", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "A12", + "pin_name": "GND", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "B1", + "pin_name": "GND", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "B12", + "pin_name": "GND", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "S1", + "pin_name": "SHIELD", + "pin_type": "passive" + }, + { + "component": "C9", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "#PWR02", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR013", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "U5", + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "1", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "13", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "14", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "2", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "22", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "23", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "32", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "33", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "42", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "43", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "52", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "53", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "59", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "60", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "65", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "66", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "7", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "71", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "74", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "8", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "98", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "C1", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "#PWR0101", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "J8", + "pin_number": "14", + "pin_name": "Pin_14", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "20", + "pin_name": "Pin_20", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "25", + "pin_name": "Pin_25", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "30", + "pin_name": "Pin_30", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "34", + "pin_name": "Pin_34", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "39", + "pin_name": "Pin_39", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "6", + "pin_name": "Pin_6", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "9", + "pin_name": "Pin_9", + "pin_type": "passive" + }, + { + "component": "#PWR0102", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR0103", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR0104", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR0105", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR05", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "U2", + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "U2", + "pin_number": "8", + "pin_name": "GND", + "pin_type": "passive" + }, + { + "component": "#PWR0110", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "J2", + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive" + }, + { + "component": "J2", + "pin_number": "11", + "pin_name": "Pin_11", + "pin_type": "passive" + }, + { + "component": "J2", + "pin_number": "13", + "pin_name": "Pin_13", + "pin_type": "passive" + }, + { + "component": "J2", + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive" + }, + { + "component": "J2", + "pin_number": "5", + "pin_name": "Pin_5", + "pin_type": "passive" + }, + { + "component": "J2", + "pin_number": "7", + "pin_name": "Pin_7", + "pin_type": "passive" + }, + { + "component": "J2", + "pin_number": "9", + "pin_name": "Pin_9", + "pin_type": "passive" + }, + { + "component": "J3", + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "U1", + "pin_number": "8", + "pin_name": "GND", + "pin_type": "passive" + }, + { + "component": "#PWR0111", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR0109", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "BT1", + "pin_number": "2", + "pin_name": "-", + "pin_type": "passive" + }, + { + "component": "#PWR027", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "U3", + "pin_number": "19", + "pin_name": "SHIELD", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "20", + "pin_name": "SHIELD", + "pin_type": "passive" + }, + { + "component": "#PWR029", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR06", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "J14", + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive" + }, + { + "component": "SW1", + "pin_number": "2", + "pin_name": "2", + "pin_type": "passive" + }, + { + "component": "#PWR030", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR0130", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR0131", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "C13", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "#PWR0136", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "C12", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "#PWR0137", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "U12", + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "#PWR0138", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "107", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "108", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "113", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "114", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "119", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "120", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "125", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "126", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "131", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "132", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "137", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "138", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "144", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "150", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "155", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "156", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "161", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "162", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "167", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "168", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "173", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "174", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "179", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "180", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "185", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "186", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "191", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "192", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "197", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "198", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "#PWR01", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "C2", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "C7", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "#PWR011", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR03", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "C3", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "#PWR010", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "R12", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "#PWR012", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "C8", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "#PWR09", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "U6", + "pin_number": "2", + "pin_name": "GND", + "pin_type": "power_out" + }, + { + "component": "J12", + "pin_number": "10", + "pin_name": "SHIELD", + "pin_type": "passive" + }, + { + "component": "J12", + "pin_number": "A4", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "J12", + "pin_number": "A7", + "pin_name": "DRAIN", + "pin_type": "power_in" + }, + { + "component": "J12", + "pin_number": "B4", + "pin_name": "GND", + "pin_type": "power_in" + }, + { + "component": "J12", + "pin_number": "B7", + "pin_name": "DRAIN", + "pin_type": "power_in" + }, + { + "component": "#PWR07", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + }, + { + "component": "#PWR04", + "pin_number": "1", + "pin_name": "~", + "pin_type": "power_in" + } + ], + "point_count": 196, + "no_connect": false, + "labels": [ + { + "name": "GND", + "type": "label" + } + ] + }, + "/00000000-0000-0000-0000-00005cff706a/+5v": { + "name": "/00000000-0000-0000-0000-00005cff706a/+5v", + "pins": [ + { + "component": "C18", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "A4", + "pin_name": "VBUS", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "A9", + "pin_name": "VBUS", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "B4", + "pin_name": "VBUS", + "pin_type": "passive" + }, + { + "component": "J11", + "pin_number": "B9", + "pin_name": "VBUS", + "pin_type": "passive" + }, + { + "component": "R9", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "C9", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "Module1", + "pin_number": "77", + "pin_name": "+5v_(Input)", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "79", + "pin_name": "+5v_(Input)", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "81", + "pin_name": "+5v_(Input)", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "83", + "pin_name": "+5v_(Input)", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "85", + "pin_name": "+5v_(Input)", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "87", + "pin_name": "+5v_(Input)", + "pin_type": "power_in" + }, + { + "component": "J8", + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive" + }, + { + "component": "J14", + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive" + }, + { + "component": "C12", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U12", + "pin_number": "1", + "pin_name": "IN", + "pin_type": "power_in" + } + ], + "point_count": 33, + "no_connect": false, + "labels": [ + { + "name": "+5v", + "type": "label" + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/+5v", + "type": "hierarchical_label" + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/+5v", + "type": "hierarchical_label" + } + ] + }, + "/00000000-0000-0000-0000-00005cff706a/CC1": { + "name": "/00000000-0000-0000-0000-00005cff706a/CC1", + "pins": [ + { + "component": "J11", + "pin_number": "A5", + "pin_name": "CC1", + "pin_type": "bidirectional" + }, + { + "component": "Module1", + "pin_number": "94", + "pin_name": "CC1", + "pin_type": "passive" + } + ], + "point_count": 9, + "no_connect": false, + "labels": [ + { + "name": "/00000000-0000-0000-0000-00005cff706a/CC1", + "type": "hierarchical_label" + }, + { + "name": "CC1", + "type": "label" + } + ] + }, + "/00000000-0000-0000-0000-00005cff70b1/USB2_P": { + "name": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "pins": [ + { + "component": "J11", + "pin_number": "A6", + "pin_name": "D+", + "pin_type": "bidirectional" + }, + { + "component": "J11", + "pin_number": "B6", + "pin_name": "D+", + "pin_type": "bidirectional" + }, + { + "component": "Module1", + "pin_number": "105", + "pin_name": "USB2_P", + "pin_type": "passive" + } + ], + "point_count": 8, + "no_connect": false, + "labels": [ + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "type": "hierarchical_label" + }, + { + "name": "USB2_P", + "type": "label" + } + ] + }, + "/00000000-0000-0000-0000-00005cff70b1/USB2_N": { + "name": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "pins": [ + { + "component": "J11", + "pin_number": "A7", + "pin_name": "D-", + "pin_type": "bidirectional" + }, + { + "component": "J11", + "pin_number": "B7", + "pin_name": "D-", + "pin_type": "bidirectional" + }, + { + "component": "Module1", + "pin_number": "103", + "pin_name": "USB2_N", + "pin_type": "passive" + } + ], + "point_count": 8, + "no_connect": false, + "labels": [ + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "type": "hierarchical_label" + }, + { + "name": "USB2_N", + "type": "label" + } + ] + }, + "__unnamed_0": { + "name": "__unnamed_0", + "pins": [ + { + "component": "J11", + "pin_number": "A8", + "pin_name": "SBU1", + "pin_type": "bidirectional" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "/00000000-0000-0000-0000-00005cff706a/CC2": { + "name": "/00000000-0000-0000-0000-00005cff706a/CC2", + "pins": [ + { + "component": "J11", + "pin_number": "B5", + "pin_name": "CC2", + "pin_type": "bidirectional" + }, + { + "component": "Module1", + "pin_number": "96", + "pin_name": "CC2", + "pin_type": "passive" + } + ], + "point_count": 9, + "no_connect": false, + "labels": [ + { + "name": "/00000000-0000-0000-0000-00005cff706a/CC2", + "type": "hierarchical_label" + }, + { + "name": "CC2", + "type": "label" + } + ] + }, + "__unnamed_1": { + "name": "__unnamed_1", + "pins": [ + { + "component": "J11", + "pin_number": "B8", + "pin_name": "SBU2", + "pin_type": "bidirectional" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_2": { + "name": "__unnamed_2", + "pins": [ + { + "component": "U5", + "pin_number": "1", + "pin_name": "nc", + "pin_type": "no_connect" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [], + "display_name": "U5.nc" + }, + "nPWR_LED": { + "name": "nPWR_LED", + "pins": [ + { + "component": "U5", + "pin_number": "2", + "pin_name": "~", + "pin_type": "input" + }, + { + "component": "Module1", + "pin_number": "95", + "pin_name": "LED_nPWR", + "pin_type": "output" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "nPWR_LED", + "type": "label" + } + ] + }, + "__unnamed_3": { + "name": "__unnamed_3", + "pins": [ + { + "component": "U5", + "pin_number": "4", + "pin_name": "~", + "pin_type": "open_collector" + }, + { + "component": "R10", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + } + ], + "point_count": 3, + "no_connect": false, + "labels": [] + }, + "/00000000-0000-0000-0000-00005cff70b1/+3.3v": { + "name": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "pins": [ + { + "component": "U5", + "pin_number": "5", + "pin_name": "VCC", + "pin_type": "power_in" + }, + { + "component": "Module1", + "pin_number": "84", + "pin_name": "+3.3v_(Output)", + "pin_type": "power_out" + }, + { + "component": "Module1", + "pin_number": "86", + "pin_name": "+3.3v_(Output)", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "17", + "pin_name": "Pin_17", + "pin_type": "passive" + }, + { + "component": "D2", + "pin_number": "2", + "pin_name": "A", + "pin_type": "passive" + }, + { + "component": "D1", + "pin_number": "2", + "pin_name": "A", + "pin_type": "passive" + }, + { + "component": "R5", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "15", + "pin_name": "LEDY_A", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "17", + "pin_name": "LEDG_A", + "pin_type": "passive" + } + ], + "point_count": 38, + "no_connect": false, + "labels": [ + { + "name": "+3.3v", + "type": "label" + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "type": "hierarchical_label" + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/+3.3v", + "type": "hierarchical_label" + } + ] + }, + "TRD0_N": { + "name": "TRD0_N", + "pins": [ + { + "component": "Module1", + "pin_number": "10", + "pin_name": "Ethernet_Pair0_N", + "pin_type": "passive" + }, + { + "component": "U2", + "pin_number": "4", + "pin_name": "D2+", + "pin_type": "passive" + }, + { + "component": "U2", + "pin_number": "7", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "2", + "pin_name": "TRD0-", + "pin_type": "passive" + } + ], + "point_count": 8, + "no_connect": false, + "labels": [ + { + "name": "TRD0_N", + "type": "label" + } + ] + }, + "__unnamed_4": { + "name": "__unnamed_4", + "pins": [ + { + "component": "Module1", + "pin_number": "100", + "pin_name": "CAM_GPIO1", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "TRD2_P": { + "name": "TRD2_P", + "pins": [ + { + "component": "Module1", + "pin_number": "11", + "pin_name": "Ethernet_Pair2_P", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "5", + "pin_name": "D2-", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "6", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "7", + "pin_name": "TRD2+", + "pin_type": "passive" + } + ], + "point_count": 8, + "no_connect": false, + "labels": [ + { + "name": "TRD2_P", + "type": "label" + } + ] + }, + "TRD0_P": { + "name": "TRD0_P", + "pins": [ + { + "component": "Module1", + "pin_number": "12", + "pin_name": "Ethernet_Pair0_P", + "pin_type": "passive" + }, + { + "component": "U2", + "pin_number": "5", + "pin_name": "D2-", + "pin_type": "passive" + }, + { + "component": "U2", + "pin_number": "6", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "1", + "pin_name": "TRD0+", + "pin_type": "passive" + } + ], + "point_count": 8, + "no_connect": false, + "labels": [ + { + "name": "TRD0_P", + "type": "label" + } + ] + }, + "ETH_LEDY": { + "name": "ETH_LEDY", + "pins": [ + { + "component": "Module1", + "pin_number": "15", + "pin_name": "Ethernet_nLED3(3.3v)", + "pin_type": "output" + }, + { + "component": "R3", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "ETH_LEDY", + "type": "label" + } + ] + }, + "TACHO": { + "name": "TACHO", + "pins": [ + { + "component": "Module1", + "pin_number": "16", + "pin_name": "FAN_TACHO", + "pin_type": "input" + }, + { + "component": "J14", + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "TACHO", + "type": "label" + } + ] + }, + "ETH_LEDG": { + "name": "ETH_LEDG", + "pins": [ + { + "component": "Module1", + "pin_number": "17", + "pin_name": "Ethernet_nLED2(3.3v)", + "pin_type": "output" + }, + { + "component": "R2", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "ETH_LEDG", + "type": "label" + } + ] + }, + "SYNC_OUT": { + "name": "SYNC_OUT", + "pins": [ + { + "component": "Module1", + "pin_number": "18", + "pin_name": "Ethernet_SYNC_OUT(3.3v)", + "pin_type": "input" + }, + { + "component": "J2", + "pin_number": "6", + "pin_name": "Pin_6", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "SYNC_OUT", + "type": "label" + } + ] + }, + "PWM": { + "name": "PWM", + "pins": [ + { + "component": "Module1", + "pin_number": "19", + "pin_name": "FAN_PWM", + "pin_type": "output" + }, + { + "component": "J14", + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "PWM", + "type": "label" + } + ] + }, + "EEPROM_nWP": { + "name": "EEPROM_nWP", + "pins": [ + { + "component": "Module1", + "pin_number": "20", + "pin_name": "EEPROM_nWP", + "pin_type": "passive" + }, + { + "component": "J2", + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "EEPROM_nWP", + "type": "label" + } + ] + }, + "__unnamed_5": { + "name": "__unnamed_5", + "pins": [ + { + "component": "Module1", + "pin_number": "21", + "pin_name": "LED_nACT", + "pin_type": "open_collector" + }, + { + "component": "R1", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + } + ], + "point_count": 3, + "no_connect": false, + "labels": [] + }, + "GPIO26": { + "name": "GPIO26", + "pins": [ + { + "component": "Module1", + "pin_number": "24", + "pin_name": "GPIO26", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "37", + "pin_name": "Pin_37", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO26", + "type": "label" + } + ] + }, + "GPIO21": { + "name": "GPIO21", + "pins": [ + { + "component": "Module1", + "pin_number": "25", + "pin_name": "GPIO21", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "40", + "pin_name": "Pin_40", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO21", + "type": "label" + } + ] + }, + "GPIO19": { + "name": "GPIO19", + "pins": [ + { + "component": "Module1", + "pin_number": "26", + "pin_name": "GPIO19", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "35", + "pin_name": "Pin_35", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO19", + "type": "label" + } + ] + }, + "GPIO20": { + "name": "GPIO20", + "pins": [ + { + "component": "Module1", + "pin_number": "27", + "pin_name": "GPIO20", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "38", + "pin_name": "Pin_38", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO20", + "type": "label" + } + ] + }, + "GPIO13": { + "name": "GPIO13", + "pins": [ + { + "component": "Module1", + "pin_number": "28", + "pin_name": "GPIO13", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "33", + "pin_name": "Pin_33", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO13", + "type": "label" + } + ] + }, + "GPIO16": { + "name": "GPIO16", + "pins": [ + { + "component": "Module1", + "pin_number": "29", + "pin_name": "GPIO16", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "36", + "pin_name": "Pin_36", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO16", + "type": "label" + } + ] + }, + "TRD3_P": { + "name": "TRD3_P", + "pins": [ + { + "component": "Module1", + "pin_number": "3", + "pin_name": "Ethernet_Pair3_P", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "1", + "pin_name": "D1+", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "10", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "9", + "pin_name": "TRD3+", + "pin_type": "passive" + } + ], + "point_count": 9, + "no_connect": false, + "labels": [ + { + "name": "TRD3_P", + "type": "label" + } + ] + }, + "GPIO6": { + "name": "GPIO6", + "pins": [ + { + "component": "Module1", + "pin_number": "30", + "pin_name": "GPIO6", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "31", + "pin_name": "Pin_31", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO6", + "type": "label" + } + ] + }, + "GPIO12": { + "name": "GPIO12", + "pins": [ + { + "component": "Module1", + "pin_number": "31", + "pin_name": "GPIO12", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "32", + "pin_name": "Pin_32", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO12", + "type": "label" + } + ] + }, + "GPIO5": { + "name": "GPIO5", + "pins": [ + { + "component": "Module1", + "pin_number": "34", + "pin_name": "GPIO5", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "29", + "pin_name": "Pin_29", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO5", + "type": "label" + } + ] + }, + "/00000000-0000-0000-0000-00005cff70b1/ID_SC": { + "name": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "pins": [ + { + "component": "Module1", + "pin_number": "35", + "pin_name": "ID_SC", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "28", + "pin_name": "Pin_28", + "pin_type": "passive" + }, + { + "component": "J6", + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive" + } + ], + "point_count": 11, + "no_connect": false, + "labels": [ + { + "name": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "type": "hierarchical_label" + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/ID_SC", + "type": "hierarchical_label" + }, + { + "name": "ID_SC", + "type": "label" + } + ] + }, + "/00000000-0000-0000-0000-00005cff70b1/ID_SD": { + "name": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "pins": [ + { + "component": "Module1", + "pin_number": "36", + "pin_name": "ID_SD", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "27", + "pin_name": "Pin_27", + "pin_type": "passive" + }, + { + "component": "J6", + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive" + } + ], + "point_count": 10, + "no_connect": false, + "labels": [ + { + "name": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "type": "hierarchical_label" + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/ID_SD", + "type": "hierarchical_label" + }, + { + "name": "ID_SD", + "type": "label" + } + ] + }, + "GPIO7": { + "name": "GPIO7", + "pins": [ + { + "component": "Module1", + "pin_number": "37", + "pin_name": "GPIO7", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "26", + "pin_name": "Pin_26", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO7", + "type": "label" + } + ] + }, + "GPIO11": { + "name": "GPIO11", + "pins": [ + { + "component": "Module1", + "pin_number": "38", + "pin_name": "GPIO11", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "23", + "pin_name": "Pin_23", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO11", + "type": "label" + } + ] + }, + "GPIO8": { + "name": "GPIO8", + "pins": [ + { + "component": "Module1", + "pin_number": "39", + "pin_name": "GPIO8", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "24", + "pin_name": "Pin_24", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO8", + "type": "label" + } + ] + }, + "TRD1_P": { + "name": "TRD1_P", + "pins": [ + { + "component": "Module1", + "pin_number": "4", + "pin_name": "Ethernet_Pair1_P", + "pin_type": "passive" + }, + { + "component": "U2", + "pin_number": "1", + "pin_name": "D1+", + "pin_type": "passive" + }, + { + "component": "U2", + "pin_number": "10", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "3", + "pin_name": "TRD1+", + "pin_type": "passive" + } + ], + "point_count": 8, + "no_connect": false, + "labels": [ + { + "name": "TRD1_P", + "type": "label" + } + ] + }, + "GPIO9": { + "name": "GPIO9", + "pins": [ + { + "component": "Module1", + "pin_number": "40", + "pin_name": "GPIO9", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "21", + "pin_name": "Pin_21", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO9", + "type": "label" + } + ] + }, + "GPIO25": { + "name": "GPIO25", + "pins": [ + { + "component": "Module1", + "pin_number": "41", + "pin_name": "GPIO25", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "22", + "pin_name": "Pin_22", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO25", + "type": "label" + } + ] + }, + "GPIO10": { + "name": "GPIO10", + "pins": [ + { + "component": "Module1", + "pin_number": "44", + "pin_name": "GPIO10", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "19", + "pin_name": "Pin_19", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO10", + "type": "label" + } + ] + }, + "GPIO24": { + "name": "GPIO24", + "pins": [ + { + "component": "Module1", + "pin_number": "45", + "pin_name": "GPIO24", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "18", + "pin_name": "Pin_18", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO24", + "type": "label" + } + ] + }, + "GPIO22": { + "name": "GPIO22", + "pins": [ + { + "component": "Module1", + "pin_number": "46", + "pin_name": "GPIO22", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "15", + "pin_name": "Pin_15", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO22", + "type": "label" + } + ] + }, + "GPIO23": { + "name": "GPIO23", + "pins": [ + { + "component": "Module1", + "pin_number": "47", + "pin_name": "GPIO23", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "16", + "pin_name": "Pin_16", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO23", + "type": "label" + } + ] + }, + "GPIO27": { + "name": "GPIO27", + "pins": [ + { + "component": "Module1", + "pin_number": "48", + "pin_name": "GPIO27", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "13", + "pin_name": "Pin_13", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO27", + "type": "label" + } + ] + }, + "GPIO18": { + "name": "GPIO18", + "pins": [ + { + "component": "Module1", + "pin_number": "49", + "pin_name": "GPIO18", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "12", + "pin_name": "Pin_12", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO18", + "type": "label" + } + ] + }, + "TRD3_N": { + "name": "TRD3_N", + "pins": [ + { + "component": "Module1", + "pin_number": "5", + "pin_name": "Ethernet_Pair3_N", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "2", + "pin_name": "D1-", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "9", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "10", + "pin_name": "TRD3-", + "pin_type": "passive" + } + ], + "point_count": 9, + "no_connect": false, + "labels": [ + { + "name": "TRD3_N", + "type": "label" + } + ] + }, + "GPIO17": { + "name": "GPIO17", + "pins": [ + { + "component": "Module1", + "pin_number": "50", + "pin_name": "GPIO17", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "11", + "pin_name": "Pin_11", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO17", + "type": "label" + } + ] + }, + "GPIO15": { + "name": "GPIO15", + "pins": [ + { + "component": "Module1", + "pin_number": "51", + "pin_name": "GPIO15", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "10", + "pin_name": "Pin_10", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO15", + "type": "label" + } + ] + }, + "GPIO4": { + "name": "GPIO4", + "pins": [ + { + "component": "Module1", + "pin_number": "54", + "pin_name": "GPIO4", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "7", + "pin_name": "Pin_7", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO4", + "type": "label" + } + ] + }, + "GPIO14": { + "name": "GPIO14", + "pins": [ + { + "component": "Module1", + "pin_number": "55", + "pin_name": "GPIO14", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "8", + "pin_name": "Pin_8", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "GPIO14", + "type": "label" + } + ] + }, + "GPIO3": { + "name": "GPIO3", + "pins": [ + { + "component": "Module1", + "pin_number": "56", + "pin_name": "GPIO3", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "5", + "pin_name": "Pin_5", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO3", + "type": "label" + } + ] + }, + "__unnamed_6": { + "name": "__unnamed_6", + "pins": [ + { + "component": "Module1", + "pin_number": "57", + "pin_name": "SD_CLK", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "GPIO2": { + "name": "GPIO2", + "pins": [ + { + "component": "Module1", + "pin_number": "58", + "pin_name": "GPIO2", + "pin_type": "passive" + }, + { + "component": "J8", + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "GPIO2", + "type": "label" + } + ] + }, + "TRD1_N": { + "name": "TRD1_N", + "pins": [ + { + "component": "Module1", + "pin_number": "6", + "pin_name": "Ethernet_Pair1_N", + "pin_type": "passive" + }, + { + "component": "U2", + "pin_number": "2", + "pin_name": "D1-", + "pin_type": "passive" + }, + { + "component": "U2", + "pin_number": "9", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "6", + "pin_name": "TRD1-", + "pin_type": "passive" + } + ], + "point_count": 8, + "no_connect": false, + "labels": [ + { + "name": "TRD1_N", + "type": "label" + } + ] + }, + "__unnamed_7": { + "name": "__unnamed_7", + "pins": [ + { + "component": "Module1", + "pin_number": "61", + "pin_name": "SD_DAT3", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_8": { + "name": "__unnamed_8", + "pins": [ + { + "component": "Module1", + "pin_number": "62", + "pin_name": "SD_CMD", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_9": { + "name": "__unnamed_9", + "pins": [ + { + "component": "Module1", + "pin_number": "63", + "pin_name": "SD_DAT0", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_10": { + "name": "__unnamed_10", + "pins": [ + { + "component": "Module1", + "pin_number": "64", + "pin_name": "SD_DAT5", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_11": { + "name": "__unnamed_11", + "pins": [ + { + "component": "Module1", + "pin_number": "67", + "pin_name": "SD_DAT1", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_12": { + "name": "__unnamed_12", + "pins": [ + { + "component": "Module1", + "pin_number": "68", + "pin_name": "SD_DAT4", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_13": { + "name": "__unnamed_13", + "pins": [ + { + "component": "Module1", + "pin_number": "69", + "pin_name": "SD_DAT2", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_14": { + "name": "__unnamed_14", + "pins": [ + { + "component": "Module1", + "pin_number": "70", + "pin_name": "SD_DAT7", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_15": { + "name": "__unnamed_15", + "pins": [ + { + "component": "Module1", + "pin_number": "72", + "pin_name": "SD_DAT6", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_16": { + "name": "__unnamed_16", + "pins": [ + { + "component": "Module1", + "pin_number": "73", + "pin_name": "SD_VDD_Override", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_17": { + "name": "__unnamed_17", + "pins": [ + { + "component": "Module1", + "pin_number": "75", + "pin_name": "SD_PWR_ON", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "VBAT": { + "name": "VBAT", + "pins": [ + { + "component": "Module1", + "pin_number": "76", + "pin_name": "VBAT", + "pin_type": "passive" + }, + { + "component": "BT1", + "pin_number": "1", + "pin_name": "+", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "VBAT", + "type": "label" + } + ] + }, + "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF": { + "name": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "pins": [ + { + "component": "Module1", + "pin_number": "78", + "pin_name": "GPIO_VREF(1.8v/3.3v_Input)", + "pin_type": "power_in" + }, + { + "component": "R5", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "R4", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "R6", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "R7", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + } + ], + "point_count": 14, + "no_connect": false, + "labels": [ + { + "name": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "type": "hierarchical_label" + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/GPIO_VREF", + "type": "hierarchical_label" + }, + { + "name": "GPIO_VREF", + "type": "label" + } + ] + }, + "__unnamed_18": { + "name": "__unnamed_18", + "pins": [ + { + "component": "Module1", + "pin_number": "80", + "pin_name": "SCL0", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_19": { + "name": "__unnamed_19", + "pins": [ + { + "component": "Module1", + "pin_number": "82", + "pin_name": "SDA0", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "+1.8v": { + "name": "+1.8v", + "pins": [ + { + "component": "Module1", + "pin_number": "88", + "pin_name": "+1.8v_(Output)", + "pin_type": "power_out" + }, + { + "component": "Module1", + "pin_number": "90", + "pin_name": "+1.8v_(Output)", + "pin_type": "passive" + }, + { + "component": "R4", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + } + ], + "point_count": 7, + "no_connect": false, + "labels": [ + { + "name": "+1.8v", + "type": "label" + } + ] + }, + "WL_nDis": { + "name": "WL_nDis", + "pins": [ + { + "component": "Module1", + "pin_number": "89", + "pin_name": "WiFi_nDisable", + "pin_type": "input" + }, + { + "component": "J3", + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "WL_nDis", + "type": "label" + } + ] + }, + "TRD2_N": { + "name": "TRD2_N", + "pins": [ + { + "component": "Module1", + "pin_number": "9", + "pin_name": "Ethernet_Pair2_N", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "4", + "pin_name": "D2+", + "pin_type": "passive" + }, + { + "component": "U1", + "pin_number": "7", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "8", + "pin_name": "TRD2-", + "pin_type": "passive" + } + ], + "point_count": 8, + "no_connect": false, + "labels": [ + { + "name": "TRD2_N", + "type": "label" + } + ] + }, + "BT_nDis": { + "name": "BT_nDis", + "pins": [ + { + "component": "Module1", + "pin_number": "91", + "pin_name": "BT_nDisable", + "pin_type": "input" + }, + { + "component": "J3", + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive" + } + ], + "point_count": 3, + "no_connect": false, + "labels": [ + { + "name": "BT_nDis", + "type": "label" + } + ] + }, + "PWR_BUT": { + "name": "PWR_BUT", + "pins": [ + { + "component": "Module1", + "pin_number": "92", + "pin_name": "PWR_BUT", + "pin_type": "passive" + }, + { + "component": "J2", + "pin_number": "14", + "pin_name": "Pin_14", + "pin_type": "passive" + }, + { + "component": "SW1", + "pin_number": "1", + "pin_name": "1", + "pin_type": "passive" + } + ], + "point_count": 7, + "no_connect": false, + "labels": [ + { + "name": "PWR_BUT", + "type": "label" + } + ] + }, + "nRPIBOOT": { + "name": "nRPIBOOT", + "pins": [ + { + "component": "Module1", + "pin_number": "93", + "pin_name": "nRPIBOOT", + "pin_type": "input" + }, + { + "component": "J2", + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "nRPIBOOT", + "type": "label" + } + ] + }, + "__unnamed_20": { + "name": "__unnamed_20", + "pins": [ + { + "component": "Module1", + "pin_number": "97", + "pin_name": "CAM_GPIO0", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "PMIC_ENABLE": { + "name": "PMIC_ENABLE", + "pins": [ + { + "component": "Module1", + "pin_number": "99", + "pin_name": "PMIC_ENABLE", + "pin_type": "input" + }, + { + "component": "J2", + "pin_number": "12", + "pin_name": "Pin_12", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "PMIC_ENABLE", + "type": "label" + } + ] + }, + "__unnamed_21": { + "name": "__unnamed_21", + "pins": [ + { + "component": "C1", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "4", + "pin_name": "CT", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "5", + "pin_name": "CT", + "pin_type": "passive" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [] + }, + "TR1_TAP": { + "name": "TR1_TAP", + "pins": [ + { + "component": "J9", + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "12", + "pin_name": "VC2", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "TR1_TAP", + "type": "label" + } + ] + }, + "TR2_TAP": { + "name": "TR2_TAP", + "pins": [ + { + "component": "J9", + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "13", + "pin_name": "VC3", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "TR2_TAP", + "type": "label" + } + ] + }, + "TR0_TAP": { + "name": "TR0_TAP", + "pins": [ + { + "component": "J9", + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "11", + "pin_name": "VC1", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "TR0_TAP", + "type": "label" + } + ] + }, + "TR3_TAP": { + "name": "TR3_TAP", + "pins": [ + { + "component": "J9", + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "14", + "pin_name": "VC4", + "pin_type": "passive" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "TR3_TAP", + "type": "label" + } + ] + }, + "__unnamed_22": { + "name": "__unnamed_22", + "pins": [ + { + "component": "R2", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "16", + "pin_name": "LEDY_K", + "pin_type": "passive" + } + ], + "point_count": 2, + "no_connect": false, + "labels": [], + "display_name": "U3.LEDY_K" + }, + "__unnamed_23": { + "name": "__unnamed_23", + "pins": [ + { + "component": "R3", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U3", + "pin_number": "18", + "pin_name": "LEDG_K", + "pin_type": "passive" + } + ], + "point_count": 2, + "no_connect": false, + "labels": [], + "display_name": "U3.LEDG_K" + }, + "__unnamed_24": { + "name": "__unnamed_24", + "pins": [ + { + "component": "D2", + "pin_number": "1", + "pin_name": "K", + "pin_type": "passive" + }, + { + "component": "R1", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "TP3", + "pin_number": "1", + "pin_name": "1", + "pin_type": "passive" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [] + }, + "__unnamed_25": { + "name": "__unnamed_25", + "pins": [ + { + "component": "D1", + "pin_number": "1", + "pin_name": "K", + "pin_type": "passive" + }, + { + "component": "R10", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "TP5", + "pin_number": "1", + "pin_name": "1", + "pin_type": "passive" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [] + }, + "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID": { + "name": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "pins": [ + { + "component": "J2", + "pin_number": "10", + "pin_name": "Pin_10", + "pin_type": "passive" + }, + { + "component": "Module1", + "pin_number": "101", + "pin_name": "USB_OTG_ID", + "pin_type": "input" + } + ], + "point_count": 6, + "no_connect": false, + "labels": [ + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "type": "hierarchical_label" + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/USBOTG", + "type": "hierarchical_label" + } + ] + }, + "__unnamed_26": { + "name": "__unnamed_26", + "pins": [ + { + "component": "J2", + "pin_number": "8", + "pin_name": "Pin_8", + "pin_type": "passive" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_27": { + "name": "__unnamed_27", + "pins": [ + { + "component": "R6", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "J6", + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [] + }, + "__unnamed_28": { + "name": "__unnamed_28", + "pins": [ + { + "component": "R7", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "J6", + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [] + }, + "__unnamed_29": { + "name": "__unnamed_29", + "pins": [ + { + "component": "C13", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U12", + "pin_number": "2", + "pin_name": "OUT", + "pin_type": "power_out" + } + ], + "point_count": 3, + "no_connect": false, + "labels": [], + "display_name": "U12.OUT" + }, + "__unnamed_30": { + "name": "__unnamed_30", + "pins": [ + { + "component": "Module1", + "pin_number": "102", + "pin_name": "PCIe_nCLKREQ", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_31": { + "name": "__unnamed_31", + "pins": [ + { + "component": "Module1", + "pin_number": "104", + "pin_name": "PCIE_nWAKE", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_32": { + "name": "__unnamed_32", + "pins": [ + { + "component": "Module1", + "pin_number": "106", + "pin_name": "PCIE_PWR_EN", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_33": { + "name": "__unnamed_33", + "pins": [ + { + "component": "Module1", + "pin_number": "109", + "pin_name": "PCIe_nRST", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_34": { + "name": "__unnamed_34", + "pins": [ + { + "component": "Module1", + "pin_number": "110", + "pin_name": "PCIe_CLK_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "VBUS_EN": { + "name": "VBUS_EN", + "pins": [ + { + "component": "Module1", + "pin_number": "111", + "pin_name": "VBUS_EN", + "pin_type": "output" + }, + { + "component": "U6", + "pin_number": "3", + "pin_name": "EN", + "pin_type": "input" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "VBUS_EN", + "type": "label" + } + ] + }, + "__unnamed_35": { + "name": "__unnamed_35", + "pins": [ + { + "component": "Module1", + "pin_number": "112", + "pin_name": "PCIe_CLK_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_36": { + "name": "__unnamed_36", + "pins": [ + { + "component": "Module1", + "pin_number": "115", + "pin_name": "MIPI0_D0_N", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_37": { + "name": "__unnamed_37", + "pins": [ + { + "component": "Module1", + "pin_number": "116", + "pin_name": "PCIe_RX_P", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_38": { + "name": "__unnamed_38", + "pins": [ + { + "component": "Module1", + "pin_number": "117", + "pin_name": "MIPI0_D0_P", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_39": { + "name": "__unnamed_39", + "pins": [ + { + "component": "Module1", + "pin_number": "118", + "pin_name": "PCIe_RX_N", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_40": { + "name": "__unnamed_40", + "pins": [ + { + "component": "Module1", + "pin_number": "121", + "pin_name": "MIPI0_D1_N", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_41": { + "name": "__unnamed_41", + "pins": [ + { + "component": "Module1", + "pin_number": "122", + "pin_name": "PCIe_TX_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_42": { + "name": "__unnamed_42", + "pins": [ + { + "component": "Module1", + "pin_number": "123", + "pin_name": "MIPI0_D1_P", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_43": { + "name": "__unnamed_43", + "pins": [ + { + "component": "Module1", + "pin_number": "124", + "pin_name": "PCIe_TX_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_44": { + "name": "__unnamed_44", + "pins": [ + { + "component": "Module1", + "pin_number": "127", + "pin_name": "MIPI0_C_N", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-0-RX_N": { + "name": "USB3-0-RX_N", + "pins": [ + { + "component": "Module1", + "pin_number": "128", + "pin_name": "USB3-0-RX_N", + "pin_type": "input" + }, + { + "component": "J12", + "pin_number": "A6", + "pin_name": "SSRX+", + "pin_type": "bidirectional" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [ + { + "name": "USB3-0-RX_N", + "type": "label" + } + ] + }, + "__unnamed_45": { + "name": "__unnamed_45", + "pins": [ + { + "component": "Module1", + "pin_number": "129", + "pin_name": "MIPI0_C_P", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-0-RX_P": { + "name": "USB3-0-RX_P", + "pins": [ + { + "component": "Module1", + "pin_number": "130", + "pin_name": "USB3-0-RX_P", + "pin_type": "input" + }, + { + "component": "J12", + "pin_number": "A5", + "pin_name": "SSRX-", + "pin_type": "bidirectional" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [ + { + "name": "USB3-0-RX_P", + "type": "label" + } + ] + }, + "__unnamed_46": { + "name": "__unnamed_46", + "pins": [ + { + "component": "Module1", + "pin_number": "133", + "pin_name": "MIPI0_D2_N", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-0-D_P": { + "name": "USB3-0-D_P", + "pins": [ + { + "component": "Module1", + "pin_number": "134", + "pin_name": "USB3-0-D_P", + "pin_type": "passive" + }, + { + "component": "J12", + "pin_number": "A3", + "pin_name": "D+", + "pin_type": "bidirectional" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [ + { + "name": "USB3-0-D_P", + "type": "label" + } + ] + }, + "__unnamed_47": { + "name": "__unnamed_47", + "pins": [ + { + "component": "Module1", + "pin_number": "135", + "pin_name": "MIPI0_D2_P", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-0-D_N": { + "name": "USB3-0-D_N", + "pins": [ + { + "component": "Module1", + "pin_number": "136", + "pin_name": "USB3-0-D_N", + "pin_type": "passive" + }, + { + "component": "J12", + "pin_number": "A2", + "pin_name": "D-", + "pin_type": "bidirectional" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [ + { + "name": "USB3-0-D_N", + "type": "label" + } + ] + }, + "__unnamed_48": { + "name": "__unnamed_48", + "pins": [ + { + "component": "Module1", + "pin_number": "139", + "pin_name": "MIPI0_D3_N", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-0-TX_N": { + "name": "USB3-0-TX_N", + "pins": [ + { + "component": "Module1", + "pin_number": "140", + "pin_name": "USB3-0-TX_N", + "pin_type": "output" + }, + { + "component": "J12", + "pin_number": "A9", + "pin_name": "SSTX+", + "pin_type": "bidirectional" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [ + { + "name": "USB3-0-TX_N", + "type": "label" + } + ] + }, + "__unnamed_49": { + "name": "__unnamed_49", + "pins": [ + { + "component": "Module1", + "pin_number": "141", + "pin_name": "MIPI0_D3_P", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-0-TX_P": { + "name": "USB3-0-TX_P", + "pins": [ + { + "component": "Module1", + "pin_number": "142", + "pin_name": "USB3-0-TX_P", + "pin_type": "output" + }, + { + "component": "J12", + "pin_number": "A8", + "pin_name": "SSTX-", + "pin_type": "bidirectional" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [ + { + "name": "USB3-0-TX_P", + "type": "label" + } + ] + }, + "__unnamed_50": { + "name": "__unnamed_50", + "pins": [ + { + "component": "Module1", + "pin_number": "143", + "pin_name": "HDMI1_HOTPLUG", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_51": { + "name": "__unnamed_51", + "pins": [ + { + "component": "Module1", + "pin_number": "145", + "pin_name": "HDMI1_SDA", + "pin_type": "bidirectional" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_52": { + "name": "__unnamed_52", + "pins": [ + { + "component": "Module1", + "pin_number": "146", + "pin_name": "HDMI1_TX2_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_53": { + "name": "__unnamed_53", + "pins": [ + { + "component": "Module1", + "pin_number": "147", + "pin_name": "HDMI1_SCL", + "pin_type": "open_collector" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_54": { + "name": "__unnamed_54", + "pins": [ + { + "component": "Module1", + "pin_number": "148", + "pin_name": "HDMI1_TX2_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_55": { + "name": "__unnamed_55", + "pins": [ + { + "component": "Module1", + "pin_number": "149", + "pin_name": "HDMI1_CEC", + "pin_type": "open_collector" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_56": { + "name": "__unnamed_56", + "pins": [ + { + "component": "Module1", + "pin_number": "151", + "pin_name": "HDMI0_CEC", + "pin_type": "open_collector" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_57": { + "name": "__unnamed_57", + "pins": [ + { + "component": "Module1", + "pin_number": "152", + "pin_name": "HDMI1_TX1_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_58": { + "name": "__unnamed_58", + "pins": [ + { + "component": "Module1", + "pin_number": "153", + "pin_name": "HDMI0_HOTPLUG", + "pin_type": "input" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_59": { + "name": "__unnamed_59", + "pins": [ + { + "component": "Module1", + "pin_number": "154", + "pin_name": "HDMI1_TX1_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-1-RX_N": { + "name": "USB3-1-RX_N", + "pins": [ + { + "component": "Module1", + "pin_number": "157", + "pin_name": "USB3-1-RX_N", + "pin_type": "input" + }, + { + "component": "J12", + "pin_number": "B6", + "pin_name": "SSRX+", + "pin_type": "bidirectional" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "USB3-1-RX_N", + "type": "label" + } + ] + }, + "__unnamed_60": { + "name": "__unnamed_60", + "pins": [ + { + "component": "Module1", + "pin_number": "158", + "pin_name": "HDMI1_TX0_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-1-RX_P": { + "name": "USB3-1-RX_P", + "pins": [ + { + "component": "Module1", + "pin_number": "159", + "pin_name": "USB3-1-RX_P", + "pin_type": "input" + }, + { + "component": "J12", + "pin_number": "B5", + "pin_name": "SSRX-", + "pin_type": "bidirectional" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "USB3-1-RX_P", + "type": "label" + } + ] + }, + "__unnamed_61": { + "name": "__unnamed_61", + "pins": [ + { + "component": "Module1", + "pin_number": "160", + "pin_name": "HDMI1_TX0_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-1-D_P": { + "name": "USB3-1-D_P", + "pins": [ + { + "component": "Module1", + "pin_number": "163", + "pin_name": "USB3-1-D_P", + "pin_type": "passive" + }, + { + "component": "J12", + "pin_number": "B3", + "pin_name": "D+", + "pin_type": "bidirectional" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "USB3-1-D_P", + "type": "label" + } + ] + }, + "__unnamed_62": { + "name": "__unnamed_62", + "pins": [ + { + "component": "Module1", + "pin_number": "164", + "pin_name": "HDMI1_CLK_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-1-D_N": { + "name": "USB3-1-D_N", + "pins": [ + { + "component": "Module1", + "pin_number": "165", + "pin_name": "USB3-1-D_N", + "pin_type": "passive" + }, + { + "component": "J12", + "pin_number": "B2", + "pin_name": "D-", + "pin_type": "bidirectional" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "USB3-1-D_N", + "type": "label" + } + ] + }, + "__unnamed_63": { + "name": "__unnamed_63", + "pins": [ + { + "component": "Module1", + "pin_number": "166", + "pin_name": "HDMI1_CLK_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-1-TX_N": { + "name": "USB3-1-TX_N", + "pins": [ + { + "component": "Module1", + "pin_number": "169", + "pin_name": "USB3-1-TX_N", + "pin_type": "output" + }, + { + "component": "J12", + "pin_number": "B9", + "pin_name": "SSTX+", + "pin_type": "bidirectional" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "USB3-1-TX_N", + "type": "label" + } + ] + }, + "__unnamed_64": { + "name": "__unnamed_64", + "pins": [ + { + "component": "Module1", + "pin_number": "170", + "pin_name": "HDMI0_TX2_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "USB3-1-TX_P": { + "name": "USB3-1-TX_P", + "pins": [ + { + "component": "Module1", + "pin_number": "171", + "pin_name": "USB3-1-TX_P", + "pin_type": "output" + }, + { + "component": "J12", + "pin_number": "B8", + "pin_name": "SSTX-", + "pin_type": "bidirectional" + } + ], + "point_count": 5, + "no_connect": false, + "labels": [ + { + "name": "USB3-1-TX_P", + "type": "label" + } + ] + }, + "__unnamed_65": { + "name": "__unnamed_65", + "pins": [ + { + "component": "Module1", + "pin_number": "172", + "pin_name": "HDMI0_TX2_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_66": { + "name": "__unnamed_66", + "pins": [ + { + "component": "Module1", + "pin_number": "175", + "pin_name": "MIPI1_D0_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_67": { + "name": "__unnamed_67", + "pins": [ + { + "component": "Module1", + "pin_number": "176", + "pin_name": "HDMI0_TX1_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_68": { + "name": "__unnamed_68", + "pins": [ + { + "component": "Module1", + "pin_number": "177", + "pin_name": "MIPI1_D0_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_69": { + "name": "__unnamed_69", + "pins": [ + { + "component": "Module1", + "pin_number": "178", + "pin_name": "HDMI0_TX1_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_70": { + "name": "__unnamed_70", + "pins": [ + { + "component": "Module1", + "pin_number": "181", + "pin_name": "MIPI1_D1_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_71": { + "name": "__unnamed_71", + "pins": [ + { + "component": "Module1", + "pin_number": "182", + "pin_name": "HDMI0_TX0_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_72": { + "name": "__unnamed_72", + "pins": [ + { + "component": "Module1", + "pin_number": "183", + "pin_name": "MIPI1_D1_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_73": { + "name": "__unnamed_73", + "pins": [ + { + "component": "Module1", + "pin_number": "184", + "pin_name": "HDMI0_TX0_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_74": { + "name": "__unnamed_74", + "pins": [ + { + "component": "Module1", + "pin_number": "187", + "pin_name": "MIPI1_C_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_75": { + "name": "__unnamed_75", + "pins": [ + { + "component": "Module1", + "pin_number": "188", + "pin_name": "HDMI0_CLK_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_76": { + "name": "__unnamed_76", + "pins": [ + { + "component": "Module1", + "pin_number": "189", + "pin_name": "MIPI1_C_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_77": { + "name": "__unnamed_77", + "pins": [ + { + "component": "Module1", + "pin_number": "190", + "pin_name": "HDMI0_CLK_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_78": { + "name": "__unnamed_78", + "pins": [ + { + "component": "Module1", + "pin_number": "193", + "pin_name": "MIPI1_D2_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_79": { + "name": "__unnamed_79", + "pins": [ + { + "component": "Module1", + "pin_number": "194", + "pin_name": "MIPI1_D3_N", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_80": { + "name": "__unnamed_80", + "pins": [ + { + "component": "Module1", + "pin_number": "195", + "pin_name": "MIPI1_D2_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_81": { + "name": "__unnamed_81", + "pins": [ + { + "component": "Module1", + "pin_number": "196", + "pin_name": "MIPI1_D3_P", + "pin_type": "output" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_82": { + "name": "__unnamed_82", + "pins": [ + { + "component": "Module1", + "pin_number": "199", + "pin_name": "HDMI0_SDA", + "pin_type": "bidirectional" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "__unnamed_83": { + "name": "__unnamed_83", + "pins": [ + { + "component": "Module1", + "pin_number": "200", + "pin_name": "HDMI0_SCL", + "pin_type": "open_collector" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [] + }, + "VBUS": { + "name": "VBUS", + "pins": [ + { + "component": "C7", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "C3", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "C8", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U6", + "pin_number": "6", + "pin_name": "OUT", + "pin_type": "power_out" + }, + { + "component": "J12", + "pin_number": "A1", + "pin_name": "VBUS", + "pin_type": "power_in" + }, + { + "component": "J12", + "pin_number": "B1", + "pin_name": "VBUS", + "pin_type": "power_in" + } + ], + "point_count": 11, + "no_connect": false, + "labels": [ + { + "name": "VBUS", + "type": "label" + } + ] + }, + "__unnamed_84": { + "name": "__unnamed_84", + "pins": [ + { + "component": "R12", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "U6", + "pin_number": "5", + "pin_name": "ILIM", + "pin_type": "passive" + } + ], + "point_count": 2, + "no_connect": false, + "labels": [], + "display_name": "U6.ILIM" + }, + "+5v": { + "name": "+5v", + "pins": [ + { + "component": "U6", + "pin_number": "1", + "pin_name": "IN", + "pin_type": "power_in" + }, + { + "component": "C2", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + } + ], + "point_count": 4, + "no_connect": false, + "labels": [ + { + "name": "+5v", + "type": "label" + } + ] + }, + "__unnamed_85": { + "name": "__unnamed_85", + "pins": [ + { + "component": "U6", + "pin_number": "4", + "pin_name": "nFault", + "pin_type": "open_collector" + } + ], + "point_count": 1, + "no_connect": true, + "labels": [], + "display_name": "U6.nFault" + } + }, + "subcircuits": [ + { + "center_ic": "U5", + "ic_value": "74LVC1G07SE-7", + "ic_mpn": "", + "ic_lib_id": "CM5IO:74LVC1G07_copy", + "neighbor_components": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other" + }, + { + "ref": "R10", + "value": "1k", + "type": "resistor" + } + ], + "description": "" + }, + { + "center_ic": "U2", + "ic_value": "TPD4EUSB30", + "ic_mpn": "", + "ic_lib_id": "CM5IO:TPD4EUSB30", + "neighbor_components": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic" + } + ], + "description": "" + }, + { + "center_ic": "U1", + "ic_value": "TPD4EUSB30", + "ic_mpn": "", + "ic_lib_id": "CM5IO:TPD4EUSB30", + "neighbor_components": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic" + } + ], + "description": "" + }, + { + "center_ic": "U3", + "ic_value": "MagJack-A70-112-331N126", + "ic_mpn": "", + "ic_lib_id": "CM5IO:MagJack-A70-112-331N126", + "neighbor_components": [ + { + "ref": "C1", + "value": "100n", + "type": "capacitor" + }, + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other" + }, + { + "ref": "R2", + "value": "470R", + "type": "resistor" + }, + { + "ref": "R3", + "value": "470R", + "type": "resistor" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic" + } + ], + "description": "" + }, + { + "center_ic": "U12", + "ic_value": "RT9742SNGV", + "ic_mpn": "", + "ic_lib_id": "CM5IO:RT9742SNGV", + "neighbor_components": [ + { + "ref": "C13", + "value": "100n", + "type": "capacitor" + } + ], + "description": "" + }, + { + "center_ic": "U6", + "ic_value": "AP22653W6", + "ic_mpn": "", + "ic_lib_id": "CM5IO:AP2553W6", + "neighbor_components": [ + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor" + } + ], + "description": "" + } + ], + "ic_pin_analysis": [ + { + "reference": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "lib_id": "Connector:USB_C_Receptacle_USB2.0_16P", + "mpn": "", + "description": "", + "datasheet": "https://www.usb.org/sites/default/files/documents/usb_type-c.zip", + "function": "", + "total_pins": 17, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "A1", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A12", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A4", + "pin_name": "VBUS", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "A5", + "pin_name": "CC1", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff706a/CC1", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "94", + "pin_name": "CC1" + } + ] + }, + { + "pin_number": "A6", + "pin_name": "D+", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "105", + "pin_name": "USB2_P" + } + ] + }, + { + "pin_number": "A7", + "pin_name": "D-", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "103", + "pin_name": "USB2_N" + } + ] + }, + { + "pin_number": "A8", + "pin_name": "SBU1", + "pin_type": "bidirectional", + "net": "NO_CONNECT", + "connected_to": [] + }, + { + "pin_number": "A9", + "pin_name": "VBUS", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "B1", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "B12", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "B4", + "pin_name": "VBUS", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "B5", + "pin_name": "CC2", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff706a/CC2", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "96", + "pin_name": "CC2" + } + ] + }, + { + "pin_number": "B6", + "pin_name": "D+", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "105", + "pin_name": "USB2_P" + } + ] + }, + { + "pin_number": "B7", + "pin_name": "D-", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "103", + "pin_name": "USB2_N" + } + ] + }, + { + "pin_number": "B8", + "pin_name": "SBU2", + "pin_type": "bidirectional", + "net": "NO_CONNECT", + "connected_to": [] + }, + { + "pin_number": "B9", + "pin_name": "VBUS", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "S1", + "pin_name": "SHIELD", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "power_pins": [ + { + "pin_number": "A1", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A12", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A4", + "pin_name": "VBUS", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "A9", + "pin_name": "VBUS", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "B1", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "B12", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "B4", + "pin_name": "VBUS", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "B9", + "pin_name": "VBUS", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "S1", + "pin_name": "SHIELD", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "A5", + "pin_name": "CC1", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff706a/CC1", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "94", + "pin_name": "CC1" + } + ] + }, + { + "pin_number": "A6", + "pin_name": "D+", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "105", + "pin_name": "USB2_P" + } + ] + }, + { + "pin_number": "A7", + "pin_name": "D-", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "103", + "pin_name": "USB2_N" + } + ] + }, + { + "pin_number": "A8", + "pin_name": "SBU1", + "pin_type": "bidirectional", + "net": "NO_CONNECT", + "connected_to": [] + }, + { + "pin_number": "B5", + "pin_name": "CC2", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff706a/CC2", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "96", + "pin_name": "CC2" + } + ] + }, + { + "pin_number": "B6", + "pin_name": "D+", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "105", + "pin_name": "USB2_P" + } + ] + }, + { + "pin_number": "B7", + "pin_name": "D-", + "pin_type": "bidirectional", + "net": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "103", + "pin_name": "USB2_N" + } + ] + }, + { + "pin_number": "B8", + "pin_name": "SBU2", + "pin_type": "bidirectional", + "net": "NO_CONNECT", + "connected_to": [] + } + ], + "decoupling_caps_by_rail": { + "/00000000-0000-0000-0000-00005cff706a/+5v": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + } + }, + { + "reference": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "lib_id": "CM5IO:74LVC1G07_copy", + "mpn": "", + "description": "", + "datasheet": "https://www.diodes.com/assets/Datasheets/74LVC1G07.pdf", + "function": "logic IC", + "total_pins": 5, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "nc", + "pin_type": "no_connect", + "net": "NO_CONNECT", + "connected_to": [] + }, + { + "pin_number": "2", + "pin_name": "~", + "pin_type": "input", + "net": "nPWR_LED", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "95", + "pin_name": "LED_nPWR" + } + ] + }, + { + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "4", + "pin_name": "~", + "pin_type": "open_collector", + "net": "__unnamed_3", + "connected_to": [ + { + "ref": "R10", + "value": "1k", + "type": "resistor", + "pin": "2", + "pin_name": "~" + } + ], + "resistors": [ + { + "ref": "R10", + "value": "1k", + "direction": "series", + "to_net": "__unnamed_25" + } + ] + }, + { + "pin_number": "5", + "pin_name": "VCC", + "pin_type": "power_in", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "17", + "pin_name": "Pin_17" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "15", + "pin_name": "LEDY_A" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "17", + "pin_name": "LEDG_A" + } + ], + "has_decoupling_cap": false, + "decoupling_caps": [] + } + ], + "power_pins": [ + { + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "5", + "pin_name": "VCC", + "pin_type": "power_in", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "17", + "pin_name": "Pin_17" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "15", + "pin_name": "LEDY_A" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "17", + "pin_name": "LEDG_A" + } + ], + "has_decoupling_cap": false, + "decoupling_caps": [] + } + ], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "nc", + "pin_type": "no_connect", + "net": "NO_CONNECT", + "connected_to": [] + }, + { + "pin_number": "2", + "pin_name": "~", + "pin_type": "input", + "net": "nPWR_LED", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "95", + "pin_name": "LED_nPWR" + } + ] + }, + { + "pin_number": "4", + "pin_name": "~", + "pin_type": "open_collector", + "net": "__unnamed_3", + "connected_to": [ + { + "ref": "R10", + "value": "1k", + "type": "resistor", + "pin": "2", + "pin_name": "~" + } + ], + "resistors": [ + { + "ref": "R10", + "value": "1k", + "direction": "series", + "to_net": "__unnamed_25" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "J9", + "value": "THD-02-R", + "type": "connector", + "lib_id": "Connector_Generic:Conn_02x02_Odd_Even", + "mpn": "", + "description": "", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "function": "", + "total_pins": 4, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "TR1_TAP", + "connected_to": [ + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "12", + "pin_name": "VC2" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "TR2_TAP", + "connected_to": [ + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "13", + "pin_name": "VC3" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "TR0_TAP", + "connected_to": [ + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "11", + "pin_name": "VC1" + } + ] + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "TR3_TAP", + "connected_to": [ + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "14", + "pin_name": "VC4" + } + ] + } + ], + "power_pins": [], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "TR1_TAP", + "connected_to": [ + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "12", + "pin_name": "VC2" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "TR2_TAP", + "connected_to": [ + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "13", + "pin_name": "VC3" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "TR0_TAP", + "connected_to": [ + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "11", + "pin_name": "VC1" + } + ] + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "TR3_TAP", + "connected_to": [ + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "14", + "pin_name": "VC4" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "J8", + "value": "THD-20-R", + "type": "connector", + "lib_id": "Connector_Generic:Conn_02x20_Odd_Even", + "mpn": "", + "description": "", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "function": "", + "total_pins": 40, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "5", + "pin_name": "VCC" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "15", + "pin_name": "LEDY_A" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "17", + "pin_name": "LEDG_A" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A9", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B9", + "pin_name": "VBUS" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "GPIO2", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "58", + "pin_name": "GPIO2" + } + ] + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A9", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B9", + "pin_name": "VBUS" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ] + }, + { + "pin_number": "5", + "pin_name": "Pin_5", + "pin_type": "passive", + "net": "GPIO3", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "56", + "pin_name": "GPIO3" + } + ] + }, + { + "pin_number": "6", + "pin_name": "Pin_6", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "7", + "pin_name": "Pin_7", + "pin_type": "passive", + "net": "GPIO4", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "54", + "pin_name": "GPIO4" + } + ] + }, + { + "pin_number": "8", + "pin_name": "Pin_8", + "pin_type": "passive", + "net": "GPIO14", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "55", + "pin_name": "GPIO14" + } + ] + }, + { + "pin_number": "9", + "pin_name": "Pin_9", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "10", + "pin_name": "Pin_10", + "pin_type": "passive", + "net": "GPIO15", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "51", + "pin_name": "GPIO15" + } + ] + }, + { + "pin_number": "11", + "pin_name": "Pin_11", + "pin_type": "passive", + "net": "GPIO17", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "50", + "pin_name": "GPIO17" + } + ] + }, + { + "pin_number": "12", + "pin_name": "Pin_12", + "pin_type": "passive", + "net": "GPIO18", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "49", + "pin_name": "GPIO18" + } + ] + }, + { + "pin_number": "13", + "pin_name": "Pin_13", + "pin_type": "passive", + "net": "GPIO27", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "48", + "pin_name": "GPIO27" + } + ] + }, + { + "pin_number": "14", + "pin_name": "Pin_14", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "15", + "pin_name": "Pin_15", + "pin_type": "passive", + "net": "GPIO22", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "46", + "pin_name": "GPIO22" + } + ] + }, + { + "pin_number": "16", + "pin_name": "Pin_16", + "pin_type": "passive", + "net": "GPIO23", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "47", + "pin_name": "GPIO23" + } + ] + }, + { + "pin_number": "17", + "pin_name": "Pin_17", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "5", + "pin_name": "VCC" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "15", + "pin_name": "LEDY_A" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "17", + "pin_name": "LEDG_A" + } + ] + }, + { + "pin_number": "18", + "pin_name": "Pin_18", + "pin_type": "passive", + "net": "GPIO24", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "45", + "pin_name": "GPIO24" + } + ] + }, + { + "pin_number": "19", + "pin_name": "Pin_19", + "pin_type": "passive", + "net": "GPIO10", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "44", + "pin_name": "GPIO10" + } + ] + }, + { + "pin_number": "20", + "pin_name": "Pin_20", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "21", + "pin_name": "Pin_21", + "pin_type": "passive", + "net": "GPIO9", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "40", + "pin_name": "GPIO9" + } + ] + }, + { + "pin_number": "22", + "pin_name": "Pin_22", + "pin_type": "passive", + "net": "GPIO25", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "41", + "pin_name": "GPIO25" + } + ] + }, + { + "pin_number": "23", + "pin_name": "Pin_23", + "pin_type": "passive", + "net": "GPIO11", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "38", + "pin_name": "GPIO11" + } + ] + }, + { + "pin_number": "24", + "pin_name": "Pin_24", + "pin_type": "passive", + "net": "GPIO8", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "39", + "pin_name": "GPIO8" + } + ] + }, + { + "pin_number": "25", + "pin_name": "Pin_25", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "26", + "pin_name": "Pin_26", + "pin_type": "passive", + "net": "GPIO7", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "37", + "pin_name": "GPIO7" + } + ] + }, + { + "pin_number": "27", + "pin_name": "Pin_27", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "36", + "pin_name": "ID_SD" + }, + { + "ref": "J6", + "value": "THD-02-R", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + } + ] + }, + { + "pin_number": "28", + "pin_name": "Pin_28", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "35", + "pin_name": "ID_SC" + }, + { + "ref": "J6", + "value": "THD-02-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + } + ] + }, + { + "pin_number": "29", + "pin_name": "Pin_29", + "pin_type": "passive", + "net": "GPIO5", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "34", + "pin_name": "GPIO5" + } + ] + }, + { + "pin_number": "30", + "pin_name": "Pin_30", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "31", + "pin_name": "Pin_31", + "pin_type": "passive", + "net": "GPIO6", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "30", + "pin_name": "GPIO6" + } + ] + }, + { + "pin_number": "32", + "pin_name": "Pin_32", + "pin_type": "passive", + "net": "GPIO12", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "31", + "pin_name": "GPIO12" + } + ] + }, + { + "pin_number": "33", + "pin_name": "Pin_33", + "pin_type": "passive", + "net": "GPIO13", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "28", + "pin_name": "GPIO13" + } + ] + }, + { + "pin_number": "34", + "pin_name": "Pin_34", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "35", + "pin_name": "Pin_35", + "pin_type": "passive", + "net": "GPIO19", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "26", + "pin_name": "GPIO19" + } + ] + }, + { + "pin_number": "36", + "pin_name": "Pin_36", + "pin_type": "passive", + "net": "GPIO16", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "29", + "pin_name": "GPIO16" + } + ] + }, + { + "pin_number": "37", + "pin_name": "Pin_37", + "pin_type": "passive", + "net": "GPIO26", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "24", + "pin_name": "GPIO26" + } + ] + }, + { + "pin_number": "38", + "pin_name": "Pin_38", + "pin_type": "passive", + "net": "GPIO20", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "27", + "pin_name": "GPIO20" + } + ] + }, + { + "pin_number": "39", + "pin_name": "Pin_39", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "40", + "pin_name": "Pin_40", + "pin_type": "passive", + "net": "GPIO21", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "25", + "pin_name": "GPIO21" + } + ] + } + ], + "power_pins": [ + { + "pin_number": "14", + "pin_name": "Pin_14", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "20", + "pin_name": "Pin_20", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "25", + "pin_name": "Pin_25", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "30", + "pin_name": "Pin_30", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "34", + "pin_name": "Pin_34", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "39", + "pin_name": "Pin_39", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "6", + "pin_name": "Pin_6", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "9", + "pin_name": "Pin_9", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "5", + "pin_name": "VCC" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "15", + "pin_name": "LEDY_A" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "17", + "pin_name": "LEDG_A" + } + ] + }, + { + "pin_number": "10", + "pin_name": "Pin_10", + "pin_type": "passive", + "net": "GPIO15", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "51", + "pin_name": "GPIO15" + } + ] + }, + { + "pin_number": "11", + "pin_name": "Pin_11", + "pin_type": "passive", + "net": "GPIO17", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "50", + "pin_name": "GPIO17" + } + ] + }, + { + "pin_number": "12", + "pin_name": "Pin_12", + "pin_type": "passive", + "net": "GPIO18", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "49", + "pin_name": "GPIO18" + } + ] + }, + { + "pin_number": "13", + "pin_name": "Pin_13", + "pin_type": "passive", + "net": "GPIO27", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "48", + "pin_name": "GPIO27" + } + ] + }, + { + "pin_number": "15", + "pin_name": "Pin_15", + "pin_type": "passive", + "net": "GPIO22", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "46", + "pin_name": "GPIO22" + } + ] + }, + { + "pin_number": "16", + "pin_name": "Pin_16", + "pin_type": "passive", + "net": "GPIO23", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "47", + "pin_name": "GPIO23" + } + ] + }, + { + "pin_number": "17", + "pin_name": "Pin_17", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "5", + "pin_name": "VCC" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "15", + "pin_name": "LEDY_A" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "17", + "pin_name": "LEDG_A" + } + ] + }, + { + "pin_number": "18", + "pin_name": "Pin_18", + "pin_type": "passive", + "net": "GPIO24", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "45", + "pin_name": "GPIO24" + } + ] + }, + { + "pin_number": "19", + "pin_name": "Pin_19", + "pin_type": "passive", + "net": "GPIO10", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "44", + "pin_name": "GPIO10" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A9", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B9", + "pin_name": "VBUS" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ] + }, + { + "pin_number": "21", + "pin_name": "Pin_21", + "pin_type": "passive", + "net": "GPIO9", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "40", + "pin_name": "GPIO9" + } + ] + }, + { + "pin_number": "22", + "pin_name": "Pin_22", + "pin_type": "passive", + "net": "GPIO25", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "41", + "pin_name": "GPIO25" + } + ] + }, + { + "pin_number": "23", + "pin_name": "Pin_23", + "pin_type": "passive", + "net": "GPIO11", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "38", + "pin_name": "GPIO11" + } + ] + }, + { + "pin_number": "24", + "pin_name": "Pin_24", + "pin_type": "passive", + "net": "GPIO8", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "39", + "pin_name": "GPIO8" + } + ] + }, + { + "pin_number": "26", + "pin_name": "Pin_26", + "pin_type": "passive", + "net": "GPIO7", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "37", + "pin_name": "GPIO7" + } + ] + }, + { + "pin_number": "27", + "pin_name": "Pin_27", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "36", + "pin_name": "ID_SD" + }, + { + "ref": "J6", + "value": "THD-02-R", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + } + ] + }, + { + "pin_number": "28", + "pin_name": "Pin_28", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "35", + "pin_name": "ID_SC" + }, + { + "ref": "J6", + "value": "THD-02-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + } + ] + }, + { + "pin_number": "29", + "pin_name": "Pin_29", + "pin_type": "passive", + "net": "GPIO5", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "34", + "pin_name": "GPIO5" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "GPIO2", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "58", + "pin_name": "GPIO2" + } + ] + }, + { + "pin_number": "31", + "pin_name": "Pin_31", + "pin_type": "passive", + "net": "GPIO6", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "30", + "pin_name": "GPIO6" + } + ] + }, + { + "pin_number": "32", + "pin_name": "Pin_32", + "pin_type": "passive", + "net": "GPIO12", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "31", + "pin_name": "GPIO12" + } + ] + }, + { + "pin_number": "33", + "pin_name": "Pin_33", + "pin_type": "passive", + "net": "GPIO13", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "28", + "pin_name": "GPIO13" + } + ] + }, + { + "pin_number": "35", + "pin_name": "Pin_35", + "pin_type": "passive", + "net": "GPIO19", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "26", + "pin_name": "GPIO19" + } + ] + }, + { + "pin_number": "36", + "pin_name": "Pin_36", + "pin_type": "passive", + "net": "GPIO16", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "29", + "pin_name": "GPIO16" + } + ] + }, + { + "pin_number": "37", + "pin_name": "Pin_37", + "pin_type": "passive", + "net": "GPIO26", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "24", + "pin_name": "GPIO26" + } + ] + }, + { + "pin_number": "38", + "pin_name": "Pin_38", + "pin_type": "passive", + "net": "GPIO20", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "27", + "pin_name": "GPIO20" + } + ] + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A9", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B9", + "pin_name": "VBUS" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ] + }, + { + "pin_number": "40", + "pin_name": "Pin_40", + "pin_type": "passive", + "net": "GPIO21", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "25", + "pin_name": "GPIO21" + } + ] + }, + { + "pin_number": "5", + "pin_name": "Pin_5", + "pin_type": "passive", + "net": "GPIO3", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "56", + "pin_name": "GPIO3" + } + ] + }, + { + "pin_number": "7", + "pin_name": "Pin_7", + "pin_type": "passive", + "net": "GPIO4", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "54", + "pin_name": "GPIO4" + } + ] + }, + { + "pin_number": "8", + "pin_name": "Pin_8", + "pin_type": "passive", + "net": "GPIO14", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "55", + "pin_name": "GPIO14" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "lib_id": "CM5IO:TPD4EUSB30", + "mpn": "", + "description": "", + "datasheet": "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf", + "function": "ESD protection", + "total_pins": 10, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "D1+", + "pin_type": "passive", + "net": "TRD1_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "4", + "pin_name": "Ethernet_Pair1_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "3", + "pin_name": "TRD1+" + } + ] + }, + { + "pin_number": "2", + "pin_name": "D1-", + "pin_type": "passive", + "net": "TRD1_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "6", + "pin_name": "Ethernet_Pair1_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "6", + "pin_name": "TRD1-" + } + ] + }, + { + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "4", + "pin_name": "D2+", + "pin_type": "passive", + "net": "TRD0_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "10", + "pin_name": "Ethernet_Pair0_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "2", + "pin_name": "TRD0-" + } + ] + }, + { + "pin_number": "5", + "pin_name": "D2-", + "pin_type": "passive", + "net": "TRD0_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "12", + "pin_name": "Ethernet_Pair0_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "1", + "pin_name": "TRD0+" + } + ] + }, + { + "pin_number": "6", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD0_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "12", + "pin_name": "Ethernet_Pair0_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "1", + "pin_name": "TRD0+" + } + ] + }, + { + "pin_number": "7", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD0_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "10", + "pin_name": "Ethernet_Pair0_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "2", + "pin_name": "TRD0-" + } + ] + }, + { + "pin_number": "8", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "9", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD1_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "6", + "pin_name": "Ethernet_Pair1_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "6", + "pin_name": "TRD1-" + } + ] + }, + { + "pin_number": "10", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD1_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "4", + "pin_name": "Ethernet_Pair1_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "3", + "pin_name": "TRD1+" + } + ] + } + ], + "power_pins": [ + { + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "8", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "D1+", + "pin_type": "passive", + "net": "TRD1_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "4", + "pin_name": "Ethernet_Pair1_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "3", + "pin_name": "TRD1+" + } + ] + }, + { + "pin_number": "10", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD1_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "4", + "pin_name": "Ethernet_Pair1_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "3", + "pin_name": "TRD1+" + } + ] + }, + { + "pin_number": "2", + "pin_name": "D1-", + "pin_type": "passive", + "net": "TRD1_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "6", + "pin_name": "Ethernet_Pair1_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "6", + "pin_name": "TRD1-" + } + ] + }, + { + "pin_number": "4", + "pin_name": "D2+", + "pin_type": "passive", + "net": "TRD0_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "10", + "pin_name": "Ethernet_Pair0_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "2", + "pin_name": "TRD0-" + } + ] + }, + { + "pin_number": "5", + "pin_name": "D2-", + "pin_type": "passive", + "net": "TRD0_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "12", + "pin_name": "Ethernet_Pair0_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "1", + "pin_name": "TRD0+" + } + ] + }, + { + "pin_number": "6", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD0_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "12", + "pin_name": "Ethernet_Pair0_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "1", + "pin_name": "TRD0+" + } + ] + }, + { + "pin_number": "7", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD0_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "10", + "pin_name": "Ethernet_Pair0_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "2", + "pin_name": "TRD0-" + } + ] + }, + { + "pin_number": "9", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD1_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "6", + "pin_name": "Ethernet_Pair1_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "6", + "pin_name": "TRD1-" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "lib_id": "Connector_Generic:Conn_02x07_Odd_Even", + "mpn": "", + "description": "", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "function": "", + "total_pins": 14, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "nRPIBOOT", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "93", + "pin_name": "nRPIBOOT" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "EEPROM_nWP", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "20", + "pin_name": "EEPROM_nWP" + } + ] + }, + { + "pin_number": "5", + "pin_name": "Pin_5", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "6", + "pin_name": "Pin_6", + "pin_type": "passive", + "net": "SYNC_OUT", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "18", + "pin_name": "Ethernet_SYNC_OUT(3.3v)" + } + ] + }, + { + "pin_number": "7", + "pin_name": "Pin_7", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "8", + "pin_name": "Pin_8", + "pin_type": "passive", + "net": "NO_CONNECT", + "connected_to": [] + }, + { + "pin_number": "9", + "pin_name": "Pin_9", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "10", + "pin_name": "Pin_10", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "101", + "pin_name": "USB_OTG_ID" + } + ] + }, + { + "pin_number": "11", + "pin_name": "Pin_11", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "12", + "pin_name": "Pin_12", + "pin_type": "passive", + "net": "PMIC_ENABLE", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "99", + "pin_name": "PMIC_ENABLE" + } + ] + }, + { + "pin_number": "13", + "pin_name": "Pin_13", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "14", + "pin_name": "Pin_14", + "pin_type": "passive", + "net": "PWR_BUT", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "92", + "pin_name": "PWR_BUT" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "1", + "pin_name": "1" + } + ] + } + ], + "power_pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "11", + "pin_name": "Pin_11", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "13", + "pin_name": "Pin_13", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "5", + "pin_name": "Pin_5", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "7", + "pin_name": "Pin_7", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "9", + "pin_name": "Pin_9", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "10", + "pin_name": "Pin_10", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "101", + "pin_name": "USB_OTG_ID" + } + ] + }, + { + "pin_number": "12", + "pin_name": "Pin_12", + "pin_type": "passive", + "net": "PMIC_ENABLE", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "99", + "pin_name": "PMIC_ENABLE" + } + ] + }, + { + "pin_number": "14", + "pin_name": "Pin_14", + "pin_type": "passive", + "net": "PWR_BUT", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "92", + "pin_name": "PWR_BUT" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "1", + "pin_name": "1" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "nRPIBOOT", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "93", + "pin_name": "nRPIBOOT" + } + ] + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "EEPROM_nWP", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "20", + "pin_name": "EEPROM_nWP" + } + ] + }, + { + "pin_number": "6", + "pin_name": "Pin_6", + "pin_type": "passive", + "net": "SYNC_OUT", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "18", + "pin_name": "Ethernet_SYNC_OUT(3.3v)" + } + ] + }, + { + "pin_number": "8", + "pin_name": "Pin_8", + "pin_type": "passive", + "net": "NO_CONNECT", + "connected_to": [] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "J3", + "value": "Conn_01x03", + "type": "connector", + "lib_id": "Connector_Generic:Conn_01x03", + "mpn": "", + "description": "", + "datasheet": "~", + "function": "", + "total_pins": 3, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "WL_nDis", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "89", + "pin_name": "WiFi_nDisable" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "BT_nDis", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "91", + "pin_name": "BT_nDisable" + } + ] + } + ], + "power_pins": [ + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "WL_nDis", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "89", + "pin_name": "WiFi_nDisable" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "BT_nDis", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "91", + "pin_name": "BT_nDisable" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "lib_id": "CM5IO:TPD4EUSB30", + "mpn": "", + "description": "", + "datasheet": "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf", + "function": "ESD protection", + "total_pins": 10, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "D1+", + "pin_type": "passive", + "net": "TRD3_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "3", + "pin_name": "Ethernet_Pair3_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "9", + "pin_name": "TRD3+" + } + ] + }, + { + "pin_number": "2", + "pin_name": "D1-", + "pin_type": "passive", + "net": "TRD3_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "5", + "pin_name": "Ethernet_Pair3_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "10", + "pin_name": "TRD3-" + } + ] + }, + { + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "4", + "pin_name": "D2+", + "pin_type": "passive", + "net": "TRD2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "9", + "pin_name": "Ethernet_Pair2_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "8", + "pin_name": "TRD2-" + } + ] + }, + { + "pin_number": "5", + "pin_name": "D2-", + "pin_type": "passive", + "net": "TRD2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "11", + "pin_name": "Ethernet_Pair2_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "7", + "pin_name": "TRD2+" + } + ] + }, + { + "pin_number": "6", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "11", + "pin_name": "Ethernet_Pair2_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "7", + "pin_name": "TRD2+" + } + ] + }, + { + "pin_number": "7", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "9", + "pin_name": "Ethernet_Pair2_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "8", + "pin_name": "TRD2-" + } + ] + }, + { + "pin_number": "8", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "9", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD3_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "5", + "pin_name": "Ethernet_Pair3_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "10", + "pin_name": "TRD3-" + } + ] + }, + { + "pin_number": "10", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD3_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "3", + "pin_name": "Ethernet_Pair3_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "9", + "pin_name": "TRD3+" + } + ] + } + ], + "power_pins": [ + { + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "8", + "pin_name": "GND", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "D1+", + "pin_type": "passive", + "net": "TRD3_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "3", + "pin_name": "Ethernet_Pair3_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "9", + "pin_name": "TRD3+" + } + ] + }, + { + "pin_number": "10", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD3_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "3", + "pin_name": "Ethernet_Pair3_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "9", + "pin_name": "TRD3+" + } + ] + }, + { + "pin_number": "2", + "pin_name": "D1-", + "pin_type": "passive", + "net": "TRD3_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "5", + "pin_name": "Ethernet_Pair3_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "10", + "pin_name": "TRD3-" + } + ] + }, + { + "pin_number": "4", + "pin_name": "D2+", + "pin_type": "passive", + "net": "TRD2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "9", + "pin_name": "Ethernet_Pair2_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "8", + "pin_name": "TRD2-" + } + ] + }, + { + "pin_number": "5", + "pin_name": "D2-", + "pin_type": "passive", + "net": "TRD2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "11", + "pin_name": "Ethernet_Pair2_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "7", + "pin_name": "TRD2+" + } + ] + }, + { + "pin_number": "6", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "11", + "pin_name": "Ethernet_Pair2_P" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "7", + "pin_name": "TRD2+" + } + ] + }, + { + "pin_number": "7", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "9", + "pin_name": "Ethernet_Pair2_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "8", + "pin_name": "TRD2-" + } + ] + }, + { + "pin_number": "9", + "pin_name": "~", + "pin_type": "passive", + "net": "TRD3_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "5", + "pin_name": "Ethernet_Pair3_N" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "10", + "pin_name": "TRD3-" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "lib_id": "CM5IO:MagJack-A70-112-331N126", + "mpn": "", + "description": "", + "datasheet": "https://p.globalsources.com/IMAGES/PDT/SPEC/690/K1160305690.pdf", + "function": "", + "total_pins": 20, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "TRD0+", + "pin_type": "passive", + "net": "TRD0_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "12", + "pin_name": "Ethernet_Pair0_P" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "5", + "pin_name": "D2-" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "6", + "pin_name": "~" + } + ] + }, + { + "pin_number": "2", + "pin_name": "TRD0-", + "pin_type": "passive", + "net": "TRD0_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "10", + "pin_name": "Ethernet_Pair0_N" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "4", + "pin_name": "D2+" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "7", + "pin_name": "~" + } + ] + }, + { + "pin_number": "3", + "pin_name": "TRD1+", + "pin_type": "passive", + "net": "TRD1_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "4", + "pin_name": "Ethernet_Pair1_P" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "1", + "pin_name": "D1+" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "10", + "pin_name": "~" + } + ] + }, + { + "pin_number": "4", + "pin_name": "CT", + "pin_type": "passive", + "net": "__unnamed_21", + "connected_to": [ + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "5", + "pin_name": "CT", + "pin_type": "passive", + "net": "__unnamed_21", + "connected_to": [ + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "6", + "pin_name": "TRD1-", + "pin_type": "passive", + "net": "TRD1_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "6", + "pin_name": "Ethernet_Pair1_N" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "2", + "pin_name": "D1-" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "9", + "pin_name": "~" + } + ] + }, + { + "pin_number": "7", + "pin_name": "TRD2+", + "pin_type": "passive", + "net": "TRD2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "11", + "pin_name": "Ethernet_Pair2_P" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "5", + "pin_name": "D2-" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "6", + "pin_name": "~" + } + ] + }, + { + "pin_number": "8", + "pin_name": "TRD2-", + "pin_type": "passive", + "net": "TRD2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "9", + "pin_name": "Ethernet_Pair2_N" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "4", + "pin_name": "D2+" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "7", + "pin_name": "~" + } + ] + }, + { + "pin_number": "9", + "pin_name": "TRD3+", + "pin_type": "passive", + "net": "TRD3_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "3", + "pin_name": "Ethernet_Pair3_P" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "1", + "pin_name": "D1+" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "10", + "pin_name": "~" + } + ] + }, + { + "pin_number": "10", + "pin_name": "TRD3-", + "pin_type": "passive", + "net": "TRD3_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "5", + "pin_name": "Ethernet_Pair3_N" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "2", + "pin_name": "D1-" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "9", + "pin_name": "~" + } + ] + }, + { + "pin_number": "11", + "pin_name": "VC1", + "pin_type": "passive", + "net": "TR0_TAP", + "connected_to": [ + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + } + ] + }, + { + "pin_number": "12", + "pin_name": "VC2", + "pin_type": "passive", + "net": "TR1_TAP", + "connected_to": [ + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + } + ] + }, + { + "pin_number": "13", + "pin_name": "VC3", + "pin_type": "passive", + "net": "TR2_TAP", + "connected_to": [ + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + } + ] + }, + { + "pin_number": "14", + "pin_name": "VC4", + "pin_type": "passive", + "net": "TR3_TAP", + "connected_to": [ + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + } + ] + }, + { + "pin_number": "15", + "pin_name": "LEDY_A", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "5", + "pin_name": "VCC" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "17", + "pin_name": "Pin_17" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "16", + "pin_name": "LEDY_K", + "pin_type": "passive", + "net": "__unnamed_22", + "connected_to": [ + { + "ref": "R2", + "value": "470R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "17", + "pin_name": "LEDG_A", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "5", + "pin_name": "VCC" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "17", + "pin_name": "Pin_17" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "18", + "pin_name": "LEDG_K", + "pin_type": "passive", + "net": "__unnamed_23", + "connected_to": [ + { + "ref": "R3", + "value": "470R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "19", + "pin_name": "SHIELD", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "20", + "pin_name": "SHIELD", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "power_pins": [ + { + "pin_number": "19", + "pin_name": "SHIELD", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "20", + "pin_name": "SHIELD", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "TRD0+", + "pin_type": "passive", + "net": "TRD0_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "12", + "pin_name": "Ethernet_Pair0_P" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "5", + "pin_name": "D2-" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "6", + "pin_name": "~" + } + ] + }, + { + "pin_number": "10", + "pin_name": "TRD3-", + "pin_type": "passive", + "net": "TRD3_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "5", + "pin_name": "Ethernet_Pair3_N" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "2", + "pin_name": "D1-" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "9", + "pin_name": "~" + } + ] + }, + { + "pin_number": "11", + "pin_name": "VC1", + "pin_type": "passive", + "net": "TR0_TAP", + "connected_to": [ + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + } + ] + }, + { + "pin_number": "12", + "pin_name": "VC2", + "pin_type": "passive", + "net": "TR1_TAP", + "connected_to": [ + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + } + ] + }, + { + "pin_number": "13", + "pin_name": "VC3", + "pin_type": "passive", + "net": "TR2_TAP", + "connected_to": [ + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + } + ] + }, + { + "pin_number": "14", + "pin_name": "VC4", + "pin_type": "passive", + "net": "TR3_TAP", + "connected_to": [ + { + "ref": "J9", + "value": "THD-02-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + } + ] + }, + { + "pin_number": "15", + "pin_name": "LEDY_A", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "5", + "pin_name": "VCC" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "17", + "pin_name": "Pin_17" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "16", + "pin_name": "LEDY_K", + "pin_type": "passive", + "net": "__unnamed_22", + "connected_to": [ + { + "ref": "R2", + "value": "470R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "17", + "pin_name": "LEDG_A", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "connected_to": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "5", + "pin_name": "VCC" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "84", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "86", + "pin_name": "+3.3v_(Output)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "17", + "pin_name": "Pin_17" + }, + { + "ref": "D2", + "value": "LED Green", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "D1", + "value": "LED Red", + "type": "led", + "pin": "2", + "pin_name": "A" + }, + { + "ref": "R5", + "value": "0R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "18", + "pin_name": "LEDG_K", + "pin_type": "passive", + "net": "__unnamed_23", + "connected_to": [ + { + "ref": "R3", + "value": "470R", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "2", + "pin_name": "TRD0-", + "pin_type": "passive", + "net": "TRD0_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "10", + "pin_name": "Ethernet_Pair0_N" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "4", + "pin_name": "D2+" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "7", + "pin_name": "~" + } + ] + }, + { + "pin_number": "3", + "pin_name": "TRD1+", + "pin_type": "passive", + "net": "TRD1_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "4", + "pin_name": "Ethernet_Pair1_P" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "1", + "pin_name": "D1+" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "10", + "pin_name": "~" + } + ] + }, + { + "pin_number": "4", + "pin_name": "CT", + "pin_type": "passive", + "net": "__unnamed_21", + "connected_to": [ + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "5", + "pin_name": "CT", + "pin_type": "passive", + "net": "__unnamed_21", + "connected_to": [ + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "6", + "pin_name": "TRD1-", + "pin_type": "passive", + "net": "TRD1_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "6", + "pin_name": "Ethernet_Pair1_N" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "2", + "pin_name": "D1-" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "9", + "pin_name": "~" + } + ] + }, + { + "pin_number": "7", + "pin_name": "TRD2+", + "pin_type": "passive", + "net": "TRD2_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "11", + "pin_name": "Ethernet_Pair2_P" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "5", + "pin_name": "D2-" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "6", + "pin_name": "~" + } + ] + }, + { + "pin_number": "8", + "pin_name": "TRD2-", + "pin_type": "passive", + "net": "TRD2_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "9", + "pin_name": "Ethernet_Pair2_N" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "4", + "pin_name": "D2+" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "7", + "pin_name": "~" + } + ] + }, + { + "pin_number": "9", + "pin_name": "TRD3+", + "pin_type": "passive", + "net": "TRD3_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "3", + "pin_name": "Ethernet_Pair3_P" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "1", + "pin_name": "D1+" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "10", + "pin_name": "~" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "lib_id": "Connector_Generic:Conn_01x04", + "mpn": "", + "description": "", + "datasheet": "", + "function": "", + "total_pins": 4, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A9", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B9", + "pin_name": "VBUS" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "PWM", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "19", + "pin_name": "FAN_PWM" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "TACHO", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "16", + "pin_name": "FAN_TACHO" + } + ] + } + ], + "power_pins": [ + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A9", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B9", + "pin_name": "VBUS" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "1", + "pin_name": "IN" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "PWM", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "19", + "pin_name": "FAN_PWM" + } + ] + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "TACHO", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "16", + "pin_name": "FAN_TACHO" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "U12", + "value": "RT9742SNGV", + "type": "ic", + "lib_id": "CM5IO:RT9742SNGV", + "mpn": "", + "description": "", + "datasheet": "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf", + "function": "", + "total_pins": 3, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "IN", + "pin_type": "power_in", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A9", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B9", + "pin_name": "VBUS" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "2", + "pin_name": "OUT", + "pin_type": "power_out", + "net": "__unnamed_29", + "connected_to": [ + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C13", + "value": "100n" + } + ] + }, + { + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "power_pins": [ + { + "pin_number": "1", + "pin_name": "IN", + "pin_type": "power_in", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "connected_to": [ + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A9", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B4", + "pin_name": "VBUS" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B9", + "pin_name": "VBUS" + }, + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "77", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "79", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "81", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "83", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "85", + "pin_name": "+5v_(Input)" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "87", + "pin_name": "+5v_(Input)" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "4", + "pin_name": "Pin_4" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ] + }, + { + "pin_number": "2", + "pin_name": "OUT", + "pin_type": "power_out", + "net": "__unnamed_29", + "connected_to": [ + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C13", + "value": "100n" + } + ] + }, + { + "pin_number": "3", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [], + "decoupling_caps_by_rail": { + "/00000000-0000-0000-0000-00005cff706a/+5v": [ + { + "ref": "C18", + "value": "100n" + }, + { + "ref": "C9", + "value": "100n" + }, + { + "ref": "C12", + "value": "100n" + } + ], + "__unnamed_29": [ + { + "ref": "C13", + "value": "100n" + } + ] + } + }, + { + "reference": "J6", + "value": "THD-02-R", + "type": "connector", + "lib_id": "Connector_Generic:Conn_02x02_Odd_Even", + "mpn": "", + "description": "", + "datasheet": "https://www.toby.co.uk/uploads/publications/1673.pdf", + "function": "", + "total_pins": 4, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "35", + "pin_name": "ID_SC" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "28", + "pin_name": "Pin_28" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "__unnamed_28", + "connected_to": [ + { + "ref": "R7", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "36", + "pin_name": "ID_SD" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "27", + "pin_name": "Pin_27" + } + ] + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "__unnamed_27", + "connected_to": [ + { + "ref": "R6", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + } + ] + } + ], + "power_pins": [], + "signal_pins": [ + { + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "35", + "pin_name": "ID_SC" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "28", + "pin_name": "Pin_28" + } + ] + }, + { + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive", + "net": "__unnamed_28", + "connected_to": [ + { + "ref": "R7", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + } + ] + }, + { + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "36", + "pin_name": "ID_SD" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "27", + "pin_name": "Pin_27" + } + ] + }, + { + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive", + "net": "__unnamed_27", + "connected_to": [ + { + "ref": "R6", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + } + ] + } + ], + "decoupling_caps_by_rail": {} + }, + { + "reference": "U6", + "value": "AP22653W6", + "type": "ic", + "lib_id": "CM5IO:AP2553W6", + "mpn": "", + "description": "", + "datasheet": "https://www.diodes.com/assets/Datasheets/AP255x.pdf", + "function": "power switch/load switch", + "total_pins": 6, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "1", + "pin_name": "IN", + "pin_type": "power_in", + "net": "+5v", + "connected_to": [ + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C2", + "value": "10u" + } + ] + }, + { + "pin_number": "2", + "pin_name": "GND", + "pin_type": "power_out", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "3", + "pin_name": "EN", + "pin_type": "input", + "net": "VBUS_EN", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "111", + "pin_name": "VBUS_EN" + } + ] + }, + { + "pin_number": "4", + "pin_name": "nFault", + "pin_type": "open_collector", + "net": "NO_CONNECT", + "connected_to": [] + }, + { + "pin_number": "5", + "pin_name": "ILIM", + "pin_type": "passive", + "net": "__unnamed_84", + "connected_to": [ + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + }, + { + "pin_number": "6", + "pin_name": "OUT", + "pin_type": "power_out", + "net": "VBUS", + "connected_to": [ + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A1", + "pin_name": "VBUS" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B1", + "pin_name": "VBUS" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C7", + "value": "10u" + }, + { + "ref": "C3", + "value": "100uF" + }, + { + "ref": "C8", + "value": "10u" + } + ] + } + ], + "power_pins": [ + { + "pin_number": "1", + "pin_name": "IN", + "pin_type": "power_in", + "net": "+5v", + "connected_to": [ + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C2", + "value": "10u" + } + ] + }, + { + "pin_number": "2", + "pin_name": "GND", + "pin_type": "power_out", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "10", + "pin_name": "SHIELD" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A7", + "pin_name": "DRAIN" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B4", + "pin_name": "GND" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B7", + "pin_name": "DRAIN" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "6", + "pin_name": "OUT", + "pin_type": "power_out", + "net": "VBUS", + "connected_to": [ + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "A1", + "pin_name": "VBUS" + }, + { + "ref": "J12", + "value": "USB3_A", + "type": "connector", + "pin": "B1", + "pin_name": "VBUS" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C7", + "value": "10u" + }, + { + "ref": "C3", + "value": "100uF" + }, + { + "ref": "C8", + "value": "10u" + } + ] + } + ], + "signal_pins": [ + { + "pin_number": "3", + "pin_name": "EN", + "pin_type": "input", + "net": "VBUS_EN", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "111", + "pin_name": "VBUS_EN" + } + ] + }, + { + "pin_number": "4", + "pin_name": "nFault", + "pin_type": "open_collector", + "net": "NO_CONNECT", + "connected_to": [] + }, + { + "pin_number": "5", + "pin_name": "ILIM", + "pin_type": "passive", + "net": "__unnamed_84", + "connected_to": [ + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "1", + "pin_name": "~" + } + ] + } + ], + "decoupling_caps_by_rail": { + "+5v": [ + { + "ref": "C2", + "value": "10u" + } + ], + "VBUS": [ + { + "ref": "C7", + "value": "10u" + }, + { + "ref": "C3", + "value": "100uF" + }, + { + "ref": "C8", + "value": "10u" + } + ] + } + }, + { + "reference": "J12", + "value": "USB3_A", + "type": "connector", + "lib_id": "CM5IO:USB3_A", + "mpn": "", + "description": "", + "datasheet": "~", + "function": "", + "total_pins": 19, + "unconnected_pins": 0, + "pins": [ + { + "pin_number": "10", + "pin_name": "SHIELD", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A1", + "pin_name": "VBUS", + "pin_type": "power_in", + "net": "VBUS", + "connected_to": [ + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "6", + "pin_name": "OUT" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C7", + "value": "10u" + }, + { + "ref": "C3", + "value": "100uF" + }, + { + "ref": "C8", + "value": "10u" + } + ] + }, + { + "pin_number": "A2", + "pin_name": "D-", + "pin_type": "bidirectional", + "net": "USB3-0-D_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "136", + "pin_name": "USB3-0-D_N" + } + ] + }, + { + "pin_number": "A3", + "pin_name": "D+", + "pin_type": "bidirectional", + "net": "USB3-0-D_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "134", + "pin_name": "USB3-0-D_P" + } + ] + }, + { + "pin_number": "A4", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A5", + "pin_name": "SSRX-", + "pin_type": "bidirectional", + "net": "USB3-0-RX_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "130", + "pin_name": "USB3-0-RX_P" + } + ] + }, + { + "pin_number": "A6", + "pin_name": "SSRX+", + "pin_type": "bidirectional", + "net": "USB3-0-RX_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "128", + "pin_name": "USB3-0-RX_N" + } + ] + }, + { + "pin_number": "A7", + "pin_name": "DRAIN", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A8", + "pin_name": "SSTX-", + "pin_type": "bidirectional", + "net": "USB3-0-TX_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "142", + "pin_name": "USB3-0-TX_P" + } + ] + }, + { + "pin_number": "A9", + "pin_name": "SSTX+", + "pin_type": "bidirectional", + "net": "USB3-0-TX_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "140", + "pin_name": "USB3-0-TX_N" + } + ] + }, + { + "pin_number": "B1", + "pin_name": "VBUS", + "pin_type": "power_in", + "net": "VBUS", + "connected_to": [ + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "6", + "pin_name": "OUT" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C7", + "value": "10u" + }, + { + "ref": "C3", + "value": "100uF" + }, + { + "ref": "C8", + "value": "10u" + } + ] + }, + { + "pin_number": "B2", + "pin_name": "D-", + "pin_type": "bidirectional", + "net": "USB3-1-D_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "165", + "pin_name": "USB3-1-D_N" + } + ] + }, + { + "pin_number": "B3", + "pin_name": "D+", + "pin_type": "bidirectional", + "net": "USB3-1-D_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "163", + "pin_name": "USB3-1-D_P" + } + ] + }, + { + "pin_number": "B4", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "B5", + "pin_name": "SSRX-", + "pin_type": "bidirectional", + "net": "USB3-1-RX_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "159", + "pin_name": "USB3-1-RX_P" + } + ] + }, + { + "pin_number": "B6", + "pin_name": "SSRX+", + "pin_type": "bidirectional", + "net": "USB3-1-RX_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "157", + "pin_name": "USB3-1-RX_N" + } + ] + }, + { + "pin_number": "B7", + "pin_name": "DRAIN", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "B8", + "pin_name": "SSTX-", + "pin_type": "bidirectional", + "net": "USB3-1-TX_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "171", + "pin_name": "USB3-1-TX_P" + } + ] + }, + { + "pin_number": "B9", + "pin_name": "SSTX+", + "pin_type": "bidirectional", + "net": "USB3-1-TX_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "169", + "pin_name": "USB3-1-TX_N" + } + ] + } + ], + "power_pins": [ + { + "pin_number": "10", + "pin_name": "SHIELD", + "pin_type": "passive", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A1", + "pin_name": "VBUS", + "pin_type": "power_in", + "net": "VBUS", + "connected_to": [ + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "6", + "pin_name": "OUT" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C7", + "value": "10u" + }, + { + "ref": "C3", + "value": "100uF" + }, + { + "ref": "C8", + "value": "10u" + } + ] + }, + { + "pin_number": "A4", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "A7", + "pin_name": "DRAIN", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "B1", + "pin_name": "VBUS", + "pin_type": "power_in", + "net": "VBUS", + "connected_to": [ + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "1", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "6", + "pin_name": "OUT" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [ + { + "ref": "C7", + "value": "10u" + }, + { + "ref": "C3", + "value": "100uF" + }, + { + "ref": "C8", + "value": "10u" + } + ] + }, + { + "pin_number": "B4", + "pin_name": "GND", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + }, + { + "pin_number": "B7", + "pin_name": "DRAIN", + "pin_type": "power_in", + "net": "GND", + "connected_to": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C18", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "A12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B1", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "B12", + "pin_name": "GND" + }, + { + "ref": "J11", + "value": "USB_C_Receptacle_USB2.0", + "type": "connector", + "pin": "S1", + "pin_name": "SHIELD" + }, + { + "ref": "C9", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "1", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "13", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "14", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "2", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "22", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "23", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "32", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "33", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "42", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "43", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "52", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "53", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "59", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "60", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "65", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "66", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "7", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "71", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "74", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "98", + "pin_name": "GND" + }, + { + "ref": "C1", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "14", + "pin_name": "Pin_14" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "20", + "pin_name": "Pin_20" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "25", + "pin_name": "Pin_25" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "30", + "pin_name": "Pin_30" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "34", + "pin_name": "Pin_34" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "39", + "pin_name": "Pin_39" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "6", + "pin_name": "Pin_6" + }, + { + "ref": "J8", + "value": "THD-20-R", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U2", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "1", + "pin_name": "Pin_1" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "11", + "pin_name": "Pin_11" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "13", + "pin_name": "Pin_13" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "5", + "pin_name": "Pin_5" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "7", + "pin_name": "Pin_7" + }, + { + "ref": "J2", + "value": "Conn_02x07_Odd_Even", + "type": "connector", + "pin": "9", + "pin_name": "Pin_9" + }, + { + "ref": "J3", + "value": "Conn_01x03", + "type": "connector", + "pin": "2", + "pin_name": "Pin_2" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "U1", + "value": "TPD4EUSB30", + "type": "ic", + "pin": "8", + "pin_name": "GND" + }, + { + "ref": "BT1", + "value": "Battery_Cell", + "type": "battery", + "pin": "2", + "pin_name": "-" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "19", + "pin_name": "SHIELD" + }, + { + "ref": "U3", + "value": "MagJack-A70-112-331N126", + "type": "ic", + "pin": "20", + "pin_name": "SHIELD" + }, + { + "ref": "J14", + "value": "JST_SHBM04B-SRSS-TB", + "type": "connector", + "pin": "3", + "pin_name": "Pin_3" + }, + { + "ref": "SW1", + "value": "Right angle Tact button", + "type": "switch", + "pin": "2", + "pin_name": "2" + }, + { + "ref": "C13", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C12", + "value": "100n", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U12", + "value": "RT9742SNGV", + "type": "ic", + "pin": "3", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "107", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "108", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "113", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "114", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "119", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "120", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "125", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "126", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "131", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "132", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "137", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "138", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "144", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "150", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "155", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "156", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "161", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "162", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "167", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "168", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "173", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "174", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "179", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "180", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "185", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "186", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "191", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "192", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "197", + "pin_name": "GND" + }, + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "198", + "pin_name": "GND" + }, + { + "ref": "C2", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C7", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C3", + "value": "100uF", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "R12", + "value": "15K 1%", + "type": "resistor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "C8", + "value": "10u", + "type": "capacitor", + "pin": "2", + "pin_name": "~" + }, + { + "ref": "U6", + "value": "AP22653W6", + "type": "ic", + "pin": "2", + "pin_name": "GND" + } + ], + "has_decoupling_cap": true, + "decoupling_caps": [], + "note": "Ground net \u2014 decoupling caps listed on VCC/VDD pins" + } + ], + "signal_pins": [ + { + "pin_number": "A2", + "pin_name": "D-", + "pin_type": "bidirectional", + "net": "USB3-0-D_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "136", + "pin_name": "USB3-0-D_N" + } + ] + }, + { + "pin_number": "A3", + "pin_name": "D+", + "pin_type": "bidirectional", + "net": "USB3-0-D_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "134", + "pin_name": "USB3-0-D_P" + } + ] + }, + { + "pin_number": "A5", + "pin_name": "SSRX-", + "pin_type": "bidirectional", + "net": "USB3-0-RX_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "130", + "pin_name": "USB3-0-RX_P" + } + ] + }, + { + "pin_number": "A6", + "pin_name": "SSRX+", + "pin_type": "bidirectional", + "net": "USB3-0-RX_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "128", + "pin_name": "USB3-0-RX_N" + } + ] + }, + { + "pin_number": "A8", + "pin_name": "SSTX-", + "pin_type": "bidirectional", + "net": "USB3-0-TX_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "142", + "pin_name": "USB3-0-TX_P" + } + ] + }, + { + "pin_number": "A9", + "pin_name": "SSTX+", + "pin_type": "bidirectional", + "net": "USB3-0-TX_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "140", + "pin_name": "USB3-0-TX_N" + } + ] + }, + { + "pin_number": "B2", + "pin_name": "D-", + "pin_type": "bidirectional", + "net": "USB3-1-D_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "165", + "pin_name": "USB3-1-D_N" + } + ] + }, + { + "pin_number": "B3", + "pin_name": "D+", + "pin_type": "bidirectional", + "net": "USB3-1-D_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "163", + "pin_name": "USB3-1-D_P" + } + ] + }, + { + "pin_number": "B5", + "pin_name": "SSRX-", + "pin_type": "bidirectional", + "net": "USB3-1-RX_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "159", + "pin_name": "USB3-1-RX_P" + } + ] + }, + { + "pin_number": "B6", + "pin_name": "SSRX+", + "pin_type": "bidirectional", + "net": "USB3-1-RX_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "157", + "pin_name": "USB3-1-RX_N" + } + ] + }, + { + "pin_number": "B8", + "pin_name": "SSTX-", + "pin_type": "bidirectional", + "net": "USB3-1-TX_P", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "171", + "pin_name": "USB3-1-TX_P" + } + ] + }, + { + "pin_number": "B9", + "pin_name": "SSTX+", + "pin_type": "bidirectional", + "net": "USB3-1-TX_N", + "connected_to": [ + { + "ref": "Module1", + "value": "ComputeModule5-CM5", + "type": "other", + "pin": "169", + "pin_name": "USB3-1-TX_N" + } + ] + } + ], + "decoupling_caps_by_rail": { + "VBUS": [ + { + "ref": "C7", + "value": "10u" + }, + { + "ref": "C3", + "value": "100uF" + }, + { + "ref": "C8", + "value": "10u" + } + ] + } + } + ], + "design_analysis": { + "net_classification": { + "GND": "ground", + "/00000000-0000-0000-0000-00005cff706a/+5v": "power", + "/00000000-0000-0000-0000-00005cff706a/CC1": "signal", + "/00000000-0000-0000-0000-00005cff70b1/USB2_P": "high_speed", + "/00000000-0000-0000-0000-00005cff70b1/USB2_N": "high_speed", + "__unnamed_0": "signal", + "/00000000-0000-0000-0000-00005cff706a/CC2": "signal", + "__unnamed_1": "signal", + "__unnamed_2": "signal", + "nPWR_LED": "output_drive", + "__unnamed_3": "signal", + "/00000000-0000-0000-0000-00005cff70b1/+3.3v": "power", + "TRD0_N": "signal", + "__unnamed_4": "signal", + "TRD2_P": "signal", + "TRD0_P": "signal", + "ETH_LEDY": "high_speed", + "TACHO": "signal", + "ETH_LEDG": "high_speed", + "SYNC_OUT": "signal", + "PWM": "output_drive", + "EEPROM_nWP": "signal", + "__unnamed_5": "signal", + "GPIO26": "signal", + "GPIO21": "signal", + "GPIO19": "signal", + "GPIO20": "signal", + "GPIO13": "signal", + "GPIO16": "signal", + "TRD3_P": "signal", + "GPIO6": "signal", + "GPIO12": "signal", + "GPIO5": "signal", + "/00000000-0000-0000-0000-00005cff70b1/ID_SC": "signal", + "/00000000-0000-0000-0000-00005cff70b1/ID_SD": "signal", + "GPIO7": "signal", + "GPIO11": "signal", + "GPIO8": "signal", + "TRD1_P": "signal", + "GPIO9": "signal", + "GPIO25": "signal", + "GPIO10": "signal", + "GPIO24": "signal", + "GPIO22": "signal", + "GPIO23": "signal", + "GPIO27": "signal", + "GPIO18": "signal", + "TRD3_N": "signal", + "GPIO17": "signal", + "GPIO15": "signal", + "GPIO4": "signal", + "GPIO14": "signal", + "GPIO3": "signal", + "__unnamed_6": "signal", + "GPIO2": "signal", + "TRD1_N": "signal", + "__unnamed_7": "signal", + "__unnamed_8": "signal", + "__unnamed_9": "signal", + "__unnamed_10": "signal", + "__unnamed_11": "signal", + "__unnamed_12": "signal", + "__unnamed_13": "signal", + "__unnamed_14": "signal", + "__unnamed_15": "signal", + "__unnamed_16": "signal", + "__unnamed_17": "signal", + "VBAT": "power", + "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF": "analog", + "__unnamed_18": "signal", + "__unnamed_19": "signal", + "+1.8v": "power", + "WL_nDis": "signal", + "TRD2_N": "signal", + "BT_nDis": "signal", + "PWR_BUT": "power", + "nRPIBOOT": "config", + "__unnamed_20": "signal", + "PMIC_ENABLE": "control", + "__unnamed_21": "signal", + "TR1_TAP": "signal", + "TR2_TAP": "signal", + "TR0_TAP": "signal", + "TR3_TAP": "signal", + "__unnamed_22": "signal", + "__unnamed_23": "signal", + "__unnamed_24": "signal", + "__unnamed_25": "signal", + "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID": "high_speed", + "__unnamed_26": "signal", + "__unnamed_27": "signal", + "__unnamed_28": "signal", + "__unnamed_29": "power_internal", + "__unnamed_30": "signal", + "__unnamed_31": "signal", + "__unnamed_32": "signal", + "__unnamed_33": "signal", + "__unnamed_34": "signal", + "VBUS_EN": "power", + "__unnamed_35": "signal", + "__unnamed_36": "signal", + "__unnamed_37": "signal", + "__unnamed_38": "signal", + "__unnamed_39": "signal", + "__unnamed_40": "signal", + "__unnamed_41": "signal", + "__unnamed_42": "signal", + "__unnamed_43": "signal", + "__unnamed_44": "signal", + "USB3-0-RX_N": "data", + "__unnamed_45": "signal", + "USB3-0-RX_P": "data", + "__unnamed_46": "signal", + "USB3-0-D_P": "high_speed", + "__unnamed_47": "signal", + "USB3-0-D_N": "high_speed", + "__unnamed_48": "signal", + "USB3-0-TX_N": "data", + "__unnamed_49": "signal", + "USB3-0-TX_P": "data", + "__unnamed_50": "signal", + "__unnamed_51": "signal", + "__unnamed_52": "signal", + "__unnamed_53": "signal", + "__unnamed_54": "signal", + "__unnamed_55": "signal", + "__unnamed_56": "signal", + "__unnamed_57": "signal", + "__unnamed_58": "signal", + "__unnamed_59": "signal", + "USB3-1-RX_N": "data", + "__unnamed_60": "signal", + "USB3-1-RX_P": "data", + "__unnamed_61": "signal", + "USB3-1-D_P": "high_speed", + "__unnamed_62": "signal", + "USB3-1-D_N": "high_speed", + "__unnamed_63": "signal", + "USB3-1-TX_N": "data", + "__unnamed_64": "signal", + "USB3-1-TX_P": "data", + "__unnamed_65": "signal", + "__unnamed_66": "signal", + "__unnamed_67": "signal", + "__unnamed_68": "signal", + "__unnamed_69": "signal", + "__unnamed_70": "signal", + "__unnamed_71": "signal", + "__unnamed_72": "signal", + "__unnamed_73": "signal", + "__unnamed_74": "signal", + "__unnamed_75": "signal", + "__unnamed_76": "signal", + "__unnamed_77": "signal", + "__unnamed_78": "signal", + "__unnamed_79": "signal", + "__unnamed_80": "signal", + "__unnamed_81": "signal", + "__unnamed_82": "signal", + "__unnamed_83": "signal", + "VBUS": "power", + "__unnamed_84": "signal", + "+5v": "power", + "__unnamed_85": "signal" + }, + "power_domains": { + "ic_power_rails": { + "U5": { + "value": "74LVC1G07SE-7", + "power_rails": [ + "/00000000-0000-0000-0000-00005cff70b1/+3.3v" + ], + "io_rails": null + }, + "U3": { + "value": "MagJack-A70-112-331N126", + "power_rails": [ + "/00000000-0000-0000-0000-00005cff70b1/+3.3v" + ], + "io_rails": null + }, + "U12": { + "value": "RT9742SNGV", + "power_rails": [ + "/00000000-0000-0000-0000-00005cff706a/+5v" + ], + "io_rails": null + }, + "U6": { + "value": "AP22653W6", + "power_rails": [ + "+5v", + "VBUS", + "VBUS_EN" + ], + "io_rails": null + } + }, + "domain_groups": { + "/00000000-0000-0000-0000-00005cff70b1/+3.3v": [ + "U5", + "U3" + ], + "/00000000-0000-0000-0000-00005cff706a/+5v": [ + "U12" + ], + "+5v": [ + "U6" + ], + "VBUS": [ + "U6" + ], + "VBUS_EN": [ + "U6" + ] + } + }, + "cross_domain_signals": [], + "bus_analysis": { + "i2c": [], + "spi": [], + "uart": [ + { + "net": "USB3-0-RX_N", + "devices": [], + "pin_count": 2 + }, + { + "net": "USB3-0-RX_P", + "devices": [], + "pin_count": 2 + }, + { + "net": "USB3-0-TX_N", + "devices": [], + "pin_count": 2 + }, + { + "net": "USB3-0-TX_P", + "devices": [], + "pin_count": 2 + }, + { + "net": "USB3-1-RX_N", + "devices": [], + "pin_count": 2 + }, + { + "net": "USB3-1-RX_P", + "devices": [], + "pin_count": 2 + }, + { + "net": "USB3-1-TX_N", + "devices": [], + "pin_count": 2 + }, + { + "net": "USB3-1-TX_P", + "devices": [], + "pin_count": 2 + } + ], + "can": [] + }, + "differential_pairs": [ + { + "type": "USB", + "positive": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "negative": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "shared_ics": [ + "J11", + "Module1" + ], + "has_esd": false + }, + { + "type": "differential", + "positive": "TRD2_P", + "negative": "TRD2_N", + "shared_ics": [ + "Module1", + "U1", + "U3" + ], + "has_esd": true, + "esd_protection": [ + "U3", + "U1" + ] + }, + { + "type": "differential", + "positive": "TRD0_P", + "negative": "TRD0_N", + "shared_ics": [ + "Module1", + "U2", + "U3" + ], + "has_esd": true, + "esd_protection": [ + "U2", + "U3" + ] + }, + { + "type": "differential", + "positive": "TRD3_P", + "negative": "TRD3_N", + "shared_ics": [ + "Module1", + "U1", + "U3" + ], + "has_esd": true, + "esd_protection": [ + "U3", + "U1" + ] + }, + { + "type": "differential", + "positive": "TRD1_P", + "negative": "TRD1_N", + "shared_ics": [ + "Module1", + "U2", + "U3" + ], + "has_esd": true, + "esd_protection": [ + "U2", + "U3" + ] + }, + { + "type": "USB", + "positive": "USB3-0-RX_P", + "negative": "USB3-0-RX_N", + "shared_ics": [ + "J12", + "Module1" + ], + "has_esd": false + }, + { + "type": "USB", + "positive": "USB3-0-D_P", + "negative": "USB3-0-D_N", + "shared_ics": [ + "J12", + "Module1" + ], + "has_esd": false + }, + { + "type": "USB", + "positive": "USB3-0-TX_P", + "negative": "USB3-0-TX_N", + "shared_ics": [ + "J12", + "Module1" + ], + "has_esd": false + }, + { + "type": "USB", + "positive": "USB3-1-RX_P", + "negative": "USB3-1-RX_N", + "shared_ics": [ + "J12", + "Module1" + ], + "has_esd": false + }, + { + "type": "USB", + "positive": "USB3-1-D_P", + "negative": "USB3-1-D_N", + "shared_ics": [ + "J12", + "Module1" + ], + "has_esd": false + }, + { + "type": "USB", + "positive": "USB3-1-TX_P", + "negative": "USB3-1-TX_N", + "shared_ics": [ + "J12", + "Module1" + ], + "has_esd": false + } + ], + "erc_warnings": [ + { + "type": "no_driver", + "net": "TACHO", + "message": "Net 'TACHO' has input pins but no output driver", + "pins": [ + { + "component": "Module1", + "pin_number": "16", + "pin_name": "FAN_TACHO", + "pin_type": "input" + }, + { + "component": "J14", + "pin_number": "4", + "pin_name": "Pin_4", + "pin_type": "passive" + } + ] + }, + { + "type": "no_driver", + "net": "SYNC_OUT", + "message": "Net 'SYNC_OUT' has input pins but no output driver", + "pins": [ + { + "component": "Module1", + "pin_number": "18", + "pin_name": "Ethernet_SYNC_OUT(3.3v)", + "pin_type": "input" + }, + { + "component": "J2", + "pin_number": "6", + "pin_name": "Pin_6", + "pin_type": "passive" + } + ] + }, + { + "type": "no_driver", + "net": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "message": "Net '/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF' has input pins but no output driver", + "pins": [ + { + "component": "Module1", + "pin_number": "78", + "pin_name": "GPIO_VREF(1.8v/3.3v_Input)", + "pin_type": "power_in" + }, + { + "component": "R5", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "R4", + "pin_number": "2", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "R6", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + }, + { + "component": "R7", + "pin_number": "1", + "pin_name": "~", + "pin_type": "passive" + } + ] + }, + { + "type": "no_driver", + "net": "WL_nDis", + "message": "Net 'WL_nDis' has input pins but no output driver", + "pins": [ + { + "component": "Module1", + "pin_number": "89", + "pin_name": "WiFi_nDisable", + "pin_type": "input" + }, + { + "component": "J3", + "pin_number": "1", + "pin_name": "Pin_1", + "pin_type": "passive" + } + ] + }, + { + "type": "no_driver", + "net": "BT_nDis", + "message": "Net 'BT_nDis' has input pins but no output driver", + "pins": [ + { + "component": "Module1", + "pin_number": "91", + "pin_name": "BT_nDisable", + "pin_type": "input" + }, + { + "component": "J3", + "pin_number": "3", + "pin_name": "Pin_3", + "pin_type": "passive" + } + ] + }, + { + "type": "no_driver", + "net": "nRPIBOOT", + "message": "Net 'nRPIBOOT' has input pins but no output driver", + "pins": [ + { + "component": "Module1", + "pin_number": "93", + "pin_name": "nRPIBOOT", + "pin_type": "input" + }, + { + "component": "J2", + "pin_number": "2", + "pin_name": "Pin_2", + "pin_type": "passive" + } + ] + }, + { + "type": "no_driver", + "net": "PMIC_ENABLE", + "message": "Net 'PMIC_ENABLE' has input pins but no output driver", + "pins": [ + { + "component": "Module1", + "pin_number": "99", + "pin_name": "PMIC_ENABLE", + "pin_type": "input" + }, + { + "component": "J2", + "pin_number": "12", + "pin_name": "Pin_12", + "pin_type": "passive" + } + ] + }, + { + "type": "no_driver", + "net": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "message": "Net '/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID' has input pins but no output driver", + "pins": [ + { + "component": "J2", + "pin_number": "10", + "pin_name": "Pin_10", + "pin_type": "passive" + }, + { + "component": "Module1", + "pin_number": "101", + "pin_name": "USB_OTG_ID", + "pin_type": "input" + } + ] + } + ], + "passive_warnings": [] + }, + "connectivity_issues": { + "unconnected_pins": [], + "single_pin_nets": [], + "single_pin_net_findings": [], + "multi_driver_nets": [], + "power_net_summary": { + "GND": { + "pin_count": 100, + "components": [ + "BT1", + "C1", + "C12", + "C13", + "C18", + "C2", + "C3", + "C7", + "C8", + "C9", + "J11", + "J12", + "J14", + "J2", + "J3", + "J8", + "Module1", + "R12", + "R9", + "SW1", + "U1", + "U12", + "U2", + "U3", + "U5", + "U6" + ] + }, + "/00000000-0000-0000-0000-00005cff706a/+5v": { + "pin_count": 18, + "components": [ + "C12", + "C18", + "C9", + "J11", + "J14", + "J8", + "Module1", + "R9", + "U12" + ] + }, + "/00000000-0000-0000-0000-00005cff70b1/+3.3v": { + "pin_count": 10, + "components": [ + "D1", + "D2", + "J8", + "Module1", + "R5", + "U3", + "U5" + ] + }, + "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF": { + "pin_count": 5, + "components": [ + "Module1", + "R4", + "R5", + "R6", + "R7" + ] + }, + "+1.8v": { + "pin_count": 3, + "components": [ + "Module1", + "R4" + ] + }, + "VBUS": { + "pin_count": 6, + "components": [ + "C3", + "C7", + "C8", + "J12", + "U6" + ] + }, + "+5v": { + "pin_count": 2, + "components": [ + "C2", + "U6" + ] + } + } + }, + "labels": [ + { + "name": "+5v", + "type": "label", + "x": 72.39, + "y": 72.39, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "CC1", + "type": "label", + "x": 119.38, + "y": 130.81, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "CC2", + "type": "label", + "x": 119.38, + "y": 133.35, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "+5v", + "type": "label", + "x": 246.38, + "y": 64.77, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "+5v", + "type": "label", + "x": 189.23, + "y": 125.73, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "+5v", + "type": "label", + "x": 120.015, + "y": 72.39, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "USB2_P", + "type": "label", + "x": 74.93, + "y": 62.23, + "angle": 180.0, + "_sheet": 0 + }, + { + "name": "CC1", + "type": "label", + "x": 64.77, + "y": 49.53, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "USB2_N", + "type": "label", + "x": 74.93, + "y": 57.15, + "angle": 180.0, + "_sheet": 0 + }, + { + "name": "+3.3v", + "type": "label", + "x": 189.23, + "y": 130.81, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "+3.3v", + "type": "label", + "x": 120.015, + "y": 76.2, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "CC2", + "type": "label", + "x": 64.77, + "y": 52.07, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "+5v", + "type": "label", + "x": 64.77, + "y": 44.45, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/ID_SC", + "type": "hierarchical_label", + "x": 149.86, + "y": 111.76, + "angle": 90.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/ID_SD", + "type": "hierarchical_label", + "x": 146.05, + "y": 111.76, + "angle": 90.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/+5v", + "type": "hierarchical_label", + "x": 186.69, + "y": 125.73, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/+3.3v", + "type": "hierarchical_label", + "x": 186.69, + "y": 130.81, + "angle": 0.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/GPIO_VREF", + "type": "hierarchical_label", + "x": 180.34, + "y": 111.76, + "angle": 90.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/CC1", + "type": "hierarchical_label", + "x": 129.54, + "y": 130.81, + "angle": 180.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/USBOTG", + "type": "hierarchical_label", + "x": 170.18, + "y": 111.76, + "angle": 90.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/CC2", + "type": "hierarchical_label", + "x": 129.54, + "y": 133.35, + "angle": 180.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "type": "hierarchical_label", + "x": 129.54, + "y": 50.8, + "angle": 180.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "type": "hierarchical_label", + "x": 129.54, + "y": 48.26, + "angle": 180.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "type": "hierarchical_label", + "x": 149.86, + "y": 96.52, + "angle": 270.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "type": "hierarchical_label", + "x": 146.05, + "y": 96.52, + "angle": 270.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/+5v", + "type": "hierarchical_label", + "x": 129.54, + "y": 72.39, + "angle": 180.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "type": "hierarchical_label", + "x": 129.54, + "y": 76.2, + "angle": 180.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "type": "hierarchical_label", + "x": 170.18, + "y": 96.52, + "angle": 270.0, + "_sheet": 0 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "type": "hierarchical_label", + "x": 180.34, + "y": 96.52, + "angle": 270.0, + "_sheet": 0 + }, + { + "name": "+1.8v", + "type": "label", + "x": 148.59, + "y": 95.25, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO24", + "type": "label", + "x": 175.26, + "y": 44.45, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+5v", + "type": "label", + "x": 170.18, + "y": 24.13, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO5", + "type": "label", + "x": 24.13, + "y": 62.23, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD3_N", + "type": "label", + "x": 103.124, + "y": 26.67, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO2", + "type": "label", + "x": 24.13, + "y": 92.71, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO9", + "type": "label", + "x": 24.13, + "y": 69.85, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD3_N", + "type": "label", + "x": 245.11, + "y": 54.61, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "ETH_LEDG", + "type": "label", + "x": 103.124, + "y": 41.91, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD1_N", + "type": "label", + "x": 193.04, + "y": 64.77, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+3.3v", + "type": "label", + "x": 148.59, + "y": 24.13, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO10", + "type": "label", + "x": 24.13, + "y": 74.93, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD3_P", + "type": "label", + "x": 103.124, + "y": 24.13, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO6", + "type": "label", + "x": 24.13, + "y": 57.15, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD0_P", + "type": "label", + "x": 227.33, + "y": 64.77, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD3_P", + "type": "label", + "x": 193.04, + "y": 27.94, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO8", + "type": "label", + "x": 173.99, + "y": 52.07, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO20", + "type": "label", + "x": 110.49, + "y": 54.61, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO25", + "type": "label", + "x": 110.49, + "y": 72.39, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO2", + "type": "label", + "x": 147.32, + "y": 26.67, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO26", + "type": "label", + "x": 148.59, + "y": 69.85, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO15", + "type": "label", + "x": 110.49, + "y": 85.09, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO13", + "type": "label", + "x": 24.13, + "y": 54.61, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD1_P", + "type": "label", + "x": 193.04, + "y": 59.69, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO7", + "type": "label", + "x": 109.22, + "y": 67.31, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO14", + "type": "label", + "x": 110.49, + "y": 90.17, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "BT_nDis", + "type": "label", + "x": 112.8776, + "y": 135.89, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO7", + "type": "label", + "x": 173.99, + "y": 54.61, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "ETH_LEDY", + "type": "label", + "x": 103.124, + "y": 39.37, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "VBAT", + "type": "label", + "x": 114.3, + "y": 171.45, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TR1_TAP", + "type": "label", + "x": 198.12, + "y": 90.17, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "PWM", + "type": "label", + "x": 102.87, + "y": 44.45, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO4", + "type": "label", + "x": 24.13, + "y": 87.63, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO10", + "type": "label", + "x": 148.59, + "y": 46.99, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD1_P", + "type": "label", + "x": 24.13, + "y": 24.13, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "CC1", + "type": "label", + "x": 27.94, + "y": 138.43, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD1_P", + "type": "label", + "x": 245.11, + "y": 29.21, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "WL_nDis", + "type": "label", + "x": 113.665, + "y": 130.81, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO6", + "type": "label", + "x": 147.32, + "y": 62.23, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+3.3v", + "type": "label", + "x": 274.32, + "y": 151.13, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO17", + "type": "label", + "x": 148.59, + "y": 36.83, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+3.3v", + "type": "label", + "x": 116.84, + "y": 19.05, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO19", + "type": "label", + "x": 148.59, + "y": 67.31, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GND", + "type": "label", + "x": 26.67, + "y": 182.88, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO27", + "type": "label", + "x": 24.13, + "y": 80.01, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "EEPROM_nWP", + "type": "label", + "x": 24.13, + "y": 44.45, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO_VREF", + "type": "label", + "x": 25.4, + "y": 118.11, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO9", + "type": "label", + "x": 147.32, + "y": 49.53, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO20", + "type": "label", + "x": 175.26, + "y": 69.85, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TR0_TAP", + "type": "label", + "x": 198.0184, + "y": 92.71, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO21", + "type": "label", + "x": 110.49, + "y": 52.07, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO23", + "type": "label", + "x": 110.49, + "y": 80.01, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "ID_SD", + "type": "label", + "x": 147.32, + "y": 57.15, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO16", + "type": "label", + "x": 175.26, + "y": 67.31, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD0_N", + "type": "label", + "x": 24.13, + "y": 31.75, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD3_P", + "type": "label", + "x": 245.11, + "y": 49.53, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "ETH_LEDY", + "type": "label", + "x": 227.33, + "y": 80.01, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD0_N", + "type": "label", + "x": 227.33, + "y": 59.69, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD2_N", + "type": "label", + "x": 227.33, + "y": 27.94, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "ETH_LEDG", + "type": "label", + "x": 227.33, + "y": 74.93, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD0_N", + "type": "label", + "x": 245.11, + "y": 26.67, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TR2_TAP", + "type": "label", + "x": 246.38, + "y": 64.77, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO22", + "type": "label", + "x": 148.59, + "y": 41.91, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+1.8v", + "type": "label", + "x": 26.67, + "y": 130.81, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "SYNC_OUT", + "type": "label", + "x": 54.61, + "y": 175.26, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "PWR_BUT", + "type": "label", + "x": 73.66, + "y": 170.18, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO18", + "type": "label", + "x": 175.26, + "y": 36.83, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TR2_TAP", + "type": "label", + "x": 221.9198, + "y": 90.17, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GND", + "type": "label", + "x": 26.67, + "y": 170.18, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO16", + "type": "label", + "x": 110.49, + "y": 57.15, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO12", + "type": "label", + "x": 110.49, + "y": 59.69, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO23", + "type": "label", + "x": 175.26, + "y": 41.91, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+3.3v", + "type": "label", + "x": 26.67, + "y": 125.73, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "PWM", + "type": "label", + "x": 136.525, + "y": 170.18, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "ID_SC", + "type": "label", + "x": 173.99, + "y": 57.15, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO8", + "type": "label", + "x": 109.22, + "y": 69.85, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO17", + "type": "label", + "x": 24.13, + "y": 82.55, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "SYNC_OUT", + "type": "label", + "x": 24.13, + "y": 41.91, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "nPWR_LED", + "type": "label", + "x": 146.05, + "y": 139.7, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD0_P", + "type": "label", + "x": 245.11, + "y": 21.59, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO18", + "type": "label", + "x": 110.49, + "y": 82.55, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD2_N", + "type": "label", + "x": 102.87, + "y": 31.75, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO15", + "type": "label", + "x": 175.26, + "y": 34.29, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO5", + "type": "label", + "x": 147.32, + "y": 59.69, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "nPWR_LED", + "type": "label", + "x": 104.14, + "y": 140.97, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "PMIC_ENABLE", + "type": "label", + "x": 57.785, + "y": 182.88, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TR3_TAP", + "type": "label", + "x": 221.8944, + "y": 92.71, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO3", + "type": "label", + "x": 147.32, + "y": 29.21, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD0_P", + "type": "label", + "x": 24.13, + "y": 34.29, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "nRPIBOOT", + "type": "label", + "x": 54.356, + "y": 170.18, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+3.3v", + "type": "label", + "x": 148.59, + "y": 91.44, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GND", + "type": "label", + "x": 26.67, + "y": 177.8, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GND", + "type": "label", + "x": 26.67, + "y": 185.42, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO26", + "type": "label", + "x": 24.13, + "y": 49.53, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TACHO", + "type": "label", + "x": 136.525, + "y": 175.26, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "PWR_BUT", + "type": "label", + "x": 27.686, + "y": 135.89, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO12", + "type": "label", + "x": 175.26, + "y": 62.23, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+3.3v", + "type": "label", + "x": 161.29, + "y": 132.08, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "nRPIBOOT", + "type": "label", + "x": 104.14, + "y": 138.43, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "EEPROM_nWP", + "type": "label", + "x": 57.658, + "y": 172.72, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO11", + "type": "label", + "x": 24.13, + "y": 67.31, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "ID_SD", + "type": "label", + "x": 24.13, + "y": 64.77, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD1_N", + "type": "label", + "x": 24.13, + "y": 26.67, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO24", + "type": "label", + "x": 110.49, + "y": 77.47, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GND", + "type": "label", + "x": 26.67, + "y": 175.26, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD3_N", + "type": "label", + "x": 193.04, + "y": 33.02, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO27", + "type": "label", + "x": 148.59, + "y": 39.37, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TR1_TAP", + "type": "label", + "x": 246.38, + "y": 62.23, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "VBAT", + "type": "label", + "x": 30.48, + "y": 115.57, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "ID_SC", + "type": "label", + "x": 109.22, + "y": 64.77, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD2_P", + "type": "label", + "x": 245.11, + "y": 41.91, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO21", + "type": "label", + "x": 175.26, + "y": 72.39, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "CC2", + "type": "label", + "x": 27.94, + "y": 140.97, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO14", + "type": "label", + "x": 175.26, + "y": 31.75, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TACHO", + "type": "label", + "x": 24.13, + "y": 39.37, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO25", + "type": "label", + "x": 175.26, + "y": 49.53, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD2_N", + "type": "label", + "x": 245.11, + "y": 46.99, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TR0_TAP", + "type": "label", + "x": 246.38, + "y": 59.69, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+5v", + "type": "label", + "x": 106.68, + "y": 118.11, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "TRD1_N", + "type": "label", + "x": 245.11, + "y": 34.29, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "PMIC_ENABLE", + "type": "label", + "x": 116.84, + "y": 146.05, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+3.3v", + "type": "label", + "x": 172.72, + "y": 115.57, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO13", + "type": "label", + "x": 148.59, + "y": 64.77, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO_VREF", + "type": "label", + "x": 162.56, + "y": 91.44, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD2_P", + "type": "label", + "x": 103.124, + "y": 34.29, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GND", + "type": "label", + "x": 26.67, + "y": 172.72, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO19", + "type": "label", + "x": 24.13, + "y": 52.07, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "GPIO11", + "type": "label", + "x": 148.59, + "y": 52.07, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "PWR_BUT", + "type": "label", + "x": 44.45, + "y": 185.42, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TR3_TAP", + "type": "label", + "x": 246.38, + "y": 67.31, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GND", + "type": "label", + "x": 26.67, + "y": 180.34, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO4", + "type": "label", + "x": 147.32, + "y": 31.75, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "+3.3v", + "type": "label", + "x": 243.84, + "y": 72.39, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO22", + "type": "label", + "x": 24.13, + "y": 77.47, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "TRD2_P", + "type": "label", + "x": 227.33, + "y": 33.02, + "angle": 180.0, + "_sheet": 1 + }, + { + "name": "GPIO3", + "type": "label", + "x": 24.13, + "y": 90.17, + "angle": 0.0, + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/CC1", + "type": "hierarchical_label", + "x": 25.4, + "y": 138.43, + "angle": 180.0, + "shape": "output", + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/ID_SD", + "type": "hierarchical_label", + "x": 24.13, + "y": 64.77, + "angle": 180.0, + "shape": "output", + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/CC2", + "type": "hierarchical_label", + "x": 25.4, + "y": 140.97, + "angle": 180.0, + "shape": "output", + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/+3.3v", + "type": "hierarchical_label", + "x": 25.4, + "y": 125.73, + "angle": 180.0, + "shape": "output", + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/GPIO_VREF", + "type": "hierarchical_label", + "x": 25.4, + "y": 118.11, + "angle": 180.0, + "shape": "output", + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/ID_SC", + "type": "hierarchical_label", + "x": 114.3, + "y": 64.77, + "angle": 0.0, + "shape": "output", + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/+5v", + "type": "hierarchical_label", + "x": 135.89, + "y": 167.64, + "angle": 180.0, + "shape": "input", + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/+5v", + "type": "hierarchical_label", + "x": 114.3, + "y": 118.11, + "angle": 0.0, + "shape": "input", + "_sheet": 1 + }, + { + "name": "/00000000-0000-0000-0000-00005cff706a/USBOTG", + "type": "hierarchical_label", + "x": 58.42, + "y": 180.34, + "angle": 0.0, + "shape": "output", + "_sheet": 1 + }, + { + "name": "USB3-0-TX_N", + "type": "label", + "x": 180.34, + "y": 45.72, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-D_N", + "type": "label", + "x": 102.87, + "y": 106.68, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-D_N", + "type": "label", + "x": 180.34, + "y": 67.31, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "VBUS_EN", + "type": "label", + "x": 102.87, + "y": 38.1, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-RX_P", + "type": "label", + "x": 180.34, + "y": 40.64, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-D_N", + "type": "label", + "x": 21.59, + "y": 68.58, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "ID_SC", + "type": "label", + "x": 191.135, + "y": 119.38, + "angle": 180.0, + "_sheet": 2 + }, + { + "name": "USB3-0-RX_N", + "type": "label", + "x": 180.34, + "y": 38.1, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-D_P", + "type": "label", + "x": 180.34, + "y": 30.48, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "ID_SD", + "type": "label", + "x": 191.135, + "y": 121.92, + "angle": 180.0, + "_sheet": 2 + }, + { + "name": "USB3-0-TX_N", + "type": "label", + "x": 21.59, + "y": 73.66, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "VBUS_EN", + "type": "label", + "x": 41.91, + "y": 180.34, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-TX_P", + "type": "label", + "x": 102.87, + "y": 114.3, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "+5v", + "type": "label", + "x": 24.13, + "y": 175.26, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-RX_P", + "type": "label", + "x": 102.87, + "y": 99.06, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-TX_P", + "type": "label", + "x": 21.59, + "y": 76.2, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-RX_N", + "type": "label", + "x": 20.32, + "y": 58.42, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-TX_N", + "type": "label", + "x": 102.87, + "y": 111.76, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-RX_P", + "type": "label", + "x": 180.34, + "y": 74.93, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-TX_N", + "type": "label", + "x": 180.34, + "y": 80.01, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "VBUS", + "type": "label", + "x": 185.42, + "y": 59.69, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-RX_N", + "type": "label", + "x": 180.34, + "y": 72.39, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-RX_N", + "type": "label", + "x": 102.87, + "y": 96.52, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "VBUS", + "type": "label", + "x": 87.63, + "y": 175.26, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-D_P", + "type": "label", + "x": 21.59, + "y": 66.04, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "VBUS", + "type": "label", + "x": 186.69, + "y": 25.4, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-RX_P", + "type": "label", + "x": 20.32, + "y": 60.96, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-D_P", + "type": "label", + "x": 180.34, + "y": 64.77, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-D_N", + "type": "label", + "x": 180.34, + "y": 33.02, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "GPIO_VREF", + "type": "label", + "x": 197.485, + "y": 104.14, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-0-TX_P", + "type": "label", + "x": 180.34, + "y": 48.26, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-D_P", + "type": "label", + "x": 102.87, + "y": 104.14, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "USB3-1-TX_P", + "type": "label", + "x": 180.34, + "y": 82.55, + "angle": 0.0, + "_sheet": 2 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "type": "hierarchical_label", + "x": 105.41, + "y": 25.4, + "angle": 0.0, + "shape": "input", + "_sheet": 2 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/+5v", + "type": "hierarchical_label", + "x": 191.77, + "y": 147.32, + "angle": 180.0, + "shape": "input", + "_sheet": 2 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "type": "hierarchical_label", + "x": 185.42, + "y": 119.38, + "angle": 180.0, + "shape": "input", + "_sheet": 2 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "type": "hierarchical_label", + "x": 196.85, + "y": 104.14, + "angle": 180.0, + "shape": "input", + "_sheet": 2 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "type": "hierarchical_label", + "x": 134.62, + "y": 78.74, + "angle": 180.0, + "shape": "input", + "_sheet": 2 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USB2_P", + "type": "hierarchical_label", + "x": 105.41, + "y": 30.48, + "angle": 0.0, + "shape": "bidirectional", + "_sheet": 2 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/USB2_N", + "type": "hierarchical_label", + "x": 105.41, + "y": 27.94, + "angle": 0.0, + "shape": "bidirectional", + "_sheet": 2 + }, + { + "name": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "type": "hierarchical_label", + "x": 185.42, + "y": 121.92, + "angle": 180.0, + "shape": "input", + "_sheet": 2 + } + ], + "no_connects": [ + { + "x": 62.23, + "y": 74.93, + "_sheet": 0 + }, + { + "x": 62.23, + "y": 72.39, + "_sheet": 0 + }, + { + "x": 39.37, + "y": 107.95, + "_sheet": 1 + }, + { + "x": 100.33, + "y": 113.03, + "_sheet": 1 + }, + { + "x": 39.37, + "y": 100.33, + "_sheet": 1 + }, + { + "x": 39.37, + "y": 105.41, + "_sheet": 1 + }, + { + "x": 44.45, + "y": 177.8, + "_sheet": 1 + }, + { + "x": 39.37, + "y": 110.49, + "_sheet": 1 + }, + { + "x": 100.33, + "y": 92.71, + "_sheet": 1 + }, + { + "x": 100.33, + "y": 97.79, + "_sheet": 1 + }, + { + "x": 39.37, + "y": 97.79, + "_sheet": 1 + }, + { + "x": 100.33, + "y": 100.33, + "_sheet": 1 + }, + { + "x": 100.33, + "y": 105.41, + "_sheet": 1 + }, + { + "x": 100.33, + "y": 107.95, + "_sheet": 1 + }, + { + "x": 100.33, + "y": 115.57, + "_sheet": 1 + }, + { + "x": 39.37, + "y": 120.65, + "_sheet": 1 + }, + { + "x": 39.37, + "y": 123.19, + "_sheet": 1 + }, + { + "x": 100.33, + "y": 143.51, + "_sheet": 1 + }, + { + "x": 39.37, + "y": 146.05, + "_sheet": 1 + }, + { + "x": 67.31, + "y": 180.34, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 78.74, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 81.28, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 81.28, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 83.82, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 83.82, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 86.36, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 88.9, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 88.9, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 91.44, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 91.44, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 96.52, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 99.06, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 104.14, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 106.68, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 111.76, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 114.3, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 119.38, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 121.92, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 127.0, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 129.54, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 134.62, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 137.16, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 149.86, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 149.86, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 43.18, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 45.72, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 50.8, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 53.34, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 58.42, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 60.96, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 66.04, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 68.58, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 73.66, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 76.2, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 119.38, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 121.92, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 127.0, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 129.54, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 134.62, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 137.16, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 142.24, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 142.24, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 144.78, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 144.78, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 25.4, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 27.94, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 30.48, + "_sheet": 2 + }, + { + "x": 99.06, + "y": 35.56, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 35.56, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 38.1, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 43.18, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 45.72, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 50.8, + "_sheet": 2 + }, + { + "x": 38.1, + "y": 53.34, + "_sheet": 2 + } + ], + "power_symbols": [ + { + "net_name": "GND", + "x": 87.63, + "y": 52.07, + "lib_id": "power:GND", + "_sheet": 0, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 43.18, + "y": 83.82, + "lib_id": "power:GND", + "_sheet": 0, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 72.39, + "y": 82.55, + "lib_id": "power:GND", + "_sheet": 0, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 228.6, + "y": 45.72, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 166.37, + "y": 73.66, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 151.13, + "y": 73.66, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 38.1, + "y": 151.13, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 101.6, + "y": 151.13, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 165.1, + "y": 147.32, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 246.38, + "y": 90.17, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 207.01, + "y": 74.93, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 207.01, + "y": 43.18, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 21.59, + "y": 186.69, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 146.05, + "y": 180.34, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 111.76, + "y": 179.07, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 80.01, + "y": 180.34, + "lib_id": "power:GND", + "_sheet": 1, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 101.6, + "y": 152.4, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 35.56, + "y": 152.4, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 229.87, + "y": 154.94, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 196.85, + "y": 154.94, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 208.28, + "y": 154.94, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 29.21, + "y": 184.15, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 195.58, + "y": 91.44, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 87.63, + "y": 185.42, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 110.49, + "y": 185.42, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 82.55, + "y": 185.42, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 40.64, + "y": 185.42, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 223.52, + "y": 91.44, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + }, + { + "net_name": "GND", + "x": 100.33, + "y": 185.42, + "lib_id": "power:GND", + "_sheet": 2, + "_power_scope": "global" + } + ], + "annotation_issues": {}, + "label_shape_warnings": [ + { + "type": "undriven_input_label", + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "message": "Net '/00000000-0000-0000-0000-00005cff706a/+5v' has input-shaped label(s) but no driver pins on the net" + }, + { + "type": "undriven_input_label", + "net": "/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID", + "message": "Net '/00000000-0000-0000-0000-00005cff70b1/USBOTG_ID' has input-shaped label(s) but no driver pins on the net" + }, + { + "type": "undriven_input_label", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SC", + "message": "Net '/00000000-0000-0000-0000-00005cff70b1/ID_SC' has input-shaped label(s) but no driver pins on the net" + }, + { + "type": "undriven_input_label", + "net": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF", + "message": "Net '/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF' has input-shaped label(s) but no driver pins on the net" + }, + { + "type": "undriven_input_label", + "net": "/00000000-0000-0000-0000-00005cff70b1/ID_SD", + "message": "Net '/00000000-0000-0000-0000-00005cff70b1/ID_SD' has input-shaped label(s) but no driver pins on the net" + } + ], + "pwr_flag_warnings": [], + "footprint_filter_warnings": [ + { + "component": "J14", + "footprint": "Connector_JST:JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical", + "filters": [ + "Connector*:*_1x??_*" + ], + "custom_library": true, + "message": "J14: footprint 'JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical' doesn't match any filter pattern ['Connector*:*_1x??_*']" + } + ], + "sourcing_audit": { + "total_bom_components": 36, + "mpn_coverage": "0/36", + "missing_mpn": [ + "BT1", + "C1", + "C12", + "C13", + "C18", + "C2", + "C3", + "C7", + "C8", + "C9", + "D1", + "D2", + "J11", + "J12", + "J14", + "J2", + "J6", + "J8", + "J9", + "Module1", + "R1", + "R10", + "R12", + "R2", + "R3", + "R5", + "R6", + "R7", + "R9", + "SW1", + "U1", + "U12", + "U2", + "U3", + "U5", + "U6" + ], + "missing_digikey": [ + "BT1", + "C1", + "C12", + "C13", + "C18", + "C2", + "C3", + "C7", + "C8", + "C9", + "D1", + "D2", + "J11", + "J12", + "J14", + "J2", + "J6", + "J8", + "J9", + "Module1", + "R1", + "R10", + "R12", + "R2", + "R3", + "R5", + "R6", + "R7", + "R9", + "SW1", + "U1", + "U12", + "U2", + "U3", + "U5", + "U6" + ], + "missing_lcsc": [ + "BT1", + "C1", + "C12", + "C13", + "C18", + "C2", + "C3", + "C7", + "C8", + "C9", + "D1", + "D2", + "J11", + "J12", + "J14", + "J2", + "J6", + "J8", + "J9", + "Module1", + "R1", + "R10", + "R12", + "R2", + "R3", + "R5", + "R6", + "R7", + "R9", + "SW1", + "U1", + "U12", + "U2", + "U3", + "U5", + "U6" + ], + "mpn_percent": 0.0 + }, + "ground_domains": { + "ground_nets": { + "GND": { + "domain": "signal", + "connections": 100, + "components": [ + "BT1", + "C1", + "C12", + "C13", + "C18", + "C2", + "C3", + "C7", + "C8", + "C9", + "J11", + "J12", + "J14", + "J2", + "J3", + "J8", + "Module1", + "R12", + "R9", + "SW1", + "U1", + "U12", + "U2", + "U3", + "U5", + "U6" + ] + } + }, + "multiple_domains": false + }, + "bus_topology": { + "bus_wire_count": 0, + "bus_entry_count": 0, + "detected_bus_signals": [ + { + "prefix": "CC", + "width": 6, + "range": "CC1..CC2" + }, + { + "prefix": "GPIO", + "width": 52, + "range": "GPIO2..GPIO27" + } + ] + }, + "wire_geometry": { + "total_wires": 410, + "total_length_mm": 3732.5, + "avg_length_mm": 9.1 + }, + "simulation_readiness": { + "total_components": 39, + "likely_simulatable": 21, + "needs_model": 18, + "components_without_model": [ + "BT1", + "J11", + "J12", + "J14", + "J2", + "J3", + "J6", + "J8", + "J9", + "Module1", + "SW1", + "U1", + "U12", + "U2", + "U3", + "U5", + "U6" + ], + "simulatable_percent": 53.8 + }, + "property_issues": {}, + "placement_analysis": { + "bounding_box": { + "x_min": -71.1, + "y_min": 27.9, + "x_max": 268.0, + "y_max": 181.6, + "width_mm": 339.1, + "height_mm": 153.7 + }, + "clusters": [ + { + "region": "row0_col1", + "component_count": 2, + "types": { + "connector": 1, + "resistor": 1 + }, + "references": [ + "J11", + "R9" + ] + }, + { + "region": "row0_col2", + "component_count": 4, + "types": { + "connector": 1, + "led": 1, + "resistor": 1, + "test_point": 1 + }, + "references": [ + "D2", + "J8", + "R1", + "TP3" + ] + }, + { + "region": "row0_col3", + "component_count": 4, + "types": { + "capacitor": 1, + "ic": 2, + "connector": 1 + }, + "references": [ + "C1", + "J12", + "U1", + "U2" + ] + }, + { + "region": "row1_col0", + "component_count": 1, + "types": { + "other": 1 + }, + "references": [ + "Module1" + ] + }, + { + "region": "row1_col1", + "component_count": 3, + "types": { + "capacitor": 2, + "other": 1 + }, + "references": [ + "C18", + "C9", + "Module1" + ] + }, + { + "region": "row1_col2", + "component_count": 2, + "types": { + "resistor": 2 + }, + "references": [ + "R4", + "R5" + ] + }, + { + "region": "row1_col3", + "component_count": 4, + "types": { + "connector": 1, + "resistor": 2, + "ic": 1 + }, + "references": [ + "J9", + "R2", + "R3", + "U3" + ] + }, + { + "region": "row2_col2", + "component_count": 5, + "types": { + "ic": 1, + "led": 1, + "resistor": 1, + "test_point": 1, + "connector": 1 + }, + "references": [ + "D1", + "J3", + "R10", + "TP5", + "U5" + ] + }, + { + "region": "row2_col3", + "component_count": 3, + "types": { + "resistor": 2, + "connector": 1 + }, + "references": [ + "J6", + "R6", + "R7" + ] + }, + { + "region": "row3_col1", + "component_count": 14, + "types": { + "mounting_hole": 8, + "connector": 1, + "switch": 1, + "capacitor": 2, + "resistor": 1, + "ic": 1 + }, + "references": [ + "C2", + "C3", + "H1", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "J2", + "R12", + "SW1", + "U6" + ] + }, + { + "region": "row3_col2", + "component_count": 4, + "types": { + "battery": 1, + "connector": 1, + "capacitor": 2 + }, + "references": [ + "BT1", + "C7", + "C8", + "J14" + ] + }, + { + "region": "row3_col3", + "component_count": 3, + "types": { + "capacitor": 2, + "ic": 1 + }, + "references": [ + "C12", + "C13", + "U12" + ] + } + ], + "grid_size": "4x4" + }, + "hierarchical_labels": { + "hierarchical_label_count": 33, + "global_label_count": 0, + "unconnected_hierarchical": [ + "/00000000-0000-0000-0000-00005cff706a/+3.3v", + "/00000000-0000-0000-0000-00005cff706a/GPIO_VREF", + "/00000000-0000-0000-0000-00005cff706a/ID_SC", + "/00000000-0000-0000-0000-00005cff706a/ID_SD", + "/00000000-0000-0000-0000-00005cff706a/USBOTG", + "/00000000-0000-0000-0000-00005cff70b1/+5v" + ] + }, + "rail_voltages": { + "GND": 0, + "+5v": 5.0, + "USB2_P": 5.0, + "USB2_N": 5.0, + "+3.3v": 3.3, + "+1.8v": 1.8, + "USBOTG_ID": 5.0, + "VBUS_EN": 5.0, + "USB3-0-RX_N": 5.0, + "USB3-0-RX_P": 5.0, + "USB3-0-D_P": 5.0, + "USB3-0-D_N": 5.0, + "USB3-0-TX_N": 5.0, + "USB3-0-TX_P": 5.0, + "USB3-1-RX_N": 5.0, + "USB3-1-RX_P": 5.0, + "USB3-1-D_P": 5.0, + "USB3-1-D_N": 5.0, + "USB3-1-TX_N": 5.0, + "USB3-1-TX_P": 5.0, + "VBUS": 5.0 + }, + "power_sequencing_validation": { + "power_tree": [ + { + "rail": "VBUS", + "source": "U6", + "source_type": "regulator", + "enable_type": "tied_to_rail", + "enabled_by": "VBUS_EN", + "sequence_order": 0 + }, + { + "rail": "__unnamed_29", + "source": "U12", + "source_type": "load_switch", + "enable_type": "always_on", + "sequence_order": 0 + } + ], + "provenance": { + "evidence": "pseq_enable_chain", + "confidence": "heuristic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + } + }, + "net_classifications": { + "VBUS": { + "type": "power_rail", + "source": "power_regulators" + } + }, + "text_annotations": [ + { + "type": "text", + "text": "Connectors\n-------\nEthernet\nSDCARD\n40way RPI\nJumpers\nFan\nBattery", + "x": 150.876, + "y": 147.066, + "angle": 0.0 + }, + { + "type": "text", + "text": "Connectors\n------\nM2 MKey", + "x": 228.092, + "y": 41.91, + "angle": 0.0 + }, + { + "type": "text", + "text": "Discharge Resistor\nNeeded by some\nType C PSUs", + "x": 99.314, + "y": 48.514, + "angle": 0.0 + }, + { + "type": "text", + "text": "TypeC Power connector", + "x": 36.068, + "y": 33.528, + "angle": 0.0 + }, + { + "type": "text", + "text": "Connectors\n-------\nHDMI 0\nHDMI 1\nCSI/DSI 0\nCSI/DSI 1", + "x": 148.59, + "y": 58.42, + "angle": 0.0 + }, + { + "type": "text", + "text": "40Way GPIO Header", + "x": 143.51, + "y": 19.05, + "angle": 0.0 + }, + { + "type": "text", + "text": "Activity LED", + "x": 119.634, + "y": 25.4, + "angle": 0.0 + }, + { + "type": "text", + "text": "FAN connector\n", + "x": 140.335, + "y": 165.1, + "angle": 0.0 + }, + { + "type": "text", + "text": "Ethernet POE\nProtection", + "x": 189.23, + "y": 48.26, + "angle": 0.0 + }, + { + "type": "text", + "text": "GPIO Voltage select\n", + "x": 167.64, + "y": 87.63, + "angle": 0.0 + }, + { + "type": "text", + "text": "Not Fitted header", + "x": 132.715, + "y": 123.825, + "angle": 0.0 + }, + { + "type": "text", + "text": "POE Header", + "x": 201.93, + "y": 83.82, + "angle": 0.0 + }, + { + "type": "text", + "text": "Force RPIBOOT = Jumper Pins 1-2 \n", + "x": 60.325, + "y": 162.56, + "angle": 0.0 + }, + { + "type": "text", + "text": "PWR LED", + "x": 175.895, + "y": 117.475, + "angle": 0.0 + }, + { + "type": "text", + "text": "Ethernet", + "x": 217.17, + "y": 19.05, + "angle": 0.0 + }, + { + "type": "text", + "text": "CM5Lite SDCARD I/F", + "x": 210.82, + "y": 106.68, + "angle": 0.0 + }, + { + "type": "text", + "text": "USB 3 Pairs P/N swapped to help routing", + "x": 178.816, + "y": 16.51, + "angle": 0.0 + }, + { + "type": "text", + "text": "Jumpers to be fitted if DPHY1 is used\n", + "x": 222.25, + "y": 128.016, + "angle": 0.0 + }, + { + "type": "text", + "text": "Current Limit switch", + "x": 68.58, + "y": 166.37, + "angle": 0.0 + }, + { + "type": "text", + "text": "DSI/CSI Connectors", + "x": 130.175, + "y": 19.05, + "angle": 0.0 + }, + { + "type": "text", + "text": "Stacked USB connectors", + "x": 220.98, + "y": 19.685, + "angle": 0.0 + }, + { + "type": "text", + "text": "Current Limit switch", + "x": 68.58, + "y": 166.37, + "angle": 0.0 + } + ], + "pdn_impedance": { + "rails": { + "/00000000-0000-0000-0000-00005cff706a/+5v": { + "capacitors": [ + { + "ref": "C18", + "value": "100n", + "farads": 1.0000000000000001e-07, + "package": "0402", + "esr_ohm": 0.9487, + "esl_nH": 0.5, + "srf_hz": 22507908, + "srf_formatted": "22.51 MHz", + "type": "MLCC" + }, + { + "ref": "C9", + "value": "100n", + "farads": 1.0000000000000001e-07, + "package": "0402", + "esr_ohm": 0.9487, + "esl_nH": 0.5, + "srf_hz": 22507908, + "srf_formatted": "22.51 MHz", + "type": "MLCC" + }, + { + "ref": "C12", + "value": "100n", + "farads": 1.0000000000000001e-07, + "package": "0402", + "esr_ohm": 0.9487, + "esl_nH": 0.5, + "srf_hz": 22507908, + "srf_formatted": "22.51 MHz", + "type": "MLCC" + } + ], + "cap_count": 3, + "total_capacitance_uF": 0.3, + "impedance_profile": [ + { + "freq_hz": 1000, + "freq_formatted": "1.00 kHz", + "impedance_ohm": 530.51657 + }, + { + "freq_hz": 1259, + "freq_formatted": "1.26 kHz", + "impedance_ohm": 421.404334 + }, + { + "freq_hz": 1585, + "freq_formatted": "1.58 kHz", + "impedance_ohm": 334.733415 + }, + { + "freq_hz": 1995, + "freq_formatted": "2.00 kHz", + "impedance_ohm": 265.888271 + }, + { + "freq_hz": 2512, + "freq_formatted": "2.51 kHz", + "impedance_ohm": 211.202648 + }, + { + "freq_hz": 3162, + "freq_formatted": "3.16 kHz", + "impedance_ohm": 167.764335 + }, + { + "freq_hz": 3981, + "freq_formatted": "3.98 kHz", + "impedance_ohm": 133.260085 + }, + { + "freq_hz": 5012, + "freq_formatted": "5.01 kHz", + "impedance_ohm": 105.852421 + }, + { + "freq_hz": 6310, + "freq_formatted": "6.31 kHz", + "impedance_ohm": 84.081783 + }, + { + "freq_hz": 7943, + "freq_formatted": "7.94 kHz", + "impedance_ohm": 66.788808 + }, + { + "freq_hz": 10000, + "freq_formatted": "10.00 kHz", + "impedance_ohm": 53.05258 + }, + { + "freq_hz": 12589, + "freq_formatted": "12.59 kHz", + "impedance_ohm": 42.141595 + }, + { + "freq_hz": 15849, + "freq_formatted": "15.85 kHz", + "impedance_ohm": 33.474804 + }, + { + "freq_hz": 19953, + "freq_formatted": "19.95 kHz", + "impedance_ohm": 26.590668 + }, + { + "freq_hz": 25119, + "freq_formatted": "25.12 kHz", + "impedance_ohm": 21.122582 + }, + { + "freq_hz": 31623, + "freq_formatted": "31.62 kHz", + "impedance_ohm": 16.779351 + }, + { + "freq_hz": 39811, + "freq_formatted": "39.81 kHz", + "impedance_ohm": 13.329681 + }, + { + "freq_hz": 50119, + "freq_formatted": "50.12 kHz", + "impedance_ohm": 10.589866 + }, + { + "freq_hz": 63096, + "freq_formatted": "63.10 kHz", + "impedance_ohm": 8.413998 + }, + { + "freq_hz": 79433, + "freq_formatted": "79.43 kHz", + "impedance_ohm": 6.686206 + }, + { + "freq_hz": 100000, + "freq_formatted": "100.00 kHz", + "impedance_ohm": 5.314477 + }, + { + "freq_hz": 125893, + "freq_formatted": "125.89 kHz", + "impedance_ohm": 4.22576 + }, + { + "freq_hz": 158489, + "freq_formatted": "158.49 kHz", + "impedance_ohm": 3.362072 + }, + { + "freq_hz": 199526, + "freq_formatted": "199.53 kHz", + "impedance_ohm": 2.677413 + }, + { + "freq_hz": 251189, + "freq_formatted": "251.19 kHz", + "impedance_ohm": 2.135308 + }, + { + "freq_hz": 316228, + "freq_formatted": "316.23 kHz", + "impedance_ohm": 1.70686 + }, + { + "freq_hz": 398107, + "freq_formatted": "398.11 kHz", + "impedance_ohm": 1.3692 + }, + { + "freq_hz": 501187, + "freq_formatted": "501.19 kHz", + "impedance_ohm": 1.104245 + }, + { + "freq_hz": 630957, + "freq_formatted": "630.96 kHz", + "impedance_ohm": 0.897696 + }, + { + "freq_hz": 794328, + "freq_formatted": "794.33 kHz", + "impedance_ohm": 0.738213 + }, + { + "freq_hz": 1000000, + "freq_formatted": "1.00 MHz", + "impedance_ohm": 0.616718 + }, + { + "freq_hz": 1258925, + "freq_formatted": "1.26 MHz", + "impedance_ohm": 0.52581 + }, + { + "freq_hz": 1584893, + "freq_formatted": "1.58 MHz", + "impedance_ohm": 0.459284 + }, + { + "freq_hz": 1995262, + "freq_formatted": "2.00 MHz", + "impedance_ohm": 0.411817 + }, + { + "freq_hz": 2511886, + "freq_formatted": "2.51 MHz", + "impedance_ohm": 0.378822 + }, + { + "freq_hz": 3162278, + "freq_formatted": "3.16 MHz", + "impedance_ohm": 0.356438 + }, + { + "freq_hz": 3981072, + "freq_formatted": "3.98 MHz", + "impedance_ohm": 0.341567 + }, + { + "freq_hz": 5011872, + "freq_formatted": "5.01 MHz", + "impedance_ohm": 0.33185 + }, + { + "freq_hz": 6309573, + "freq_formatted": "6.31 MHz", + "impedance_ohm": 0.325585 + }, + { + "freq_hz": 7943282, + "freq_formatted": "7.94 MHz", + "impedance_ohm": 0.321593 + }, + { + "freq_hz": 10000000, + "freq_formatted": "10.00 MHz", + "impedance_ohm": 0.319087 + }, + { + "freq_hz": 12589254, + "freq_formatted": "12.59 MHz", + "impedance_ohm": 0.317556 + }, + { + "freq_hz": 15848932, + "freq_formatted": "15.85 MHz", + "impedance_ohm": 0.316683 + }, + { + "freq_hz": 19952623, + "freq_formatted": "19.95 MHz", + "impedance_ohm": 0.316285 + }, + { + "freq_hz": 25118864, + "freq_formatted": "25.12 MHz", + "impedance_ohm": 0.316276 + }, + { + "freq_hz": 31622777, + "freq_formatted": "31.62 MHz", + "impedance_ohm": 0.316655 + }, + { + "freq_hz": 39810717, + "freq_formatted": "39.81 MHz", + "impedance_ohm": 0.317503 + }, + { + "freq_hz": 50118723, + "freq_formatted": "50.12 MHz", + "impedance_ohm": 0.318997 + }, + { + "freq_hz": 63095734, + "freq_formatted": "63.10 MHz", + "impedance_ohm": 0.321448 + }, + { + "freq_hz": 79432823, + "freq_formatted": "79.43 MHz", + "impedance_ohm": 0.325356 + }, + { + "freq_hz": 100000000, + "freq_formatted": "100.00 MHz", + "impedance_ohm": 0.331492 + }, + { + "freq_hz": 125892541, + "freq_formatted": "125.89 MHz", + "impedance_ohm": 0.341014 + }, + { + "freq_hz": 158489319, + "freq_formatted": "158.49 MHz", + "impedance_ohm": 0.355597 + }, + { + "freq_hz": 199526231, + "freq_formatted": "199.53 MHz", + "impedance_ohm": 0.377567 + }, + { + "freq_hz": 251188643, + "freq_formatted": "251.19 MHz", + "impedance_ohm": 0.409987 + }, + { + "freq_hz": 316227766, + "freq_formatted": "316.23 MHz", + "impedance_ohm": 0.456681 + }, + { + "freq_hz": 398107171, + "freq_formatted": "398.11 MHz", + "impedance_ohm": 0.522204 + }, + { + "freq_hz": 501187234, + "freq_formatted": "501.19 MHz", + "impedance_ohm": 0.611844 + }, + { + "freq_hz": 630957344, + "freq_formatted": "630.96 MHz", + "impedance_ohm": 0.731756 + }, + { + "freq_hz": 794328235, + "freq_formatted": "794.33 MHz", + "impedance_ohm": 0.889278 + }, + { + "freq_hz": 1000000000, + "freq_formatted": "1.00 GHz", + "impedance_ohm": 1.093396 + } + ], + "min_impedance": { + "freq_formatted": "25.12 MHz", + "impedance_ohm": 0.316276 + } + }, + "VBUS": { + "capacitors": [ + { + "ref": "C7", + "value": "10u", + "farads": 9.999999999999999e-06, + "package": "0805", + "esr_ohm": 0.0158, + "esl_nH": 0.9, + "srf_hz": 1677640, + "srf_formatted": "1.68 MHz", + "type": "MLCC" + }, + { + "ref": "C3", + "value": "100uF", + "farads": 9.999999999999999e-05, + "package": null, + "esr_ohm": 0.1, + "esl_nH": 7.5, + "srf_hz": 183776, + "srf_formatted": "183.78 kHz", + "type": "electrolytic/tantalum" + }, + { + "ref": "C8", + "value": "10u", + "farads": 9.999999999999999e-06, + "package": "0805", + "esr_ohm": 0.0158, + "esl_nH": 0.9, + "srf_hz": 1677640, + "srf_formatted": "1.68 MHz", + "type": "MLCC" + } + ], + "cap_count": 3, + "total_capacitance_uF": 120.0, + "impedance_profile": [ + { + "freq_hz": 1000, + "freq_formatted": "1.00 kHz", + "impedance_ohm": 0.048186 + }, + { + "freq_hz": 1259, + "freq_formatted": "1.26 kHz", + "impedance_ohm": 0.04774 + }, + { + "freq_hz": 1585, + "freq_formatted": "1.58 kHz", + "impedance_ohm": 0.047192 + }, + { + "freq_hz": 1995, + "freq_formatted": "2.00 kHz", + "impedance_ohm": 0.046523 + }, + { + "freq_hz": 2512, + "freq_formatted": "2.51 kHz", + "impedance_ohm": 0.045714 + }, + { + "freq_hz": 3162, + "freq_formatted": "3.16 kHz", + "impedance_ohm": 0.044749 + }, + { + "freq_hz": 3981, + "freq_formatted": "3.98 kHz", + "impedance_ohm": 0.043615 + }, + { + "freq_hz": 5012, + "freq_formatted": "5.01 kHz", + "impedance_ohm": 0.042309 + }, + { + "freq_hz": 6310, + "freq_formatted": "6.31 kHz", + "impedance_ohm": 0.040846 + }, + { + "freq_hz": 7943, + "freq_formatted": "7.94 kHz", + "impedance_ohm": 0.039261 + }, + { + "freq_hz": 10000, + "freq_formatted": "10.00 kHz", + "impedance_ohm": 0.037611 + }, + { + "freq_hz": 12589, + "freq_formatted": "12.59 kHz", + "impedance_ohm": 0.035966 + }, + { + "freq_hz": 15849, + "freq_formatted": "15.85 kHz", + "impedance_ohm": 0.034395 + }, + { + "freq_hz": 19953, + "freq_formatted": "19.95 kHz", + "impedance_ohm": 0.032937 + }, + { + "freq_hz": 25119, + "freq_formatted": "25.12 kHz", + "impedance_ohm": 0.031597 + }, + { + "freq_hz": 31623, + "freq_formatted": "31.62 kHz", + "impedance_ohm": 0.030341 + }, + { + "freq_hz": 39811, + "freq_formatted": "39.81 kHz", + "impedance_ohm": 0.029115 + }, + { + "freq_hz": 50119, + "freq_formatted": "50.12 kHz", + "impedance_ohm": 0.027863 + }, + { + "freq_hz": 63096, + "freq_formatted": "63.10 kHz", + "impedance_ohm": 0.026535 + }, + { + "freq_hz": 79433, + "freq_formatted": "79.43 kHz", + "impedance_ohm": 0.025099 + }, + { + "freq_hz": 100000, + "freq_formatted": "100.00 kHz", + "impedance_ohm": 0.023537 + }, + { + "freq_hz": 125893, + "freq_formatted": "125.89 kHz", + "impedance_ohm": 0.02401 + }, + { + "freq_hz": 158489, + "freq_formatted": "158.49 kHz", + "impedance_ohm": 0.02355 + }, + { + "freq_hz": 199526, + "freq_formatted": "199.53 kHz", + "impedance_ohm": 0.022243 + }, + { + "freq_hz": 251189, + "freq_formatted": "251.19 kHz", + "impedance_ohm": 0.020311 + }, + { + "freq_hz": 316228, + "freq_formatted": "316.23 kHz", + "impedance_ohm": 0.018033 + }, + { + "freq_hz": 398107, + "freq_formatted": "398.11 kHz", + "impedance_ohm": 0.01567 + }, + { + "freq_hz": 501187, + "freq_formatted": "501.19 kHz", + "impedance_ohm": 0.013427 + }, + { + "freq_hz": 630957, + "freq_formatted": "630.96 kHz", + "impedance_ohm": 0.011438 + }, + { + "freq_hz": 794328, + "freq_formatted": "794.33 kHz", + "impedance_ohm": 0.009787 + }, + { + "freq_hz": 1000000, + "freq_formatted": "1.00 MHz", + "impedance_ohm": 0.008528 + }, + { + "freq_hz": 1258925, + "freq_formatted": "1.26 MHz", + "impedance_ohm": 0.007708 + }, + { + "freq_hz": 1584893, + "freq_formatted": "1.58 MHz", + "impedance_ohm": 0.007375 + }, + { + "freq_hz": 1995262, + "freq_formatted": "2.00 MHz", + "impedance_ohm": 0.007563 + }, + { + "freq_hz": 2511886, + "freq_formatted": "2.51 MHz", + "impedance_ohm": 0.008293 + }, + { + "freq_hz": 3162278, + "freq_formatted": "3.16 MHz", + "impedance_ohm": 0.009576 + }, + { + "freq_hz": 3981072, + "freq_formatted": "3.98 MHz", + "impedance_ohm": 0.011444 + }, + { + "freq_hz": 5011872, + "freq_formatted": "5.01 MHz", + "impedance_ohm": 0.013965 + }, + { + "freq_hz": 6309573, + "freq_formatted": "6.31 MHz", + "impedance_ohm": 0.017253 + }, + { + "freq_hz": 7943282, + "freq_formatted": "7.94 MHz", + "impedance_ohm": 0.021474 + }, + { + "freq_hz": 10000000, + "freq_formatted": "10.00 MHz", + "impedance_ohm": 0.026844 + }, + { + "freq_hz": 12589254, + "freq_formatted": "12.59 MHz", + "impedance_ohm": 0.033648 + }, + { + "freq_hz": 15848932, + "freq_formatted": "15.85 MHz", + "impedance_ohm": 0.042245 + }, + { + "freq_hz": 19952623, + "freq_formatted": "19.95 MHz", + "impedance_ohm": 0.053092 + }, + { + "freq_hz": 25118864, + "freq_formatted": "25.12 MHz", + "impedance_ohm": 0.066768 + }, + { + "freq_hz": 31622777, + "freq_formatted": "31.62 MHz", + "impedance_ohm": 0.083999 + }, + { + "freq_hz": 39810717, + "freq_formatted": "39.81 MHz", + "impedance_ohm": 0.105704 + }, + { + "freq_hz": 50118723, + "freq_formatted": "50.12 MHz", + "impedance_ohm": 0.133038 + }, + { + "freq_hz": 63095734, + "freq_formatted": "63.10 MHz", + "impedance_ohm": 0.167456 + }, + { + "freq_hz": 79432823, + "freq_formatted": "79.43 MHz", + "impedance_ohm": 0.210792 + }, + { + "freq_hz": 100000000, + "freq_formatted": "100.00 MHz", + "impedance_ohm": 0.265354 + }, + { + "freq_hz": 125892541, + "freq_formatted": "125.89 MHz", + "impedance_ohm": 0.334047 + }, + { + "freq_hz": 158489319, + "freq_formatted": "158.49 MHz", + "impedance_ohm": 0.420529 + }, + { + "freq_hz": 199526231, + "freq_formatted": "199.53 MHz", + "impedance_ohm": 0.529405 + }, + { + "freq_hz": 251188643, + "freq_formatted": "251.19 MHz", + "impedance_ohm": 0.666475 + }, + { + "freq_hz": 316227766, + "freq_formatted": "316.23 MHz", + "impedance_ohm": 0.839036 + }, + { + "freq_hz": 398107171, + "freq_formatted": "398.11 MHz", + "impedance_ohm": 1.05628 + }, + { + "freq_hz": 501187234, + "freq_formatted": "501.19 MHz", + "impedance_ohm": 1.329774 + }, + { + "freq_hz": 630957344, + "freq_formatted": "630.96 MHz", + "impedance_ohm": 1.674083 + }, + { + "freq_hz": 794328235, + "freq_formatted": "794.33 MHz", + "impedance_ohm": 2.107544 + }, + { + "freq_hz": 1000000000, + "freq_formatted": "1.00 GHz", + "impedance_ohm": 2.653239 + } + ], + "min_impedance": { + "freq_formatted": "1.58 MHz", + "impedance_ohm": 0.007375 + }, + "anti_resonances": [ + { + "freq_formatted": "125.89 kHz", + "freq_hz": 125893, + "impedance_ohm": 0.02401 + } + ] + }, + "+5v": { + "capacitors": [ + { + "ref": "C2", + "value": "10u", + "farads": 9.999999999999999e-06, + "package": "0805", + "esr_ohm": 0.0158, + "esl_nH": 0.9, + "srf_hz": 1677640, + "srf_formatted": "1.68 MHz", + "type": "MLCC" + } + ], + "cap_count": 1, + "total_capacitance_uF": 10.0, + "impedance_profile": [ + { + "freq_hz": 1000, + "freq_formatted": "1.00 kHz", + "impedance_ohm": 15.915496 + }, + { + "freq_hz": 1259, + "freq_formatted": "1.26 kHz", + "impedance_ohm": 12.642129 + }, + { + "freq_hz": 1585, + "freq_formatted": "1.58 kHz", + "impedance_ohm": 10.042001 + }, + { + "freq_hz": 1995, + "freq_formatted": "2.00 kHz", + "impedance_ohm": 7.976647 + }, + { + "freq_hz": 2512, + "freq_formatted": "2.51 kHz", + "impedance_ohm": 6.336078 + }, + { + "freq_hz": 3162, + "freq_formatted": "3.16 kHz", + "impedance_ohm": 5.032928 + }, + { + "freq_hz": 3981, + "freq_formatted": "3.98 kHz", + "impedance_ohm": 3.9978 + }, + { + "freq_hz": 5012, + "freq_formatted": "5.01 kHz", + "impedance_ohm": 3.17557 + }, + { + "freq_hz": 6310, + "freq_formatted": "6.31 kHz", + "impedance_ohm": 2.52245 + }, + { + "freq_hz": 7943, + "freq_formatted": "7.94 kHz", + "impedance_ohm": 2.003659 + }, + { + "freq_hz": 10000, + "freq_formatted": "10.00 kHz", + "impedance_ohm": 1.591571 + }, + { + "freq_hz": 12589, + "freq_formatted": "12.59 kHz", + "impedance_ohm": 1.26424 + }, + { + "freq_hz": 15849, + "freq_formatted": "15.85 kHz", + "impedance_ohm": 1.004234 + }, + { + "freq_hz": 19953, + "freq_formatted": "19.95 kHz", + "impedance_ohm": 0.797708 + }, + { + "freq_hz": 25119, + "freq_formatted": "25.12 kHz", + "impedance_ohm": 0.633662 + }, + { + "freq_hz": 31623, + "freq_formatted": "31.62 kHz", + "impedance_ohm": 0.503361 + }, + { + "freq_hz": 39811, + "freq_formatted": "39.81 kHz", + "impedance_ohm": 0.399866 + }, + { + "freq_hz": 50119, + "freq_formatted": "50.12 kHz", + "impedance_ohm": 0.317666 + }, + { + "freq_hz": 63096, + "freq_formatted": "63.10 kHz", + "impedance_ohm": 0.252382 + }, + { + "freq_hz": 79433, + "freq_formatted": "79.43 kHz", + "impedance_ohm": 0.200538 + }, + { + "freq_hz": 100000, + "freq_formatted": "100.00 kHz", + "impedance_ohm": 0.159375 + }, + { + "freq_hz": 125893, + "freq_formatted": "125.89 kHz", + "impedance_ohm": 0.126698 + }, + { + "freq_hz": 158489, + "freq_formatted": "158.49 kHz", + "impedance_ohm": 0.10077 + }, + { + "freq_hz": 199526, + "freq_formatted": "199.53 kHz", + "impedance_ohm": 0.08021 + }, + { + "freq_hz": 251189, + "freq_formatted": "251.19 kHz", + "impedance_ohm": 0.063924 + }, + { + "freq_hz": 316228, + "freq_formatted": "316.23 kHz", + "impedance_ohm": 0.051048 + }, + { + "freq_hz": 398107, + "freq_formatted": "398.11 kHz", + "impedance_ohm": 0.040902 + }, + { + "freq_hz": 501187, + "freq_formatted": "501.19 kHz", + "impedance_ohm": 0.032956 + }, + { + "freq_hz": 630957, + "freq_formatted": "630.96 kHz", + "impedance_ohm": 0.026807 + }, + { + "freq_hz": 794328, + "freq_formatted": "794.33 kHz", + "impedance_ohm": 0.022165 + }, + { + "freq_hz": 1000000, + "freq_formatted": "1.00 MHz", + "impedance_ohm": 0.018839 + }, + { + "freq_hz": 1258925, + "freq_formatted": "1.26 MHz", + "impedance_ohm": 0.016738 + }, + { + "freq_hz": 1584893, + "freq_formatted": "1.58 MHz", + "impedance_ohm": 0.015837 + }, + { + "freq_hz": 1995262, + "freq_formatted": "2.00 MHz", + "impedance_ohm": 0.016142 + }, + { + "freq_hz": 2511886, + "freq_formatted": "2.51 MHz", + "impedance_ohm": 0.017651 + }, + { + "freq_hz": 3162278, + "freq_formatted": "3.16 MHz", + "impedance_ohm": 0.020365 + }, + { + "freq_hz": 3981072, + "freq_formatted": "3.98 MHz", + "impedance_ohm": 0.02434 + }, + { + "freq_hz": 5011872, + "freq_formatted": "5.01 MHz", + "impedance_ohm": 0.029715 + }, + { + "freq_hz": 6309573, + "freq_formatted": "6.31 MHz", + "impedance_ohm": 0.036729 + }, + { + "freq_hz": 7943282, + "freq_formatted": "7.94 MHz", + "impedance_ohm": 0.045731 + }, + { + "freq_hz": 10000000, + "freq_formatted": "10.00 MHz", + "impedance_ohm": 0.057183 + }, + { + "freq_hz": 12589254, + "freq_formatted": "12.59 MHz", + "impedance_ohm": 0.071689 + }, + { + "freq_hz": 15848932, + "freq_formatted": "15.85 MHz", + "impedance_ohm": 0.090017 + }, + { + "freq_hz": 19952623, + "freq_formatted": "19.95 MHz", + "impedance_ohm": 0.11314 + }, + { + "freq_hz": 25118864, + "freq_formatted": "25.12 MHz", + "impedance_ohm": 0.14229 + }, + { + "freq_hz": 31622777, + "freq_formatted": "31.62 MHz", + "impedance_ohm": 0.179018 + }, + { + "freq_hz": 39810717, + "freq_formatted": "39.81 MHz", + "impedance_ohm": 0.225279 + }, + { + "freq_hz": 50118723, + "freq_formatted": "50.12 MHz", + "impedance_ohm": 0.283538 + }, + { + "freq_hz": 63095734, + "freq_formatted": "63.10 MHz", + "impedance_ohm": 0.356896 + }, + { + "freq_hz": 79432823, + "freq_formatted": "79.43 MHz", + "impedance_ohm": 0.44926 + }, + { + "freq_hz": 100000000, + "freq_formatted": "100.00 MHz", + "impedance_ohm": 0.565548 + }, + { + "freq_hz": 125892541, + "freq_formatted": "125.89 MHz", + "impedance_ohm": 0.711954 + }, + { + "freq_hz": 158489319, + "freq_formatted": "158.49 MHz", + "impedance_ohm": 0.896275 + }, + { + "freq_hz": 199526231, + "freq_formatted": "199.53 MHz", + "impedance_ohm": 1.128325 + }, + { + "freq_hz": 251188643, + "freq_formatted": "251.19 MHz", + "impedance_ohm": 1.420463 + }, + { + "freq_hz": 316227766, + "freq_formatted": "316.23 MHz", + "impedance_ohm": 1.788245 + }, + { + "freq_hz": 398107171, + "freq_formatted": "398.11 MHz", + "impedance_ohm": 2.251258 + }, + { + "freq_hz": 501187234, + "freq_formatted": "501.19 MHz", + "impedance_ohm": 2.834159 + }, + { + "freq_hz": 630957344, + "freq_formatted": "630.96 MHz", + "impedance_ohm": 3.567989 + }, + { + "freq_hz": 794328235, + "freq_formatted": "794.33 MHz", + "impedance_ohm": 4.491828 + }, + { + "freq_hz": 1000000000, + "freq_formatted": "1.00 GHz", + "impedance_ohm": 5.654873 + } + ], + "min_impedance": { + "freq_formatted": "1.58 MHz", + "impedance_ohm": 0.015837 + } + } + }, + "observations": [ + "/00000000-0000-0000-0000-00005cff706a/+5v: highest SRF is 22.51 MHz \u2014 consider adding small (100pF-1nF) MLCC for >100 MHz coverage", + "VBUS: highest SRF is 1.68 MHz \u2014 consider adding small (100pF-1nF) MLCC for >100 MHz coverage", + "+5v: highest SRF is 1.68 MHz \u2014 consider adding small (100pF-1nF) MLCC for >100 MHz coverage" + ] + }, + "sleep_current_audit": { + "rails": { + "/00000000-0000-0000-0000-00005cff706a/+5v": { + "current_paths": [ + { + "ref": "R9", + "value": "2.2K 1%", + "type": "resistor_to_gnd", + "resistance_ohm": 2200.0, + "rail_voltage": 5.0, + "current_uA": 2272.73, + "likely_state": "always conducting", + "realistic_uA": 2272.73 + } + ], + "total_uA": 2272.73, + "always_on_uA": 2272.73, + "conditional_uA": 0, + "realistic_uA": 2272.73 + }, + "VBUS": { + "current_paths": [ + { + "ref": "U6", + "value": "AP22653W6", + "type": "regulator_iq", + "current_uA": 100, + "has_enable_pin": true, + "note": "estimated Iq (can be disabled via EN)", + "likely_state": "can be disabled via EN", + "realistic_uA": 0.0 + } + ], + "total_uA": 100, + "always_on_uA": 100, + "conditional_uA": 0, + "realistic_uA": 0.0 + } + }, + "total_estimated_sleep_uA": 2372.73, + "conditional_pull_up_uA": 0.0, + "realistic_total_uA": 2272.73, + "observations": [ + "Always-on current: 2372.7 uA (2.37 mA)", + "Realistic sleep estimate: 2272.7 uA (2.27 mA)" + ] + }, + "voltage_derating": { + "derating_profile": "commercial", + "caps_checked": 0, + "ics_checked": 0, + "resistors_checked": 1, + "issues": [] + }, + "power_budget": { + "rails": { + "+5v": { + "ic_count": 1, + "ics": [ + { + "ref": "U6", + "value": "AP22653W6", + "estimated_mA": 10 + } + ], + "estimated_load_mA": 10 + }, + "/00000000-0000-0000-0000-00005cff706a/+5v": { + "ic_count": 1, + "ics": [ + { + "ref": "U12", + "value": "RT9742SNGV", + "estimated_mA": 10 + } + ], + "estimated_load_mA": 10 + }, + "/00000000-0000-0000-0000-00005cff70b1/+3.3v": { + "ic_count": 1, + "ics": [ + { + "ref": "U5", + "value": "74LVC1G07SE-7", + "estimated_mA": 10 + } + ], + "estimated_load_mA": 10 + }, + "VBUS": { + "ic_count": 0, + "ics": [], + "estimated_load_mA": 0, + "regulator": { + "ref": "U6", + "value": "AP22653W6", + "topology": "LDO" + } + } + } + }, + "power_sequencing": { + "dependencies": [ + { + "regulator": "U6", + "output_rail": "VBUS", + "en_pin": "EN", + "en_net": "VBUS_EN", + "en_source": "always_on", + "en_driven_by": "VBUS_EN" + } + ], + "observations": [ + "1 regulator(s) always enabled: U6" + ] + }, + "bom_optimization": { + "unique_value_counts": { + "resistor": 4, + "capacitor": 3 + }, + "total_unique_footprints": 23, + "single_use_passive_values": 4 + }, + "test_coverage": { + "test_points": [ + { + "ref": "TP5", + "net": "__unnamed_25", + "value": "TestPoint" + }, + { + "ref": "TP3", + "net": "__unnamed_24", + "value": "TestPoint" + } + ], + "test_point_count": 2, + "covered_nets": [ + "__unnamed_24", + "__unnamed_25" + ], + "debug_connectors": [ + { + "ref": "J12", + "value": "USB3_A", + "interface": "uart", + "connected_nets": [ + "GND", + "GND", + "GND", + "GND", + "GND", + "USB3-0-RX_N", + "USB3-0-RX_P", + "USB3-0-D_P", + "USB3-0-D_N", + "USB3-0-TX_N", + "USB3-0-TX_P", + "USB3-1-RX_N", + "USB3-1-RX_P", + "USB3-1-D_P", + "USB3-1-D_N", + "USB3-1-TX_N", + "USB3-1-TX_P", + "VBUS", + "VBUS" + ] + } + ], + "uncovered_key_nets": [ + { + "net": "/00000000-0000-0000-0000-00005cff706a/+5v", + "category": "power_rail" + }, + { + "net": "/00000000-0000-0000-0000-00005cff70b1/+3.3v", + "category": "power_rail" + }, + { + "net": "VBAT", + "category": "power_rail" + }, + { + "net": "+1.8v", + "category": "power_rail" + }, + { + "net": "PWR_BUT", + "category": "power_rail" + }, + { + "net": "VBUS_EN", + "category": "power_rail" + }, + { + "net": "USB3-0-RX_N", + "category": "uart" + }, + { + "net": "USB3-0-RX_P", + "category": "uart" + }, + { + "net": "USB3-0-TX_N", + "category": "uart" + }, + { + "net": "USB3-0-TX_P", + "category": "uart" + }, + { + "net": "USB3-1-RX_N", + "category": "uart" + }, + { + "net": "USB3-1-RX_P", + "category": "uart" + }, + { + "net": "USB3-1-TX_N", + "category": "uart" + }, + { + "net": "USB3-1-TX_P", + "category": "uart" + }, + { + "net": "VBUS", + "category": "power_rail" + }, + { + "net": "+5v", + "category": "power_rail" + } + ], + "observations": [ + "2 test point(s) covering 2 net(s)", + "Key nets without test points: 8 power_rail, 8 uart" + ] + }, + "assembly_complexity": { + "total_components": 49, + "smd_count": 48, + "tht_count": 1, + "complexity_score": 50, + "difficulty_breakdown": { + "hard": 15, + "medium": 30, + "easy": 4 + }, + "package_breakdown": { + "other_SMD": 23, + "0402": 13, + "0805": 5, + "0603": 2, + "SON": 2, + "SOT-23": 2, + "SC-70": 1, + "THT": 1 + }, + "unique_footprints": 8, + "observations": [ + "Moderate assembly complexity (score 50/100)", + "15 hard-to-solder component(s) (0201/0402/BGA/QFN)" + ] + }, + "usb_compliance": { + "connectors": [ + { + "connector": "J11", + "value": "USB_C_Receptacle_USB2.0", + "is_type_c": true, + "checks": { + "cc1_pulldown_5k1": "fail", + "cc2_pulldown_5k1": "fail", + "dp_series_resistor": "info", + "dm_series_resistor": "info", + "vbus_esd_protection": "fail", + "vbus_decoupling": "pass", + "vbus_capacitance": "warning", + "usb_esd_ic": "info" + }, + "usb_c_cc_status": { + "cc1_net": "/00000000-0000-0000-0000-00005cff706a/CC1", + "cc2_net": "/00000000-0000-0000-0000-00005cff706a/CC2", + "cc1_resistor": null, + "cc2_resistor": null, + "role": "unknown", + "pd_controller": null, + "status": "fail", + "issues": [ + "missing_cc1_resistor", + "missing_cc2_resistor" + ] + }, + "vbus_capacitance_detail": { + "total_uf": 0.3, + "recommended_min_uf": 1.0, + "detail": "VBUS decoupling may be insufficient: 0.3\u00b5F total (recommended \u22651\u00b5F for USB 2.0, \u226510\u00b5F for USB 3.x)" + } + }, + { + "connector": "J12", + "value": "USB3_A", + "is_type_c": false, + "checks": { + "dp_series_resistor": "info", + "dm_series_resistor": "info", + "vbus_esd_protection": "fail", + "vbus_decoupling": "pass", + "vbus_capacitance": "pass", + "usb_esd_ic": "info" + }, + "vbus_capacitance_detail": { + "total_uf": 120.0 + } + } + ], + "summary": { + "pass": 3, + "fail": 4, + "info": 6, + "warning": 1 + }, + "observations": [ + "4 USB compliance check(s) failed", + "3 USB compliance check(s) passed", + "6 USB check(s) informational (optional)" + ] + }, + "inrush_analysis": { + "rails": [ + { + "regulator": "U6", + "output_rail": "VBUS", + "output_voltage": 5.0, + "topology": "LDO", + "output_caps": [ + { + "ref": "C7", + "value": "10u", + "farads": 9.999999999999999e-06 + }, + { + "ref": "C3", + "value": "100uF", + "farads": 9.999999999999999e-05 + }, + { + "ref": "C8", + "value": "10u", + "farads": 9.999999999999999e-06 + } + ], + "total_output_capacitance_uF": 120.0, + "estimated_inrush_A": 1.2, + "assumed_soft_start_ms": 0.5, + "concern": "high_inrush" + } + ], + "observations": [ + "VBUS: estimated inrush 1.20A with 120uF output capacitance \u2014 verify regulator can handle, consider soft-start" + ] + }, + "sheets": [ + "/Users/noise/Documents/obsidian/rpiboard/carrier/CM5IO.kicad_sch", + "/Users/noise/Documents/obsidian/rpiboard/carrier/CM5_GPIO.kicad_sch", + "/Users/noise/Documents/obsidian/rpiboard/carrier/CM5_HighSpeed.kicad_sch" + ], + "project_settings": { + "symbol_libs": [ + { + "name": "CM5IO", + "type": "KiCad", + "uri": "${KIPRJMOD}/CM5IO.kicad_sym" + } + ] + }, + "missing_info": { + "missing_mpn": [ + "C18", + "J11", + "R9", + "C9", + "U5", + "Module1", + "C1", + "J9", + "J8", + "R2", + "R3", + "D2", + "R1", + "D1", + "R10", + "U2", + "R5", + "J2", + "U1", + "BT1", + "U3", + "J14", + "SW1", + "R6", + "R7", + "C13", + "C12", + "U12", + "J6", + "C7", + "C3", + "R12", + "C8", + "U6", + "J12", + "C2" + ] + }, + "bom_lock": { + "total_bom_components": 36, + "components_with_mpn": 0, + "missing_mpn": [ + "C18", + "J11", + "R9", + "C9", + "U5", + "Module1", + "C1", + "J9", + "J8", + "R2", + "R3", + "D2", + "R1", + "D1", + "R10", + "U2", + "R5", + "J2", + "U1", + "BT1" + ], + "missing_mpn_count": 36, + "generic_values": [], + "lock_pct": 0, + "status": "fail" + }, + "design_intent": { + "product_class": "prototype", + "ipc_class": 2, + "target_market": "hobby", + "expected_lifetime_years": 5, + "operating_temp_range": [ + -10, + 70 + ], + "preferred_passive_size": "0603", + "test_coverage_target": 0.85, + "approved_manufacturers": [], + "confidence": 0.3, + "detection_signals": [], + "source": { + "ipc_class": "auto", + "product_class": "auto", + "target_market": "auto", + "expected_lifetime_years": "auto", + "operating_temp_range": "auto", + "preferred_passive_size": "auto", + "test_coverage_target": "auto", + "approved_manufacturers": "auto" + } + }, + "audience_summary": { + "designer": { + "total_findings": 36, + "by_severity": { + "error": 1, + "warning": 7, + "info": 28 + }, + "by_category": { + "decoupling": 6, + "decoupling_coverage": 3, + "verification": 1, + "protection": 10, + "led_control": 2, + "labels": 4, + "power_management": 2, + "signal_integrity": 1, + "power": 6, + "sourcing": 1 + }, + "top_issues": [ + { + "detector": "audit_sourcing_gate", + "rule_id": "SS-001", + "severity": "error", + "confidence": "deterministic", + "evidence_source": "bom", + "category": "sourcing", + "summary": "Sourcing blocker: BOM has <50% MPN coverage (0/24 unique parts). Board is not pre-fab ready.", + "description": "Sourcing audit: 0 of 24 unique BOM lines (grouped by value + footprint) carry a manufacturer part number (0.0%). Pre-fab readiness requires 100% coverage; production assembly requires all parts sourceable via one of the supported distributors.", + "components": [ + "BT1", + "C1", + "C12", + "C13", + "C18", + "C2", + "C3", + "C7", + "C8", + "C9", + "D1", + "D2", + "J11", + "J12", + "J14", + "J2", + "J6", + "J8", + "J9", + "Module1", + "R1", + "R10", + "R12", + "R2", + "R3", + "R5", + "R6", + "R7", + "R9", + "SW1", + "U1", + "U12", + "U2", + "U3", + "U5", + "U6" + ], + "nets": [], + "pins": [], + "mpn_coverage_percent": 0.0, + "missing_mpn_lines": 24, + "missing_mpn_refs": 36, + "total_bom_lines": 24, + "recommendation": "Populate the MPN field on the listed refs (use the digikey / mouser / lcsc / element14 skill to search by value/footprint when the MPN isn't already known).", + "report_context": { + "section": "Sourcing", + "impact": "Pre-fab gate: board cannot be ordered until MPN coverage reaches 100%.", + "standard_ref": "" + }, + "stages": [ + "pre_fab" + ] + }, + { + "detector": "validate_pullups", + "rule_id": "PU-001", + "category": "signal_integrity", + "summary": "U6 pin nFault (__unnamed_85) missing pull-up resistor", + "description": "Pin nFault on U6 (AP22653W6) is connected to net __unnamed_85 but has no pull-up resistor. This pin type typically requires an external pull-up to a power rail for correct operation.", + "components": [ + "U6" + ], + "nets": [ + "__unnamed_85" + ], + "pins": [ + { + "ref": "U6", + "pin": "nFault", + "function": "open_drain_or_input" + } + ], + "severity": "warning", + "confidence": "heuristic", + "evidence_source": "topology", + "recommendation": "Add a 4.7k-10k pull-up resistor from __unnamed_85 to the appropriate power rail.", + "fix_params": { + "type": "add_component", + "components": [ + { + "type": "resistor", + "value": "10k", + "net_from": "__unnamed_85", + "net_to": "" + } + ], + "basis": "Pin nFault is open-drain/input type requiring pull-up" + }, + "report_context": { + "section": "Signal Integrity", + "impact": "Pin may float or bus may not function without pull-up", + "standard_ref": "" + }, + "provenance": { + "evidence": "pu_missing_pullup", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "validation_findings:5144931b8073", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "+5v has no declared source", + "description": "Net +5v carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "+5v" + ], + "pins": [ + "U6.1" + ], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "/00000000-0000-0000-0000-00005cff706a/+5v has no declared source", + "description": "Net /00000000-0000-0000-0000-00005cff706a/+5v carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "/00000000-0000-0000-0000-00005cff706a/+5v" + ], + "pins": [ + "Module1.77", + "Module1.79", + "Module1.81", + "Module1.83", + "Module1.85", + "Module1.87", + "U12.1" + ], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF has no declared source", + "description": "Net /00000000-0000-0000-0000-00005cff70b1/GPIO_VREF carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF" + ], + "pins": [ + "Module1.78" + ], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "PWR_BUT has no declared source", + "description": "Net PWR_BUT carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "PWR_BUT" + ], + "pins": [], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "VBAT has no declared source", + "description": "Net VBAT carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "VBAT" + ], + "pins": [], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + }, + { + "detector": "audit_rail_sources", + "rule_id": "RS-001", + "severity": "warning", + "confidence": "deterministic", + "evidence_source": "topology", + "category": "power", + "summary": "VBUS_EN has no declared source", + "description": "Net VBUS_EN carries power_in pins but has no power_out pin, no PWR_FLAG, no regulator output mapping, and no bridged solder jumper path to a sourced net.", + "components": [], + "nets": [ + "VBUS_EN" + ], + "pins": [], + "source_path": "none", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "report_context": { + "section": "Power \u2014 Rail Sources", + "impact": "Rail has no source visible to the analyser; likely a wiring gap or missing PWR_FLAG.", + "standard_ref": "" + }, + "provenance": { + "evidence": "rs_rail_audit", + "confidence": "deterministic", + "claimed_components": [], + "excluded_by": [], + "suppressed_candidates": [] + }, + "detection_id": "", + "stages": [ + "schematic" + ] + } + ] + }, + "reviewer": { + "total_findings": 8, + "by_category": { + "signal_integrity": 1, + "power": 6, + "sourcing": 1 + }, + "top_issues": [ + { + "rule_id": "SS-001", + "severity": "error", + "summary": "Sourcing blocker: BOM has <50% MPN coverage (0/24 unique parts). Board is not pre-fab ready.", + "recommendation": "Populate the MPN field on the listed refs (use the digikey / mouser / lcsc / element14 skill to search by value/footprint when the MPN isn't already known).", + "category": "sourcing" + }, + { + "rule_id": "PU-001", + "severity": "warning", + "summary": "U6 pin nFault (__unnamed_85) missing pull-up resistor", + "recommendation": "Add a 4.7k-10k pull-up resistor from __unnamed_85 to the appropriate power rail.", + "category": "signal_integrity" + }, + { + "rule_id": "RS-001", + "severity": "warning", + "summary": "+5v has no declared source", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "category": "power" + }, + { + "rule_id": "RS-001", + "severity": "warning", + "summary": "/00000000-0000-0000-0000-00005cff706a/+5v has no declared source", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "category": "power" + }, + { + "rule_id": "RS-001", + "severity": "warning", + "summary": "/00000000-0000-0000-0000-00005cff70b1/GPIO_VREF has no declared source", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "category": "power" + }, + { + "rule_id": "RS-001", + "severity": "warning", + "summary": "PWR_BUT has no declared source", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "category": "power" + }, + { + "rule_id": "RS-001", + "severity": "warning", + "summary": "VBAT has no declared source", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "category": "power" + }, + { + "rule_id": "RS-001", + "severity": "warning", + "summary": "VBUS_EN has no declared source", + "recommendation": "Add a PWR_FLAG to declare the rail as externally powered (e.g. from a connector) or trace the rail back to a regulator output. If the source lives on another sheet, promote the net name to a global label.", + "category": "power" + } + ] + }, + "manager": { + "risk_level": "moderate", + "blocker_count": 1, + "warning_count": 7, + "stage_readiness": { + "schematic": "needs_review", + "layout": "pass", + "pre_fab": "needs_work", + "bring_up": "pass" + }, + "one_liner": "1 error, 7 warnings across 3 categories. Pre-fab stage has blockers." + } + } +} \ No newline at end of file diff --git a/carrier/CM5IO.kicad_pro b/carrier/CM5IO.kicad_pro index 7ca4835..d865f05 100644 --- a/carrier/CM5IO.kicad_pro +++ b/carrier/CM5IO.kicad_pro @@ -261,7 +261,6 @@ "erc": { "erc_exclusions": [ "power_pin_not_driven|1003300|1181100|66cf9899-100d-45fb-9b9f-8f866de8a3fe|00000000-0000-0000-0000-000000000000|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a|", - "power_pin_not_driven|1524000|317500|2cecda96-8fc5-40d2-a9f4-ae1444adbd06|00000000-0000-0000-0000-000000000000|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b|", "power_pin_not_driven|393700|1181100|0fc4267c-2119-444e-b3b2-d8a7bd88ec8a|00000000-0000-0000-0000-000000000000|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a|/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff706a|" ], "meta": { @@ -834,10 +833,6 @@ [ "00000000-0000-0000-0000-00005cff706a", "CM5_GPIO ( Ethernet, GPIO, SDCARD)" - ], - [ - "00000000-0000-0000-0000-00005ed4bb5b", - "PCIe-M2" ] ], "text_variables": {} diff --git a/carrier/CM5IO.kicad_sch b/carrier/CM5IO.kicad_sch index 912090a..f6ed5a4 100644 --- a/carrier/CM5IO.kicad_sch +++ b/carrier/CM5IO.kicad_sch @@ -1209,16 +1209,6 @@ ) (uuid "0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e") ) - (wire - (pts - (xy 186.69 53.34) (xy 214.63 53.34) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "14f9e820-8d3f-4833-ac31-9b9e9028d8dc") - ) (wire (pts (xy 62.23 52.07) (xy 74.93 52.07) @@ -1229,16 +1219,6 @@ ) (uuid "19ecf363-8282-4d88-8cbf-f045ad2274f8") ) - (wire - (pts - (xy 186.69 68.58) (xy 214.63 68.58) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "213a2af1-412b-47f4-ab3b-c5f43b6be7a6") - ) (wire (pts (xy 115.57 57.15) (xy 115.57 50.8) @@ -1259,16 +1239,6 @@ ) (uuid "26eed24a-a6fe-4994-877d-88ca1bd022b3") ) - (wire - (pts - (xy 186.69 43.18) (xy 214.63 43.18) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "2d6718e7-f18d-444d-9792-ddf1a113460c") - ) (wire (pts (xy 72.39 80.01) (xy 83.82 80.01) @@ -1309,16 +1279,6 @@ ) (uuid "532c6793-fcef-48e2-94ae-3d6f4bca00a7") ) - (wire - (pts - (xy 186.69 57.15) (xy 214.63 57.15) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "573ee3b8-d265-4b77-9337-75b96bd8afff") - ) (wire (pts (xy 113.03 48.26) (xy 113.03 62.23) @@ -1329,16 +1289,6 @@ ) (uuid "59d43607-0f19-4477-88e6-8d4e79b5589b") ) - (wire - (pts - (xy 186.69 50.8) (xy 214.63 50.8) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "71c77456-1405-42e3-95ed-69e629de0558") - ) (wire (pts (xy 72.39 80.01) (xy 72.39 82.55) @@ -1359,16 +1309,6 @@ ) (uuid "7aaa8496-fa91-4cdd-a95c-0fb4934a563f") ) - (wire - (pts - (xy 186.69 64.77) (xy 214.63 64.77) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "7f3eb118-a20c-4239-b800-c9211c66847d") - ) (wire (pts (xy 62.23 44.45) (xy 87.63 44.45) @@ -1409,16 +1349,6 @@ ) (uuid "909b030b-fa1a-4fe8-b1ee-422b4d9e23cf") ) - (wire - (pts - (xy 186.69 72.39) (xy 214.63 72.39) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a8690438-b6c5-46ae-bc23-906e22bda6c7") - ) (wire (pts (xy 43.18 82.55) (xy 46.99 82.55) @@ -1429,16 +1359,6 @@ ) (uuid "b38f69e2-7f84-451a-9316-b038cdf98445") ) - (wire - (pts - (xy 186.69 59.69) (xy 214.63 59.69) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "b4f385c6-872a-4056-a543-aa8bf444002f") - ) (wire (pts (xy 39.37 82.55) (xy 43.18 82.55) @@ -1519,16 +1439,6 @@ ) (uuid "e83e0227-ac0f-4180-82bd-68d3a7b56476") ) - (wire - (pts - (xy 186.69 45.72) (xy 214.63 45.72) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "f144a97d-c3f0-423f-b0a9-3f7dbc42478b") - ) (wire (pts (xy 62.23 57.15) (xy 115.57 57.15) @@ -1539,16 +1449,6 @@ ) (uuid "f1f3a160-e530-44d2-9a4b-2d9f99bce435") ) - (wire - (pts - (xy 186.69 76.2) (xy 214.63 76.2) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fa92842d-37e8-4687-b4f4-0cfd415b8d84") - ) (text "Connectors\n-------\nEthernet\nSDCARD\n40way RPI\nJumpers\nFan\nBattery" (exclude_from_sim no) (at 150.876 147.066 0) @@ -3521,86 +3421,6 @@ ) (uuid "0f22151c-f260-4674-b486-4710a2c42a55") ) - (pin "PCIE_CLK_P" output - (at 186.69 57.15 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "fe8d9267-7834-48d6-a191-c8724b2ee78d") - ) - (pin "PCIE_CLK_N" output - (at 186.69 59.69 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "0b21a65d-d20b-411e-920a-75c343ac5136") - ) - (pin "PCIE_TX_P" output - (at 186.69 43.18 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "3cd1bda0-18db-417d-b581-a0c50623df68") - ) - (pin "PCIE_TX_N" output - (at 186.69 45.72 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "d57dcfee-5058-4fc2-a68b-05f9a48f685b") - ) - (pin "PCIE_nRST" output - (at 186.69 64.77 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "03c52831-5dc5-43c5-a442-8d23643b46fb") - ) - (pin "PCIE_RX_P" input - (at 186.69 50.8 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5") - ) - (pin "PCIE_RX_N" input - (at 186.69 53.34 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "29e78086-2175-405e-9ba3-c48766d2f50c") - ) - (pin "PCIE_nCLKREQ" input - (at 186.69 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "94a873dc-af67-4ef9-8159-1f7c93eeb3d7") - ) (pin "+3.3v" input (at 129.54 76.2 180) (effects @@ -3631,26 +3451,6 @@ ) (uuid "9bb20359-0f8b-45bc-9d38-6626ed3a939d") ) - (pin "PCIE_PWR_EN" output - (at 186.69 72.39 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "e445000d-94a3-4ed1-b023-6aae972d0a39") - ) - (pin "PCIE_nWAKE" input - (at 186.69 76.2 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "31cb0f66-393a-491f-95aa-c50644299a5d") - ) (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" @@ -3659,155 +3459,6 @@ ) ) ) - (sheet - (at 214.63 34.29) - (size 27.94 52.07) - (fields_autoplaced yes) - (stroke - (width 0.152) - (type solid) - (color 132 0 132 1) - ) - (fill - (color 255 255 255 0.0000) - ) - (uuid "00000000-0000-0000-0000-00005ed4bb5b") - (property "Sheetname" "PCIe-M2" - (at 214.63 33.5786 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Sheetfile" "PCIe-M2.kicad_sch" - (at 214.63 86.9444 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left top) - ) - ) - (pin "PCIE_CLK_P" input - (at 214.63 57.15 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "ee27d19c-8dca-4ac8-a760-6dfd54d28071") - ) - (pin "PCIE_CLK_N" input - (at 214.63 59.69 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "9b0a1687-7e1b-4a04-a30b-c27a072a2949") - ) - (pin "PCIE_TX_P" input - (at 214.63 43.18 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b") - ) - (pin "PCIE_TX_N" input - (at 214.63 45.72 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "9e1b837f-0d34-4a18-9644-9ee68f141f46") - ) - (pin "PCIE_nCLKREQ" output - (at 214.63 68.58 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "63ff1c93-3f96-4c33-b498-5dd8c33bccc0") - ) - (pin "PCIE_nRST" input - (at 214.63 64.77 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "b88717bd-086f-46cd-9d3f-0396009d0996") - ) - (pin "PCIE_RX_P" output - (at 214.63 50.8 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "61fe293f-6808-4b7f-9340-9aaac7054a97") - ) - (pin "PCIE_RX_N" output - (at 214.63 53.34 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "2f215f15-3d52-4c91-93e6-3ea03a95622f") - ) - (pin "+5v" input - (at 242.57 64.77 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "0217dfc4-fc13-4699-99ad-d9948522648e") - ) - (pin "PCIE_PWR_EN" input - (at 214.63 72.39 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "97775b76-6935-4c0f-9fc9-91db55c7f4d2") - ) - (pin "PCIE_nWAKE" output - (at 214.63 76.2 180) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "29caf48f-b190-47ea-a0b4-a078d43caa04") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (page "4") - ) - ) - ) - ) (sheet_instances (path "/" (page "1") diff --git a/carrier/CM5_HighSpeed.kicad_sch b/carrier/CM5_HighSpeed.kicad_sch index e7acade..dc853e3 100644 --- a/carrier/CM5_HighSpeed.kicad_sch +++ b/carrier/CM5_HighSpeed.kicad_sch @@ -7644,16 +7644,6 @@ ) (uuid "27e3c71f-5a63-4710-8adf-b600b805ce02") ) - (wire - (pts - (xy 31.75 38.1) (xy 38.1 38.1) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "2938bf2d-2d32-4cb0-9d4d-563ea28ffffa") - ) (wire (pts (xy 35.56 109.22) (xy 38.1 109.22) @@ -7734,16 +7724,6 @@ ) (uuid "2f5467a7-bd49-433c-92f2-60a842e66f7b") ) - (wire - (pts - (xy 31.75 27.94) (xy 38.1 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2f75af73-81af-4c13-9b1c-587f6551682a") - ) (wire (pts (xy 180.34 48.26) (xy 196.85 48.26) @@ -7904,16 +7884,6 @@ ) (uuid "4faeed13-cd8a-4bdc-8d48-1ca1fe386979") ) - (wire - (pts - (xy 38.1 43.18) (xy 31.75 43.18) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "5099f397-6fe7-454f-899c-34e2b5f22ca7") - ) (wire (pts (xy 229.87 147.32) (xy 240.03 147.32) @@ -7924,16 +7894,6 @@ ) (uuid "51f5536d-48d2-4807-be44-93f427952b0e") ) - (wire - (pts - (xy 31.75 30.48) (xy 38.1 30.48) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5243fe6a-ae55-40b5-8db1-ec9d4b04147b") - ) (wire (pts (xy 99.06 132.08) (xy 101.6 132.08) @@ -7944,16 +7904,6 @@ ) (uuid "524d7aa8-362f-459a-b2ae-4ca2a0b1612b") ) - (wire - (pts - (xy 31.75 53.34) (xy 38.1 53.34) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "53fda1fb-12bd-4536-80e1-aab5c0e3fc58") - ) (wire (pts (xy 82.55 177.8) (xy 82.55 185.42) @@ -8044,16 +7994,6 @@ ) (uuid "5cdb7416-8115-42e3-a14b-940e7e48428d") ) - (wire - (pts - (xy 38.1 45.72) (xy 31.75 45.72) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "6474aa6c-825c-4f0f-9938-759b68df02a5") - ) (wire (pts (xy 101.6 93.98) (xy 101.6 101.6) @@ -8234,16 +8174,6 @@ ) (uuid "87a0ffb1-5477-4b20-a3ac-fef5af129a33") ) - (wire - (pts - (xy 31.75 35.56) (xy 38.1 35.56) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "89bd1fdd-6a91-474e-8495-7a2ba7eb6260") - ) (wire (pts (xy 101.6 139.7) (xy 101.6 147.32) @@ -8264,16 +8194,6 @@ ) (uuid "8afe1dbf-1187-4362-8af8-a90ca839a6b3") ) - (wire - (pts - (xy 31.75 25.4) (xy 38.1 25.4) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "8b022692-69b7-4bd6-bf38-57edecf356fa") - ) (wire (pts (xy 180.34 80.01) (xy 196.85 80.01) @@ -8284,16 +8204,6 @@ ) (uuid "8c4772bb-de72-4bbc-8951-f76ac882c05f") ) - (wire - (pts - (xy 31.75 50.8) (xy 38.1 50.8) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "929c74c0-78bf-4efe-a778-fa328e951865") - ) (wire (pts (xy 151.13 78.74) (xy 134.62 78.74) @@ -8674,16 +8584,6 @@ ) (uuid "d5a7688c-7438-4b6d-999f-4f2a3cb18fd6") ) - (wire - (pts - (xy 99.06 35.56) (xy 105.41 35.56) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "d5c86a84-6c8b-48b5-b583-2fe7052421ab") - ) (wire (pts (xy 101.6 71.12) (xy 101.6 93.98) @@ -9355,42 +9255,6 @@ ) (uuid "02b1295e-cf95-47ff-9c57-f8ada28f2e94") ) - (hierarchical_label "PCIE_PWR_EN" - (shape output) - (at 31.75 30.48 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "1dacd626-a559-4363-9eb3-77dde5d16024") - ) - (hierarchical_label "PCIE_CLK_P" - (shape output) - (at 31.75 35.56 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "25247d0c-5910-484b-9651-5750d422a450") - ) - (hierarchical_label "PCIE_RX_N" - (shape input) - (at 31.75 45.72 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "4aee84d1-0859-48ac-a053-5a981ee1b24a") - ) (hierarchical_label "+5v" (shape input) (at 191.77 147.32 180) @@ -9403,18 +9267,6 @@ ) (uuid "4d55ddc7-73be-49f7-98ea-a0ba474cbdb0") ) - (hierarchical_label "PCIE_nCLKREQ" - (shape input) - (at 31.75 25.4 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "59142adb-6887-41fc-851e-9a7f51511d60") - ) (hierarchical_label "ID_SC" (shape input) (at 185.42 119.38 180) @@ -9427,18 +9279,6 @@ ) (uuid "5b04e20f-8575-4362-b040-2e2133d670c8") ) - (hierarchical_label "PCIE_RX_P" - (shape input) - (at 31.75 43.18 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "5fc4054a-b929-433e-a947-747fb7ed003d") - ) (hierarchical_label "GPIO_VREF" (shape input) (at 196.85 104.14 180) @@ -9487,18 +9327,6 @@ ) (uuid "69f75991-c8c0-49a9-aed8-daa6ca9a5d73") ) - (hierarchical_label "PCIE_TX_P" - (shape output) - (at 31.75 50.8 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "811f5389-c208-4640-ab1a-b454491bb330") - ) (hierarchical_label "ID_SD" (shape input) (at 185.42 121.92 180) @@ -9511,54 +9339,6 @@ ) (uuid "8e715b73-353f-4cfc-aa33-1eac54b89b6c") ) - (hierarchical_label "PCIE_nWAKE" - (shape input) - (at 31.75 27.94 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "a8b35311-4f8b-4438-aa47-dca2f66d55c9") - ) - (hierarchical_label "PCIE_CLK_N" - (shape output) - (at 31.75 38.1 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "b6f041a4-3ea0-418b-94a2-50c938beafa2") - ) - (hierarchical_label "PCIE_nRST" - (shape output) - (at 105.41 35.56 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "bb673c7a-d2b0-45b0-bfe2-0b113c092a77") - ) - (hierarchical_label "PCIE_TX_N" - (shape output) - (at 31.75 53.34 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "d4876469-b949-49ce-b8fe-43cb458692a4") - ) (symbol (lib_id "power:GND") (at 101.6 152.4 0) @@ -12904,4 +12684,44 @@ (at 38.1 144.78) (uuid "3e94757c-62b4-5b7d-9eb9-0bce1d18da64") ) + (no_connect + (at 38.1 25.4) + (uuid "aab94d9f-4d88-55fd-8963-e421713879b9") + ) + (no_connect + (at 38.1 27.94) + (uuid "bf767c9b-22d7-5638-8a4e-bb8fee0ab324") + ) + (no_connect + (at 38.1 30.48) + (uuid "22043a85-7370-5a2b-9195-7034c3f95e65") + ) + (no_connect + (at 99.06 35.56) + (uuid "cb39ce49-dc2e-52cf-9ae5-2fad794b9c0c") + ) + (no_connect + (at 38.1 35.56) + (uuid "2c45bf1f-14d2-5a34-839d-dece52143315") + ) + (no_connect + (at 38.1 38.1) + (uuid "03029999-8098-5e97-add5-bc4fb95371cc") + ) + (no_connect + (at 38.1 43.18) + (uuid "59658b5e-4bf4-566d-b811-b0bf504a95d9") + ) + (no_connect + (at 38.1 45.72) + (uuid "a4407bb3-9030-51e1-88f0-738765ce6334") + ) + (no_connect + (at 38.1 50.8) + (uuid "15995150-d574-51ad-b24d-4ddbdb8a19b0") + ) + (no_connect + (at 38.1 53.34) + (uuid "8fe68385-81e4-5057-aaaf-7839e45c385d") + ) ) diff --git a/carrier/PCIe-M2.kicad_sch b/carrier/PCIe-M2.kicad_sch deleted file mode 100644 index ddaf5ec..0000000 --- a/carrier/PCIe-M2.kicad_sch +++ /dev/null @@ -1,7933 +0,0 @@ -(kicad_sch - (version 20231120) - (generator "eeschema") - (generator_version "8.0") - (uuid "1354903a-b7d2-4e04-b220-6c6c8f058ef7") - (paper "A4") - (title_block - (title "Compute Module 5 IO Board - M2 Socket") - (rev "1") - (company "Copyright © 2024 Raspberry Pi Ltd.") - (comment 1 "www.raspberrypi.com") - ) - (lib_symbols - (symbol "CM5IO:AP3441SHE-7B" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at -6.35 10.16 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "AP3441SHE-7B" - (at 0 7.62 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_DFN_QFN:DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm" - (at 1.27 -7.62 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP3441-L.pdf" - (at 0 -10.16 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "AP3441SHE-7B_0_1" - (rectangle - (start -6.35 6.35) - (end 6.35 -3.81) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "AP3441SHE-7B_1_1" - (pin passive line - (at -8.89 5.08 0) - (length 2.54) - (name "FB" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at -8.89 2.54 0) - (length 2.54) - (name "PG" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 0 0) - (length 2.54) - (name "VIN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 -2.54 0) - (length 2.54) - (name "PGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 8.89 -2.54 180) - (length 2.54) - (name "nc" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 8.89 0 180) - (length 2.54) - (name "LX" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 8.89 2.54 180) - (length 2.54) - (name "EN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 8.89 5.08 180) - (length 2.54) - (name "SGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 1.27 -6.35 90) - (length 2.54) - (name "PAD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "CM5IO:ASEK-32.768KHZ-L-R-T" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at -5.08 6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "ASEK-32.768KHZ-L-R-T" - (at 0 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" - (at 1.27 -8.89 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://abracon.com/Oscillators/ASEK.pdf" - (at 0 -11.43 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "ASEK-32.768KHZ-L-R-T_0_1" - (rectangle - (start -6.35 5.08) - (end 6.35 -5.08) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "ASEK-32.768KHZ-L-R-T_1_1" - (pin input line - (at -8.89 3.81 0) - (length 2.54) - (name "EN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 -3.81 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 8.89 -3.81 180) - (length 2.54) - (name "Out" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 8.89 3.81 180) - (length 2.54) - (name "VDD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "CM5IO:Bus_M.2_Socket_M" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "J" - (at -22.86 46.99 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "Bus_M.2_Socket_M" - (at 30.988 46.99 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 26.67 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 0 26.67 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "M.2 Socket 3 Mechanical Key M" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "M2 NGNF PCI-E" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "*M*2*M*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "Bus_M.2_Socket_M_0_1" - (rectangle - (start -22.86 45.72) - (end 22.86 -45.72) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - ) - (symbol "Bus_M.2_Socket_M_1_1" - (pin power_in line - (at -20.32 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 25.4 -10.16 180) - (length 2.54) - (name "DAS/~{DSS}/~{LED1}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 0 0) - (length 2.54) - (name "PERn3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -3.81 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 2.54 0) - (length 2.54) - (name "PERp3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -1.27 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -12.7 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 1.27 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 5.08 0) - (length 2.54) - (name "PETn2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 3.81 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 7.62 0) - (length 2.54) - (name "PETp2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 2.54 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -10.16 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "21" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 5.08 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "22" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 10.16 0) - (length 2.54) - (name "PERn2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "23" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 7.62 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "24" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 12.7 0) - (length 2.54) - (name "PERp2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "25" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 10.16 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "26" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -7.62 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "27" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 12.7 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "28" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 15.24 0) - (length 2.54) - (name "PETn1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "29" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -17.78 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 15.24 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "30" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 17.78 0) - (length 2.54) - (name "PETp1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "31" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 17.78 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "32" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -5.08 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "33" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 20.32 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "34" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 20.32 0) - (length 2.54) - (name "PERn1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "35" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 22.86 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "36" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 22.86 0) - (length 2.54) - (name "PERp1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "37" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 -22.86 0) - (length 2.54) - (name "DEVSLP" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "38" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -2.54 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "39" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -6.35 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 25.4 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "40" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 25.4 0) - (length 2.54) - (name "PETn0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "41" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 27.94 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "42" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 27.94 0) - (length 2.54) - (name "PETp0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "43" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 30.48 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "44" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "45" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 33.02 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "46" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 30.48 0) - (length 2.54) - (name "PERn0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "47" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 35.56 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "48" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 33.02 0) - (length 2.54) - (name "PERp0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "49" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 -5.08 0) - (length 2.54) - (name "PETn3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 43.18 0) - (length 2.54) - (name "~{PERST}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "50" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "51" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -25.4 40.64 0) - (length 2.54) - (name "~{CLKREQ}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "52" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 -38.1 0) - (length 2.54) - (name "REFCLKn" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "53" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -25.4 38.1 0) - (length 2.54) - (name "~{PEWAKE}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "54" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 -35.56 0) - (length 2.54) - (name "REFCLKp" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "55" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 38.1 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "56" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 5.08 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "57" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 40.64 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "58" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 -2.54 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 -5.08 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "67" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 25.4 -27.94 180) - (length 2.54) - (name "SUSCLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "68" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -20.32 180) - (length 2.54) - (name "PEDET" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "69" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 -2.54 0) - (length 2.54) - (name "PETp3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 6.35 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "70" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 7.62 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "71" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 8.89 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "72" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 10.16 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "73" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 11.43 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "74" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 12.7 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "75" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 0 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -15.24 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -39.37 180) - (length 2.54) - (name "GND2230" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "M1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -36.83 180) - (length 2.54) - (name "GND2242" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "M2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -34.29 180) - (length 2.54) - (name "GND2260" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "M3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -31.75 180) - (length 2.54) - (name "GND2280" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "M4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -41.91 180) - (length 2.54) - (name "S1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "S1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -44.45 180) - (length 2.54) - (name "S2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "S2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "CM5IO:M.2_Screw" - (pin_numbers hide) - (pin_names - (offset 0) hide) - (exclude_from_sim no) - (in_bom yes) - (on_board no) - (property "Reference" "M" - (at -0.254 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "M.2 Screw" - (at 0.254 -8.636 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "M.2_Screw_0_1" - (polyline - (pts - (xy -5.08 0) (xy -5.08 -6.35) (xy -3.81 -6.35) (xy -3.81 -5.08) (xy -2.54 -5.08) (xy -2.54 -2.54) - (xy -1.27 -2.54) (xy -1.27 -5.08) (xy 0 -5.08) (xy 0 -2.54) (xy 1.27 -1.27) (xy 2.54 -2.54) (xy 3.81 -1.27) - (xy 5.08 -2.54) (xy 6.35 -1.27) (xy 6.35 1.27) (xy 5.08 2.54) (xy 3.81 1.27) (xy 2.54 2.54) (xy 1.27 1.27) - (xy 0 2.54) (xy 0 5.08) (xy -1.27 5.08) (xy -1.27 2.54) (xy -2.54 2.54) (xy -2.54 5.08) (xy -3.81 5.08) - (xy -3.81 6.35) (xy -5.08 6.35) (xy -5.08 0) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - ) - (symbol "CM5IO:SolderNut" - (pin_numbers hide) - (pin_names - (offset 0) hide) - (exclude_from_sim yes) - (in_bom yes) - (on_board no) - (property "Reference" "M" - (at -6.35 -3.556 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "M.2 Solder Nut" - (at 0.254 -5.842 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "SolderNut_0_1" - (circle - (center 0 0) - (radius 2.8398) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 0 0) - (radius 4.0161) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - ) - (symbol "Connector:TestPoint" - (pin_numbers hide) - (pin_names - (offset 0.762) hide) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "TP" - (at 0 6.858 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "TestPoint" - (at 0 5.08 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 5.08 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "~" - (at 5.08 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "test point" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "test point tp" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "Pin* Test*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "TestPoint_0_1" - (circle - (center 0 3.302) - (radius 0.762) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "TestPoint_1_1" - (pin passive line - (at 0 0 90) - (length 2.54) - (name "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "Device:C" - (pin_numbers hide) - (pin_names - (offset 0.254) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "C" - (at 0.635 2.54 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "C" - (at 0.635 -2.54 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0.9652 -3.81 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "~" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "cap capacitor" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "C_*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "C_0_1" - (polyline - (pts - (xy -2.032 -0.762) (xy 2.032 -0.762) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.032 0.762) (xy 2.032 0.762) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "C_1_1" - (pin passive line - (at 0 3.81 270) - (length 2.794) - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -3.81 90) - (length 2.794) - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "Device:L" - (pin_numbers hide) - (pin_names - (offset 1.016) hide) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "L" - (at -1.27 0 90) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "L" - (at 1.905 0 90) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "~" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Inductor" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "inductor choke coil reactor magnetic" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "L_0_1" - (arc - (start 0 -2.54) - (mid 0.6323 -1.905) - (end 0 -1.27) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 -1.27) - (mid 0.6323 -0.635) - (end 0 0) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 0) - (mid 0.6323 0.635) - (end 0 1.27) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 1.27) - (mid 0.6323 1.905) - (end 0 2.54) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "L_1_1" - (pin passive line - (at 0 3.81 270) - (length 1.27) - (name "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -3.81 90) - (length 1.27) - (name "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "Device:LED" - (pin_numbers hide) - (pin_names - (offset 1.016) hide) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "D" - (at 0 2.54 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "LED" - (at 0 -2.54 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "~" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Light emitting diode" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "LED diode" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "LED_0_1" - (polyline - (pts - (xy -1.27 -1.27) (xy -1.27 1.27) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 0) (xy 1.27 0) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "LED_1_1" - (pin passive line - (at -3.81 0 0) - (length 2.54) - (name "K" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 3.81 0 180) - (length 2.54) - (name "A" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "Device:R" - (pin_numbers hide) - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "R" - (at 2.032 0 90) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "R" - (at 0 0 90) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at -1.778 0 90) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "~" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Resistor" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "R res resistor" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "R_*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "R_0_1" - (rectangle - (start -1.016 -2.54) - (end 1.016 2.54) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "R_1_1" - (pin passive line - (at 0 3.81 270) - (length 1.27) - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -3.81 90) - (length 1.27) - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "power:GND" - (power) - (pin_numbers hide) - (pin_names - (offset 0) hide) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "#PWR" - (at 0 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 0 -3.81 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "global power" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "GND_0_1" - (polyline - (pts - (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "GND_1_1" - (pin power_in line - (at 0 0 270) - (length 0) - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - ) - (junction - (at 156.21 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "0971a76b-ec1e-43c1-90b8-b249db271ec7") - ) - (junction - (at 170.18 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "0ced7422-ae88-4357-a59f-4cdb20b23b55") - ) - (junction - (at 55.88 167.64) - (diameter 0) - (color 0 0 0 0) - (uuid "14d7e276-be5c-46fa-a2a0-c79d90e09388") - ) - (junction - (at 119.38 175.26) - (diameter 1.016) - (color 0 0 0 0) - (uuid "15473da7-af57-4106-a34d-d44746d11ae7") - ) - (junction - (at 143.51 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "1d4530c5-b77a-453b-b371-503bcccb69b0") - ) - (junction - (at 171.45 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "27192e75-e5ee-4503-b13c-a8b5580cfe9c") - ) - (junction - (at 165.1 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "37790feb-921f-4e9e-baa9-a10ad25c8a76") - ) - (junction - (at 109.22 167.64) - (diameter 0) - (color 0 0 0 0) - (uuid "3fda8585-7ce9-46c0-99aa-64ed056d72e6") - ) - (junction - (at 158.75 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "443c2730-3ed3-49fd-a3c1-794abfdd5cbc") - ) - (junction - (at 153.67 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "46b0129a-5437-4e8f-981e-582db5e309b4") - ) - (junction - (at 46.99 167.64) - (diameter 0) - (color 0 0 0 0) - (uuid "47d4907a-b39f-4110-8215-1c89dfb13984") - ) - (junction - (at 173.99 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "4c1636ab-519d-4add-a9d4-5ecf108d12bc") - ) - (junction - (at 132.08 167.64) - (diameter 0) - (color 0 0 0 0) - (uuid "508593b6-6d74-460c-aa04-954ccfc932f3") - ) - (junction - (at 88.9 165.1) - (diameter 0) - (color 0 0 0 0) - (uuid "511a8176-7e3a-4b78-b703-c3a3c65921f5") - ) - (junction - (at 38.1 167.64) - (diameter 0) - (color 0 0 0 0) - (uuid "54b1991d-22c0-4fb7-bbf5-6e1f86126557") - ) - (junction - (at 154.94 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "55bc9f1f-35c9-4b1d-889c-bb035aa4ebdc") - ) - (junction - (at 142.24 167.64) - (diameter 0) - (color 0 0 0 0) - (uuid "56ad845a-0197-43a5-be30-d075433519c9") - ) - (junction - (at 186.69 121.92) - (diameter 0) - (color 0 0 0 0) - (uuid "6dcf5054-4020-4661-9a77-9594e744dd12") - ) - (junction - (at 186.69 116.84) - (diameter 0) - (color 0 0 0 0) - (uuid "70b059f5-1d7b-49a0-862c-1a2d56fd6cb1") - ) - (junction - (at 166.37 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "7ac63ee2-4eec-400e-92da-71d382bc7b1c") - ) - (junction - (at 146.05 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "7c8c86cc-fccd-4fb7-b41c-7a33e61ce7d2") - ) - (junction - (at 152.4 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "7f1156db-d3a8-4f9f-85c3-f6126b44442d") - ) - (junction - (at 163.83 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "823ff6e9-08cf-4985-8488-c93f856f3055") - ) - (junction - (at 148.59 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "8cabe10a-b258-49c2-b552-2c104af11c18") - ) - (junction - (at 167.64 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "963fbae9-9f79-4801-ab62-ad5b787b8b9c") - ) - (junction - (at 109.22 175.26) - (diameter 0) - (color 0 0 0 0) - (uuid "9d34a21d-9426-40ce-a415-f9158b887fc7") - ) - (junction - (at 161.29 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "a56255ff-fde1-4846-8243-66e1f3b5a6cb") - ) - (junction - (at 186.69 124.46) - (diameter 0) - (color 0 0 0 0) - (uuid "a70eba40-59de-41a2-a80a-bf7e9a29519e") - ) - (junction - (at 186.69 114.3) - (diameter 0) - (color 0 0 0 0) - (uuid "aa1d806a-5679-4741-aa9e-3ff034d1f022") - ) - (junction - (at 140.97 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "ae48748c-d4f5-4516-8b91-680bb9f13c51") - ) - (junction - (at 160.02 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "b08885e5-0026-4f55-8da8-df2de2acf945") - ) - (junction - (at 162.56 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "b0e65ee5-b64f-4611-999f-7ddb37fc5f4b") - ) - (junction - (at 186.69 119.38) - (diameter 0) - (color 0 0 0 0) - (uuid "b9111aad-79f3-4be0-80db-033ad9470bf0") - ) - (junction - (at 201.93 74.93) - (diameter 0) - (color 0 0 0 0) - (uuid "d5fad215-1823-4629-bffb-1dbcfea4818c") - ) - (junction - (at 152.4 167.64) - (diameter 0) - (color 0 0 0 0) - (uuid "df738128-05c2-4613-9f93-653a0dd6e0ad") - ) - (junction - (at 172.72 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "e1ae569b-04ed-4f8a-abbe-3e45261b0516") - ) - (junction - (at 151.13 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "e61b95f9-6f19-47f2-98af-7cb953922317") - ) - (junction - (at 119.38 167.64) - (diameter 1.016) - (color 0 0 0 0) - (uuid "ef46fcbf-5e5f-4db4-8d4d-7b6d061ae8f7") - ) - (junction - (at 168.91 128.27) - (diameter 0) - (color 0 0 0 0) - (uuid "fc2e0b6a-82ba-4dc3-a363-ebca8df1df31") - ) - (junction - (at 157.48 27.94) - (diameter 0) - (color 0 0 0 0) - (uuid "ffaf5071-cb25-4b0f-8668-03b64a08abd3") - ) - (no_connect - (at 64.77 165.1) - (uuid "09887fa5-743e-48b7-8eb6-70c53e96058f") - ) - (no_connect - (at 135.89 80.01) - (uuid "0c481a8e-9404-4b57-b88a-d97f5efb08bc") - ) - (no_connect - (at 135.89 85.09) - (uuid "0e5865dc-2e8d-4dcc-9438-bbd68c381481") - ) - (no_connect - (at 135.89 72.39) - (uuid "13bbd062-edf6-4520-98b8-a547fc36fb28") - ) - (no_connect - (at 135.89 82.55) - (uuid "2c17355d-c7cd-4b60-9acc-c75faccf353e") - ) - (no_connect - (at 135.89 57.15) - (uuid "4320e68a-5094-4d74-96dd-46da37aad90b") - ) - (no_connect - (at 135.89 102.87) - (uuid "4c90c256-052e-454c-8be7-de530fe31f02") - ) - (no_connect - (at 135.89 77.47) - (uuid "64e25001-8022-4904-b3d2-832fa09499c6") - ) - (no_connect - (at 186.69 100.33) - (uuid "73873f8c-eca6-443f-87d9-1df15bb756ad") - ) - (no_connect - (at 135.89 67.31) - (uuid "73a5dbc3-a0e9-4c78-9847-b201aa4dba42") - ) - (no_connect - (at 135.89 62.23) - (uuid "7d1d4017-f5a7-4ace-ad23-7b71fe265943") - ) - (no_connect - (at 135.89 74.93) - (uuid "86e52e00-5abb-47f5-9f03-7049a06eecce") - ) - (no_connect - (at 135.89 69.85) - (uuid "ee6c213f-a52d-452a-8227-d62136c43d5b") - ) - (no_connect - (at 135.89 64.77) - (uuid "fbc08f32-fd34-4908-8f11-b87ac79a13bb") - ) - (no_connect - (at 135.89 59.69) - (uuid "ffacc6d1-cfb6-4636-8d32-e37ea1f76c6b") - ) - (wire - (pts - (xy 186.69 124.46) (xy 186.69 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "00e0399c-cb25-4111-9343-6a7e92ea1639") - ) - (wire - (pts - (xy 105.41 167.64) (xy 109.22 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "035434ac-78d5-4651-a4bd-038eb8ef9dd0") - ) - (wire - (pts - (xy 140.97 128.27) (xy 143.51 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "04935ee8-85e7-4f06-b2e5-d1f5ea1a7cdc") - ) - (wire - (pts - (xy 167.64 27.94) (xy 170.18 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "04bc3fec-e2c5-4737-ab39-31f36483ee1c") - ) - (wire - (pts - (xy 162.56 27.94) (xy 162.56 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "07dcc1c5-d28b-4d8e-aebb-3e18b73cf55f") - ) - (wire - (pts - (xy 195.58 125.73) (xy 207.01 125.73) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0a5a5006-602f-4d52-a6ae-b4f750673335") - ) - (wire - (pts - (xy 201.93 27.94) (xy 201.93 64.77) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "0da47185-3622-48fd-933c-2ddeee28be32") - ) - (wire - (pts - (xy 109.22 167.64) (xy 119.38 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0fe9dba1-daa1-47a5-b1db-865087136712") - ) - (wire - (pts - (xy 152.4 27.94) (xy 154.94 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "13c868ff-4fa5-494d-8728-b04cc5e40c7d") - ) - (wire - (pts - (xy 173.99 128.27) (xy 171.45 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "14319cb7-ddcc-4dca-b8e7-0dcf8b1d39d7") - ) - (wire - (pts - (xy 123.19 52.07) (xy 135.89 52.07) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "17670acf-9be9-4b32-af2f-addec9b50bb5") - ) - (wire - (pts - (xy 142.24 167.64) (xy 152.4 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "17f4d9a7-c9d5-44e3-821f-99c7021e1907") - ) - (wire - (pts - (xy 88.9 165.1) (xy 88.9 170.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "184735a2-7e29-4dbe-b3a6-c204b3541be2") - ) - (wire - (pts - (xy 152.4 167.64) (xy 162.56 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "18dadd91-f2e9-48fe-adfa-1f5fe1717cab") - ) - (wire - (pts - (xy 124.46 115.57) (xy 135.89 115.57) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "1c6c46b2-dd9e-430f-85e9-621815ceca94") - ) - (wire - (pts - (xy 59.69 162.56) (xy 64.77 162.56) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1ec7ad96-0acd-4c41-8b57-b98ffb8b7b83") - ) - (wire - (pts - (xy 135.89 46.99) (xy 123.19 46.99) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "1f2605ff-0052-4214-ba00-e5f83f987c66") - ) - (wire - (pts - (xy 156.21 128.27) (xy 153.67 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "269d546f-6752-4c69-8daf-ea6933d011e7") - ) - (wire - (pts - (xy 55.88 175.26) (xy 55.88 176.53) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "27b00225-5a81-4eb8-8ef9-b912f938fe63") - ) - (wire - (pts - (xy 154.94 27.94) (xy 157.48 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "28a3f753-e17f-499a-984e-07941eb245db") - ) - (wire - (pts - (xy 186.69 119.38) (xy 186.69 121.92) - ) - (stroke - (width 0) - (type default) - ) - (uuid "28f1a295-621f-41dd-bdf7-f8d4253b54b1") - ) - (wire - (pts - (xy 186.69 121.92) (xy 186.69 124.46) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2e4828a9-a50e-4efa-87c3-283a0db37752") - ) - (wire - (pts - (xy 165.1 27.94) (xy 165.1 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "347a068e-dba2-471e-af6d-375e6719fcad") - ) - (wire - (pts - (xy 123.19 54.61) (xy 135.89 54.61) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "3520b9bf-2dfc-4868-a650-86ff98682e83") - ) - (wire - (pts - (xy 171.45 128.27) (xy 168.91 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "36652005-5266-42c1-b220-777e909c4f0a") - ) - (wire - (pts - (xy 123.19 49.53) (xy 135.89 49.53) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "370b7d32-0d68-4d38-9ef1-c5ebd216c70b") - ) - (wire - (pts - (xy 46.99 167.64) (xy 55.88 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "378c71c9-98bd-419c-ba45-82c6f1b563f5") - ) - (wire - (pts - (xy 201.93 90.17) (xy 201.93 86.36) - ) - (stroke - (width 0) - (type default) - ) - (uuid "387581b1-9119-4cf1-8d3d-67a5cc261455") - ) - (wire - (pts - (xy 172.72 27.94) (xy 201.93 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "38f75849-e334-4a3b-93f1-13803814f7c9") - ) - (wire - (pts - (xy 82.55 165.1) (xy 88.9 165.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "424c0c2e-ebc7-4609-a179-a42d4fc6ba4c") - ) - (wire - (pts - (xy 132.08 167.64) (xy 142.24 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "442d1651-2d75-4f55-aa85-e9db75778ce1") - ) - (wire - (pts - (xy 186.69 116.84) (xy 186.69 119.38) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4c4c6afb-ac35-4671-8499-eb119383026b") - ) - (wire - (pts - (xy 167.64 27.94) (xy 167.64 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4ea0f8d5-614c-42a6-8477-02a075ab7053") - ) - (wire - (pts - (xy 34.29 167.64) (xy 38.1 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4fc16f5b-fc95-49c6-9b00-324b33d63fe2") - ) - (wire - (pts - (xy 186.69 114.3) (xy 186.69 116.84) - ) - (stroke - (width 0) - (type default) - ) - (uuid "513a8070-46e1-4a35-9909-0b205ccc826f") - ) - (wire - (pts - (xy 152.4 167.64) (xy 152.4 168.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "51ec935f-df03-4732-861b-d8e38161f0de") - ) - (wire - (pts - (xy 186.69 128.27) (xy 173.99 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "56789b6d-95a1-4aee-8cf9-b326ab0474a7") - ) - (wire - (pts - (xy 168.91 128.27) (xy 166.37 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "57059c4c-6ab3-4725-b067-dc0884d3d77b") - ) - (wire - (pts - (xy 119.38 167.64) (xy 132.08 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5ce78009-1225-4f4c-858c-c27960c909e1") - ) - (wire - (pts - (xy 152.4 176.53) (xy 152.4 177.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5ec30c0e-26b1-4f16-938e-8d8355dd98d4") - ) - (wire - (pts - (xy 158.75 128.27) (xy 161.29 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "65893007-291c-484b-acdc-7fa4101ea5b0") - ) - (wire - (pts - (xy 166.37 128.27) (xy 163.83 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6c657656-d8ba-4886-91fa-dd24eb342884") - ) - (wire - (pts - (xy 170.18 27.94) (xy 172.72 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "70402240-8a2d-4624-abce-49bf284e1085") - ) - (wire - (pts - (xy 82.55 167.64) (xy 97.79 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "71b421ba-2889-471b-9c52-9c277a97b6b3") - ) - (wire - (pts - (xy 201.93 74.93) (xy 208.28 74.93) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "7820b7b6-18d1-4c8d-9119-bf906b975f88") - ) - (wire - (pts - (xy 238.76 133.35) (xy 224.79 133.35) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7d22aaa7-3a7b-4eea-a956-7b6d040078f1") - ) - (wire - (pts - (xy 157.48 27.94) (xy 160.02 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7d52ba36-9833-473c-bf97-57702b97c41b") - ) - (wire - (pts - (xy 203.2 135.89) (xy 203.2 133.35) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7efcdbda-1322-4422-9d1d-2e859e4997f0") - ) - (wire - (pts - (xy 157.48 27.94) (xy 157.48 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "854bfa82-ce82-46db-9f14-065a43e1179e") - ) - (wire - (pts - (xy 186.69 111.76) (xy 186.69 114.3) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8558cfcf-fda8-4d9f-8bb3-03f093712c0f") - ) - (wire - (pts - (xy 152.4 27.94) (xy 152.4 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "859c5ae3-ce01-45ab-99d8-385d7977e781") - ) - (wire - (pts - (xy 55.88 167.64) (xy 64.77 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8ca1af04-2817-4075-a891-1bb349f15b5d") - ) - (wire - (pts - (xy 88.9 149.86) (xy 88.9 165.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9618bd9a-d82a-4487-ab79-2518aa4951a0") - ) - (wire - (pts - (xy 172.72 27.94) (xy 172.72 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9671ab74-e70a-4a23-ba32-80faea91fcbd") - ) - (wire - (pts - (xy 124.46 118.11) (xy 135.89 118.11) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "981e13d8-2493-4f5a-aa1e-fcc255c235ee") - ) - (wire - (pts - (xy 109.22 175.26) (xy 119.38 175.26) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "986bca06-c2ae-4dc1-a886-0e0bd87e6d0c") - ) - (wire - (pts - (xy 123.19 39.37) (xy 135.89 39.37) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "9c7af13e-949e-4a55-a6b7-45ef51b4f106") - ) - (wire - (pts - (xy 38.1 175.26) (xy 38.1 176.53) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "a07b9bb6-155c-4592-a014-7d730cdba8e4") - ) - (wire - (pts - (xy 123.19 41.91) (xy 135.89 41.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a3da2e4a-5ebb-498f-87e0-3e78c29e6349") - ) - (wire - (pts - (xy 132.08 168.91) (xy 132.08 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a4118b8f-e6bf-4ed6-8b85-0f5ce27a9843") - ) - (wire - (pts - (xy 146.05 128.27) (xy 143.51 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a4ff6458-3879-4531-8766-d5640c1d31c8") - ) - (wire - (pts - (xy 82.55 162.56) (xy 83.82 162.56) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b063086f-18d3-4c50-af5d-145d58a924be") - ) - (wire - (pts - (xy 140.97 128.27) (xy 140.97 129.54) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b2308656-e68b-44b9-b3ae-932dd01e2632") - ) - (wire - (pts - (xy 148.59 128.27) (xy 151.13 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b37ead0c-0ace-485d-82f6-62d5a225f839") - ) - (wire - (pts - (xy 186.69 90.17) (xy 201.93 90.17) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b46bee14-3037-4fb8-8aba-564783a6e32c") - ) - (wire - (pts - (xy 144.78 27.94) (xy 152.4 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b6c82dcb-eea3-4d43-b565-c068f084ae20") - ) - (wire - (pts - (xy 162.56 27.94) (xy 165.1 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b824aa74-0e45-4664-97d9-52b08d36f485") - ) - (wire - (pts - (xy 186.69 107.95) (xy 238.76 107.95) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ba4df60e-8780-4390-a980-5ffd05fbf2a2") - ) - (wire - (pts - (xy 38.1 167.64) (xy 46.99 167.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "bce5afc8-fc5a-4083-9859-a3f31d8b70b5") - ) - (wire - (pts - (xy 233.68 125.73) (xy 224.79 125.73) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c723783e-6e91-4fc0-91c2-63f2171437c3") - ) - (wire - (pts - (xy 142.24 167.64) (xy 142.24 168.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "cab3d586-e276-416d-89b5-bb7083ab5ba3") - ) - (wire - (pts - (xy 163.83 128.27) (xy 161.29 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "cb35b3a9-1204-481c-8624-73ac0f048621") - ) - (wire - (pts - (xy 80.01 149.86) (xy 88.9 149.86) - ) - (stroke - (width 0) - (type default) - ) - (uuid "cd421370-7102-4c4e-a38d-ee4ca207f4bf") - ) - (wire - (pts - (xy 46.99 175.26) (xy 46.99 176.53) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "cf530655-e123-49c1-846a-54a2f7b0b30f") - ) - (wire - (pts - (xy 151.13 128.27) (xy 153.67 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d115daeb-70be-48bc-9d94-73f6228cda15") - ) - (wire - (pts - (xy 156.21 128.27) (xy 158.75 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d2951fad-a0ae-443a-baf5-8717e9457f66") - ) - (wire - (pts - (xy 132.08 177.8) (xy 132.08 176.53) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d3673066-f9de-42bf-b36d-321409ff5a66") - ) - (wire - (pts - (xy 201.93 74.93) (xy 201.93 78.74) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "d38d2c67-87dc-4cd7-a3b4-a8f6e2009ed5") - ) - (wire - (pts - (xy 160.02 27.94) (xy 160.02 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d4b0cccc-10f4-48f5-b455-5881984c5cde") - ) - (wire - (pts - (xy 201.93 74.93) (xy 201.93 72.39) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "d5f76e2c-52ed-4630-a0a9-57d3de6674c1") - ) - (wire - (pts - (xy 162.56 176.53) (xy 162.56 177.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d7040f9b-cd3f-43de-9646-a9568d8faf12") - ) - (wire - (pts - (xy 203.2 133.35) (xy 207.01 133.35) - ) - (stroke - (width 0) - (type default) - ) - (uuid "daf58603-e31d-4fb4-a364-7a52b222a4ed") - ) - (wire - (pts - (xy 233.68 135.89) (xy 233.68 125.73) - ) - (stroke - (width 0) - (type default) - ) - (uuid "db225ff2-9573-411f-91b1-869f88b18fec") - ) - (wire - (pts - (xy 64.77 176.53) (xy 64.77 170.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "de0c6ad6-d043-4995-b4d3-8cf567c06c6a") - ) - (wire - (pts - (xy 162.56 167.64) (xy 162.56 168.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "dff72424-67fd-4224-8366-0d3bed4741f8") - ) - (wire - (pts - (xy 154.94 27.94) (xy 154.94 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e00aa823-4fb8-41a6-b544-ec0d603dc0ff") - ) - (wire - (pts - (xy 142.24 176.53) (xy 142.24 177.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e0555661-e04a-48cf-8b4f-fcd54cfc3e7f") - ) - (wire - (pts - (xy 165.1 27.94) (xy 167.64 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e1de64d0-cea1-451b-888f-0545aa755377") - ) - (wire - (pts - (xy 119.38 176.53) (xy 119.38 175.26) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "e718feae-a0e5-497c-b7ae-f2e120769ce6") - ) - (wire - (pts - (xy 146.05 128.27) (xy 148.59 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ef1bb5af-5dbe-448a-8f40-76c19b2a38b4") - ) - (wire - (pts - (xy 123.19 36.83) (xy 135.89 36.83) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f0bda9a8-995a-4e13-88c2-6877704e3f76") - ) - (wire - (pts - (xy 102.87 175.26) (xy 109.22 175.26) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "f2e439be-a0ba-41f1-8e20-1025b05fd0af") - ) - (wire - (pts - (xy 160.02 27.94) (xy 162.56 27.94) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f38ec79f-61c7-4eba-b204-449cd5f02edc") - ) - (wire - (pts - (xy 170.18 27.94) (xy 170.18 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f45538fc-cb83-42c2-beb6-355b0f40444a") - ) - (wire - (pts - (xy 238.76 107.95) (xy 238.76 133.35) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f5b31f7e-dd5b-4dde-abdc-f3dae27e52ee") - ) - (wire - (pts - (xy 83.82 162.56) (xy 83.82 177.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fb4a4aee-bada-4821-b9c0-35a75be6d2fa") - ) - (text "Activity LED" - (exclude_from_sim no) - (at 205.105 66.675 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "a0007b3b-0955-4d63-b006-1e56367da818") - ) - (label "M2_3v3" - (at 154.94 167.64 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "111611e6-b227-4178-9e95-e3b6e064fa8e") - ) - (label "+5v" - (at 34.29 167.64 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "224d17d6-f687-4cef-8fc7-350a97123817") - ) - (label "FB" - (at 59.69 162.56 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "50891ad8-64da-48d4-8598-2b06a0842af8") - ) - (label "M2_3v3" - (at 224.79 125.73 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "641a8205-95db-4e14-81fb-f8584830e68a") - ) - (label "M2_3v3" - (at 197.485 125.73 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "832aa62d-c4e7-4ee8-bb6b-0bdfe6a8dea8") - ) - (label "M2_3v3" - (at 144.78 27.94 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "c5803adf-2ae5-4045-86a8-05dcadd30360") - ) - (label "FB" - (at 102.87 175.26 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "dd57da68-ffe8-45ec-a455-3fb983eb70f2") - ) - (hierarchical_label "PCIE_RX_N" - (shape output) - (at 123.19 52.07 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "0afc6592-c2db-4caa-a22b-f13f9e7e1c40") - ) - (hierarchical_label "PCIE_CLK_N" - (shape input) - (at 124.46 118.11 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "3f6533ba-c4f9-46fc-b56b-e4570f6ba8d8") - ) - (hierarchical_label "PCIE_TX_P" - (shape input) - (at 123.19 49.53 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "4d759aa0-1145-43ae-a507-a45f6fc89e2a") - ) - (hierarchical_label "PCIE_nCLKREQ" - (shape output) - (at 123.19 39.37 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "4f2de74c-a0a3-419c-86d3-f1056d120362") - ) - (hierarchical_label "PCIE_RX_P" - (shape output) - (at 123.19 54.61 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "62b6b2b3-6ade-4e95-8062-936451a2172f") - ) - (hierarchical_label "PCIE_PWR_EN" - (shape input) - (at 80.01 149.86 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "968f38dd-fdab-400d-be85-99b92d95765f") - ) - (hierarchical_label "PCIE_nWAKE" - (shape output) - (at 123.19 41.91 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "9bcfecd3-0b81-4165-87e5-7f1e560a3e40") - ) - (hierarchical_label "PCIE_TX_N" - (shape input) - (at 123.19 46.99 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "9c8b409b-0d1b-49e5-8fed-acd83e0e8b3e") - ) - (hierarchical_label "PCIE_nRST" - (shape input) - (at 123.19 36.83 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "d0d2152d-05bb-45b9-922c-65dc46f5a5df") - ) - (hierarchical_label "+5v" - (shape input) - (at 34.29 167.64 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "d57623d9-4a24-4864-a77d-b08b296fd337") - ) - (hierarchical_label "PCIE_CLK_P" - (shape input) - (at 124.46 115.57 180) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "f6662114-e94f-4466-8b01-5f4d76363a86") - ) - (symbol - (lib_id "Device:LED") - (at 201.93 68.58 90) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "04dedc07-8588-4675-a3af-604477889888") - (property "Reference" "D3" - (at 204.9018 67.5894 90) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Value" "LED Green" - (at 204.9018 69.9008 90) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "LED_SMD:LED_0603_1608Metric" - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "http://optoelectronics.liteon.com/upload/download/DS22-2000-226/LTST-S270KGKT.pdf" - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Digikey " - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "LTST-S270KGKT" - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "SML-A12M8TT86N" - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Rohm" - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "650263301" - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " Green 572nm LED Indication - Discrete 2.2V 2-SMD, No Lead" - (at 201.93 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "81837322-b40e-4659-a1e6-d664620e3e77") - ) - (pin "2" - (uuid "efefa450-a859-4a54-9cc8-7c20d27be06e") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "D3") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 152.4 172.72 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "05ac92f4-afc5-4889-acdd-9cddeba0376e") - (property "Reference" "C16" - (at 155.321 171.5516 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10u" - (at 155.321 173.863 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" - (at 153.3652 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" - (at 152.4 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 152.4 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Digikey" - (at 152.4 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "490-14381-1-ND" - (at 152.4 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "GRM21BR71A106KA73L" - (at 152.4 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Murata" - (at 152.4 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "111893011" - (at 152.4 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" - (at 152.4 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "1a2a68d9-eca5-42e6-8db9-393c0f77437e") - ) - (pin "2" - (uuid "980f9fea-c31a-4e68-869a-8fb800d858d6") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C16") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 152.4 177.8 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "0b4708b7-9fb6-4972-962c-1018b6427c2f") - (property "Reference" "#PWR018" - (at 152.4 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 152.527 182.1942 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 152.4 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 152.4 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 152.4 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "9ad78c16-3ab5-45e7-a094-0407ba987bfe") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR018") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 46.99 171.45 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "0be8a27b-1e10-4c67-a0ee-02dc30ff42ad") - (property "Reference" "C6" - (at 49.911 170.2816 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10u" - (at 49.911 172.593 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" - (at 47.9552 175.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" - (at 46.99 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 46.99 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Digikey" - (at 46.99 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "490-14381-1-ND" - (at 46.99 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "GRM21BR71A106KA73L" - (at 46.99 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Murata" - (at 46.99 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "111893011" - (at 46.99 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" - (at 46.99 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "8b733c12-9688-4a6f-adb6-5086fb94825c") - ) - (pin "2" - (uuid "7205a4d7-ddd7-4b01-8256-e7b8644e520c") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C6") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Connector:TestPoint") - (at 208.28 74.93 270) - (unit 1) - (exclude_from_sim no) - (in_bom no) - (on_board yes) - (dnp yes) - (uuid "0d6db532-f0dd-4c0d-bf0a-0aec728b6d4b") - (property "Reference" "TP1" - (at 209.55 78.74 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "TestPoint" - (at 207.01 76.835 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "TestPoint:TestPoint_Pad_2.0x2.0mm" - (at 208.28 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 208.28 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 208.28 74.93 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "nf" - (at 208.28 74.93 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "nf" - (at 208.28 74.93 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "nf" - (at 208.28 74.93 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "nf" - (at 208.28 74.93 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Test point" - (at 208.28 74.93 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "e831905a-7b9e-4294-8828-513615b4d74f") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "TP1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 46.99 176.53 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "21c74b08-d586-41a4-9db8-b1913e4eb794") - (property "Reference" "#PWR021" - (at 46.99 182.88 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 47.117 180.9242 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 46.99 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 46.99 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 46.99 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "d850957b-ef65-46b8-bb97-2874a7517070") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR021") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 140.97 129.54 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "2c75d540-dfc9-477c-a6dc-ea2045f017c5") - (property "Reference" "#PWR019" - (at 140.97 135.89 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 141.097 133.9342 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 140.97 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 140.97 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 140.97 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "a5d643fb-79f3-41b4-9207-0f8be170db13") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR019") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 162.56 177.8 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "2e87f8fd-e101-4355-8908-1829e4161471") - (property "Reference" "#PWR024" - (at 162.56 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 162.687 182.1942 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 162.56 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 162.56 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 162.56 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "96692244-a0d9-413a-b924-2d1cf148cc7c") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR024") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 201.93 82.55 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "33ced925-5051-4ed7-9375-b3264bb2d4b3") - (property "Reference" "R17" - (at 203.708 81.3816 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "1k" - (at 203.708 83.693 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric" - (at 200.152 82.55 90) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" - (at 201.93 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 201.93 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 201.93 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "9239235" - (at 201.93 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "KOA EUROPE GMBH" - (at 201.93 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "RK73H1ETTP1001F" - (at 201.93 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Resistor 1K M1005 1% 63mW" - (at 201.93 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "125049511" - (at 201.93 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "c37cfdb4-e075-458a-90b9-2fb9750c6afa") - ) - (pin "2" - (uuid "80a29dd3-dbb3-4999-a110-927476868780") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "R17") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "CM5IO:SolderNut") - (at 257.81 113.03 0) - (unit 1) - (exclude_from_sim yes) - (in_bom yes) - (on_board no) - (dnp no) - (fields_autoplaced yes) - (uuid "3904783f-0d7f-4793-8eb1-9fe3ee2d6303") - (property "Reference" "M3" - (at 262.89 111.7599 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "M.2 Solder Nut" - (at 262.89 114.2999 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 257.81 113.03 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 257.81 113.03 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 257.81 113.03 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Solder nut for M.2 slot" - (at 257.81 113.03 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "M3") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:L") - (at 101.6 167.64 90) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "3afee53c-6d83-4ee8-a733-62dddd2ea052") - (property "Reference" "L1" - (at 101.6 162.814 90) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "2.2uH" - (at 101.6 165.1254 90) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "CM5IO:L_Bourns_SRP5030CC" - (at 101.6 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://www.bourns.com/docs/product-datasheets/srp5030cc.pdf" - (at 101.6 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 101.6 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "SRP5030CC-2R2M" - (at 101.6 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Bourns" - (at 101.6 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Inductor, SMT, 2520, 2u2, IRMS=7A, ISAT=8A, DCR=0.032R" - (at 101.6 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "SRP5030CC-2R2M" - (at 101.6 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "946d2551-c3d2-4566-9244-73e5c2c02c46") - ) - (pin "2" - (uuid "6a052946-3f24-4c43-90d6-cb192b4f2f67") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "L1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 64.77 176.53 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "3de3eb26-9d47-4a7a-8934-99d717f7d96f") - (property "Reference" "#PWR022" - (at 64.77 182.88 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 64.897 180.9242 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 64.77 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 64.77 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 64.77 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "00e0af04-76b5-42fb-be63-00399747e207") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR022") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 119.38 171.45 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "3f72e399-75a8-4c43-bd63-30d4315362cc") - (property "Reference" "R15" - (at 121.158 170.2816 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10K 1%" - (at 121.158 172.593 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric" - (at 117.602 171.45 90) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" - (at 119.38 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 119.38 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 119.38 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "" - (at 119.38 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Rohm" - (at 119.38 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "MCR01MZPF1002" - (at 119.38 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Resistor 10K M1005 1% 63mW" - (at 119.38 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "64724efb-1b56-481b-9a94-34ecb9e23e36") - ) - (pin "2" - (uuid "0d25fe58-1dd3-4136-b71d-526858a6980a") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "R15") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 233.68 139.7 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "49cfd4a6-e2a1-4e07-9096-0f3542c131a8") - (property "Reference" "C19" - (at 236.601 138.5316 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100n" - (at 236.601 140.843 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" - (at 234.6452 143.51 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" - (at 233.68 139.7 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 233.68 139.7 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 233.68 139.7 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "2611911" - (at 233.68 139.7 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "RM EMK105 B7104KV-F" - (at 233.68 139.7 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "TAIYO YUDEN EUROPE GMBH" - (at 233.68 139.7 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "110091611" - (at 233.68 139.7 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" - (at 233.68 139.7 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "c1baf9bc-ae1f-4a36-81a6-465048786f00") - ) - (pin "2" - (uuid "e086f3d8-34fd-4513-a921-93d0a4961130") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C19") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 88.9 173.99 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "5175732d-f2ae-476a-b259-4f2485b2f1ef") - (property "Reference" "R14" - (at 90.17 175.895 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100K 1%" - (at 90.17 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric" - (at 87.122 173.99 90) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" - (at 88.9 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 88.9 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 88.9 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "" - (at 88.9 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "MCR01MZPF1003" - (at 88.9 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Rohm" - (at 88.9 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Resistor 100K M1005 1% 63mW" - (at 88.9 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "" - (at 88.9 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "f4c539de-bc1a-4b33-9180-cc85871167ab") - ) - (pin "2" - (uuid "4e8987da-8d8f-44f0-a616-6be1dcddad09") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "R14") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 119.38 180.34 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "518da8b8-8528-40ea-8092-65cf642145c5") - (property "Reference" "R16" - (at 121.158 179.1716 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "2.2K 1%" - (at 121.158 181.483 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric" - (at 117.602 180.34 90) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" - (at 119.38 180.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 119.38 180.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 119.38 180.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "" - (at 119.38 180.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "" - (at 119.38 180.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Resistor 2.2K M1005 1% 63mW" - (at 119.38 180.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "e8bf4dc9-8e1f-434b-9280-c08e046d520f") - ) - (pin "2" - (uuid "bd6e1f29-92d8-4492-aa70-50ce3b078dcd") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "R16") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "CM5IO:ASEK-32.768KHZ-L-R-T") - (at 215.9 129.54 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (fields_autoplaced yes) - (uuid "52312e93-13e5-46ce-8d2f-9f8d631041e0") - (property "Reference" "U7" - (at 215.9 120.015 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "ASEK-32.768KHZ-L-R-T" - (at 215.9 122.555 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" - (at 217.17 138.43 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://abracon.com/Oscillators/ASEK.pdf" - (at 215.9 140.97 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 215.9 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "ASEK-32.768KHZ-L-R-T" - (at 215.9 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "ASEK-32.768KHZ-L-R-T" - (at 215.9 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "abracon" - (at 215.9 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "32KHz Xtal oscilator" - (at 215.9 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "2" - (uuid "70f6f11c-63a7-44e8-8b7f-df76451da3be") - ) - (pin "4" - (uuid "1f6153ba-6420-41d2-a79b-901c17f430b4") - ) - (pin "3" - (uuid "df1b07fc-7957-401c-8ba9-cdc7c60da99c") - ) - (pin "1" - (uuid "e44c80b6-e9af-4b4c-b09e-3508ad63877a") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "U7") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 38.1 171.45 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "59eb5aa6-7ca6-4f1b-b057-0d4de79fcc06") - (property "Reference" "C4" - (at 41.021 170.2816 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10u" - (at 41.021 172.593 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" - (at 39.0652 175.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" - (at 38.1 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 38.1 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Digikey" - (at 38.1 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "490-14381-1-ND" - (at 38.1 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "GRM21BR71A106KA73L" - (at 38.1 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Murata" - (at 38.1 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "111893011" - (at 38.1 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" - (at 38.1 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "cfafd1af-90d8-46cc-8d21-f3d0f46f44a0") - ) - (pin "2" - (uuid "c6750fad-f235-4e26-860d-7fc2a786b7ba") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C4") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "CM5IO:AP3441SHE-7B") - (at 73.66 167.64 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (fields_autoplaced yes) - (uuid "5c664c96-7c36-411e-8bbd-30cfb6a7d05b") - (property "Reference" "U8" - (at 73.66 156.21 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "AP3441SHE-7B" - (at 73.66 158.75 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_DFN_QFN:DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm" - (at 74.93 175.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP3441-L.pdf" - (at 73.66 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 73.66 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "AP3441SHE-7B" - (at 73.66 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "AP3441SHE-7B" - (at 73.66 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Diodes" - (at 73.66 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "3A DC-DC converter" - (at 73.66 167.64 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "8" - (uuid "5d119044-c444-42ee-a69e-134a5302cdbc") - ) - (pin "2" - (uuid "5e880668-8841-4c57-9a2b-f1520c59d6c8") - ) - (pin "7" - (uuid "b246a20e-613d-4f15-8c74-3d32f62beb6e") - ) - (pin "4" - (uuid "15e0b33b-aa8b-41af-b3ba-3e84ccbc498b") - ) - (pin "1" - (uuid "a42d59d6-9672-4478-bd09-80c332336f91") - ) - (pin "3" - (uuid "905ad43a-b0ed-4d8a-8878-34fe58cf01b4") - ) - (pin "6" - (uuid "29a680bc-06af-4cc7-828f-6bc7f6bdc188") - ) - (pin "5" - (uuid "6a03e013-2f4e-433c-a9c9-521410fdb149") - ) - (pin "9" - (uuid "e3fce8cf-9bf4-4cca-b3bb-f57c7e9f031c") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "U8") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 55.88 171.45 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "5dfa2014-f34d-44be-9162-e0ecc482a5f0") - (property "Reference" "C10" - (at 58.801 170.2816 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100n" - (at 58.801 172.593 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" - (at 56.8452 175.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" - (at 55.88 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 55.88 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 55.88 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "2611911" - (at 55.88 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "RM EMK105 B7104KV-F" - (at 55.88 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "TAIYO YUDEN EUROPE GMBH" - (at 55.88 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "110091611" - (at 55.88 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" - (at 55.88 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "bf3649ee-6c06-4953-abda-cb7012a3e139") - ) - (pin "2" - (uuid "87700fc7-eb00-47b3-8c16-963505eb448d") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C10") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 132.08 172.72 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "604c2dfc-65d0-41e3-9107-da96cfdf155b") - (property "Reference" "C14" - (at 135.001 171.5516 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10u" - (at 135.001 173.863 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" - (at 133.0452 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" - (at 132.08 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 132.08 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Digikey" - (at 132.08 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "490-14381-1-ND" - (at 132.08 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "GRM21BR71A106KA73L" - (at 132.08 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Murata" - (at 132.08 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "111893011" - (at 132.08 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" - (at 132.08 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "72bdd7a0-9daa-4b3f-b8a1-58e59f07c11d") - ) - (pin "2" - (uuid "41a9102c-abc0-41a0-9399-eaea2f30cafc") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C14") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 38.1 176.53 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "6b3f6bf9-344c-419c-87d3-8db521a30ec1") - (property "Reference" "#PWR020" - (at 38.1 182.88 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 38.227 180.9242 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 38.1 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 38.1 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 38.1 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "e9dc263b-a168-4fa4-9ac7-f8993bf4b62d") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR020") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 88.9 177.8 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "85ced207-2b07-4443-87f5-a514239878a2") - (property "Reference" "#PWR08" - (at 88.9 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 89.027 182.1942 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 88.9 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 88.9 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 88.9 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "d086e77d-3cf0-4cb4-a735-4f70fe9348ef") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR08") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 119.38 184.15 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "89cc5f26-0360-4e40-b310-5b83f3cfe896") - (property "Reference" "#PWR016" - (at 119.38 190.5 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 119.507 188.5442 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 119.38 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 119.38 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 119.38 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "c37e2b69-1797-46e8-9901-1298b3e7a0a5") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR016") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "CM5IO:M.2_Screw") - (at 260.35 142.24 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board no) - (dnp no) - (fields_autoplaced yes) - (uuid "91a6e385-8577-49eb-b867-1861d45af64f") - (property "Reference" "M1" - (at 267.97 140.9699 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "M.2 Screw" - (at 267.97 143.5099 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 260.35 142.24 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 260.35 142.24 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 260.35 142.24 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "M.2 Screw" - (at 260.35 142.24 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "M1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 83.82 177.8 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "941776e4-7428-4368-abee-207de271bd46") - (property "Reference" "#PWR023" - (at 83.82 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 83.947 182.1942 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 83.82 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 83.82 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 83.82 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "9b42fc83-cfae-446f-b6e0-eeda880803ca") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR023") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 109.22 171.45 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "96e70b84-5816-4e46-b34d-08055049da47") - (property "Reference" "C11" - (at 112.141 170.2816 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "4.7nF" - (at 112.141 172.593 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" - (at 110.1852 175.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "~" - (at 109.22 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 109.22 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "4.7nF capacitor 0402" - (at 109.22 171.45 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "1315c287-850c-4b9e-baa6-144fa435d756") - ) - (pin "2" - (uuid "809b41b9-0002-4e7e-916f-6b0f197f7a2e") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C11") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "CM5IO:SolderNut") - (at 257.81 100.33 0) - (unit 1) - (exclude_from_sim yes) - (in_bom yes) - (on_board no) - (dnp no) - (fields_autoplaced yes) - (uuid "9cb03503-7593-4624-99a4-78d3c087fff9") - (property "Reference" "M4" - (at 262.89 99.0599 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "M.2 Solder Nut" - (at 262.89 101.5999 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 257.81 100.33 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 257.81 100.33 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 257.81 100.33 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Solder nut for M.2 slot" - (at 257.81 100.33 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "M4") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 142.24 177.8 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "ba4363bc-6240-45c0-9e50-bd531b9c58d5") - (property "Reference" "#PWR015" - (at 142.24 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 142.367 182.1942 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 142.24 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 142.24 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 142.24 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "6d5b328d-950c-4253-b960-c052c01b73c0") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR015") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "CM5IO:SolderNut") - (at 257.81 87.63 0) - (unit 1) - (exclude_from_sim yes) - (in_bom yes) - (on_board no) - (dnp no) - (fields_autoplaced yes) - (uuid "be9d4b43-843e-4249-a36f-5a0db4337599") - (property "Reference" "M5" - (at 262.89 86.3599 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "M.2 Solder Nut" - (at 262.89 88.8999 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 257.81 87.63 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 257.81 87.63 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 257.81 87.63 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Solder nut for M.2 slot" - (at 257.81 87.63 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "M5") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 74.93 173.99 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "c152f6ff-c78e-4aa6-88d9-e9f11f3334a3") - (property "Reference" "#PWR028" - (at 74.93 180.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 75.057 178.3842 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 74.93 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 74.93 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 74.93 173.99 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "6ce8156e-29f2-4b39-8a77-c65420563887") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR028") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 142.24 172.72 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "c75569f8-e083-4852-bdc3-f66c84061f35") - (property "Reference" "C15" - (at 145.161 171.5516 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10u" - (at 145.161 173.863 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" - (at 143.2052 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" - (at 142.24 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 142.24 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Digikey" - (at 142.24 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "490-14381-1-ND" - (at 142.24 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "GRM21BR71A106KA73L" - (at 142.24 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Murata" - (at 142.24 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "111893011" - (at 142.24 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" - (at 142.24 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "5e1fd3ca-78c4-4c28-9eeb-489941c8616d") - ) - (pin "2" - (uuid "4c80af60-eb8d-435e-a7da-f62344c0189e") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C15") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 233.68 143.51 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "cbd6bbea-b0a5-47c4-9878-cef42d28181f") - (property "Reference" "#PWR025" - (at 233.68 149.86 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 233.807 147.9042 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 233.68 143.51 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 233.68 143.51 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 233.68 143.51 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "ccf2906c-920b-4751-aada-e64ab481715c") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR025") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "CM5IO:Bus_M.2_Socket_M") - (at 161.29 80.01 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "d23f5dbc-759a-43d4-bd39-1b05cee6022e") - (property "Reference" "J4" - (at 138.684 32.512 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "Bus_M.2_Socket_M" - (at 175.006 32.766 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "CM5IO:M.2 M Key socket" - (at 161.29 53.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 161.29 53.34 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "M.2 Socket 3 Mechanical Key M" - (at 161.29 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "MTSSD03-67MSW337" - (at 161.29 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "MTSSD03-67MSW337" - (at 161.29 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "MTCONN" - (at 161.29 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "M.2 M Key connector" - (at 161.29 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "dccfb4de-a1e6-403e-a8d6-a0e4aac1fb98") - ) - (pin "10" - (uuid "341fda35-39cf-4ce1-86e8-5988e170997b") - ) - (pin "11" - (uuid "c9d8e3e5-db6d-43f4-9a25-3e0216f7b208") - ) - (pin "12" - (uuid "496a6638-088b-4418-907c-ebad9c9702ec") - ) - (pin "13" - (uuid "ae72cb38-1eec-4ebb-bd44-3be409c7456d") - ) - (pin "14" - (uuid "18919edf-dcb9-456f-b7f5-3ce4b0b01464") - ) - (pin "15" - (uuid "cf5de2bc-bd5f-4889-8006-7a243fff6690") - ) - (pin "16" - (uuid "c3502382-f6c0-4df3-8e53-16e18a36363d") - ) - (pin "17" - (uuid "e6e2d4e6-6a46-4f76-a4f8-ab16af098f10") - ) - (pin "18" - (uuid "825758ac-36d2-4b56-94c0-37732edc027a") - ) - (pin "19" - (uuid "9d7d2a20-b62f-44ce-857e-dabae7aa065c") - ) - (pin "2" - (uuid "2cecda96-8fc5-40d2-a9f4-ae1444adbd06") - ) - (pin "20" - (uuid "f93f4a28-a297-44da-a293-cecf89a0b305") - ) - (pin "21" - (uuid "5fd3d554-ed83-4c24-b810-276943514cce") - ) - (pin "22" - (uuid "f9664bca-2020-4220-852d-b0d9321a2077") - ) - (pin "23" - (uuid "dca71cb7-4719-4de8-b90f-d3affcf84d61") - ) - (pin "24" - (uuid "549a76af-936f-491c-8649-e6242f08e32e") - ) - (pin "25" - (uuid "d6486005-ec54-4549-b1dc-7aad52b2c1d7") - ) - (pin "26" - (uuid "ad41891f-8a80-42c7-b727-27b8536670ab") - ) - (pin "27" - (uuid "31131cd3-5257-49be-9d32-e38d74fe807f") - ) - (pin "28" - (uuid "3be45dc1-e9dd-4d20-9088-62d24034e871") - ) - (pin "29" - (uuid "58b5d056-e739-430b-9540-a9692fb727bb") - ) - (pin "3" - (uuid "b3545195-cd78-4d04-9775-6d281b80ccf5") - ) - (pin "30" - (uuid "64c2d744-6ecc-4cfb-9fc1-1d0e1a2e98aa") - ) - (pin "31" - (uuid "412352cb-5e2e-4f55-af38-968b89fe3122") - ) - (pin "32" - (uuid "d6f84625-c5ca-4502-b7d8-d30eb87278f7") - ) - (pin "33" - (uuid "8e7e4dc3-ae83-4f97-85d0-fce85b73ed67") - ) - (pin "34" - (uuid "91efe822-534b-4bc8-873d-547d147deff9") - ) - (pin "35" - (uuid "7b378b2e-4950-423f-a7ba-8766abda2ce5") - ) - (pin "36" - (uuid "77a11cec-5da8-4958-9522-c1af14b22302") - ) - (pin "37" - (uuid "a7d34dd4-d0c1-4bf5-8992-c84da7c4326b") - ) - (pin "38" - (uuid "9c01d9c3-c31f-43f7-a5b1-9cda8a58ada0") - ) - (pin "39" - (uuid "b8837052-544c-44c9-899b-d99038e24acd") - ) - (pin "4" - (uuid "43f8ab75-4cad-4215-9397-e7f3fedd9469") - ) - (pin "40" - (uuid "817f410d-974d-4c97-b2b8-dbf67470b467") - ) - (pin "41" - (uuid "5e077c85-3ef5-46f4-92fb-33b585e45c90") - ) - (pin "42" - (uuid "f041ab97-6ff0-4edb-b323-864734e8a54f") - ) - (pin "43" - (uuid "7560f081-cac3-4ff1-b211-3754c326e51f") - ) - (pin "44" - (uuid "db303a23-faa4-4969-b427-2262b0e3ed0b") - ) - (pin "45" - (uuid "6e610de8-b066-440c-a85f-b40f4b471c52") - ) - (pin "46" - (uuid "2cb143ea-495f-4b7b-9e0d-ae4dc8152a14") - ) - (pin "47" - (uuid "f0658fd1-4029-4f3a-bdf3-26049864d8bf") - ) - (pin "48" - (uuid "186c6480-6147-4ab5-b289-7ed880ece2de") - ) - (pin "49" - (uuid "d4d3e10d-7971-4d8b-9819-737d79e5925d") - ) - (pin "5" - (uuid "610857bc-0671-4bca-adf2-b98fab2e4eef") - ) - (pin "50" - (uuid "50b1ac80-f41d-485e-9b27-0618309e0fff") - ) - (pin "51" - (uuid "92d0989a-1a9a-4339-9ead-f8a5ac6f5215") - ) - (pin "52" - (uuid "2e48434e-decc-4937-ac3f-49ee171b1b66") - ) - (pin "53" - (uuid "2de06acb-b686-4367-8eac-b95ad97e5905") - ) - (pin "54" - (uuid "d89b8364-b216-4384-9f54-4111e4178dda") - ) - (pin "55" - (uuid "f223cb8d-1e60-4a80-984b-d5a0be14182f") - ) - (pin "56" - (uuid "7dd77fb2-5377-454c-a412-9dcd1c01730d") - ) - (pin "57" - (uuid "6f366854-684f-47a6-a017-f1ce4bf04096") - ) - (pin "58" - (uuid "66e9a4ba-0ecd-48b0-9762-e6f9568f6c1f") - ) - (pin "6" - (uuid "4fcf4522-7112-43ea-a073-668b5152ac15") - ) - (pin "67" - (uuid "42c53b49-c1ae-4b57-b1ab-2dfae584abee") - ) - (pin "68" - (uuid "e2287649-fd3a-4f25-89da-678e6dffa848") - ) - (pin "69" - (uuid "7afde20f-5ef1-461f-8353-204603c8afa0") - ) - (pin "7" - (uuid "4eecdd38-33c7-4c08-a245-e19dcb0423f9") - ) - (pin "70" - (uuid "1573805a-7130-4060-bf7c-7fa8ff481fe6") - ) - (pin "71" - (uuid "2f26c7b8-99dd-4e8f-9ffe-953badd6fa04") - ) - (pin "72" - (uuid "a265392d-7a62-474b-8d7d-9af9e68b76cc") - ) - (pin "73" - (uuid "9ffcfc54-56c0-456c-b9f8-f4684519bbf8") - ) - (pin "74" - (uuid "c5297dec-1611-4059-972c-9e32806c9338") - ) - (pin "75" - (uuid "978866f9-c891-40c2-a1aa-730dfa04b5f4") - ) - (pin "8" - (uuid "8c0c9fdd-3545-4d74-adff-530bb414e929") - ) - (pin "9" - (uuid "84be935f-0185-4e1c-80cc-a068f065382e") - ) - (pin "S1" - (uuid "3b642b7d-c275-43a2-bf11-9923e1ff24f7") - ) - (pin "S2" - (uuid "4031fade-8b67-44e9-b25e-70f4071cafb0") - ) - (pin "M2" - (uuid "4f98c9b4-d244-40ff-b161-3580bc37fd23") - ) - (pin "M1" - (uuid "76938e52-0b8d-4ad2-beb1-3a61b89b78f5") - ) - (pin "M3" - (uuid "33444c48-3dc3-4586-8e06-fd4f8a74adfa") - ) - (pin "M4" - (uuid "0cdac0cb-685c-4aed-9a00-aec9cd64133a") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "J4") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 55.88 176.53 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "d62198dc-a4f4-46c2-b169-cf11dd39d658") - (property "Reference" "#PWR014" - (at 55.88 182.88 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 56.007 180.9242 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 55.88 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 55.88 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 55.88 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "837db394-ffbe-4bed-b227-2e57efdc97bb") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR014") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "CM5IO:SolderNut") - (at 257.81 125.73 0) - (unit 1) - (exclude_from_sim yes) - (in_bom yes) - (on_board no) - (dnp no) - (fields_autoplaced yes) - (uuid "d724fbc1-c3ee-40a2-95fb-70b7601b787f") - (property "Reference" "M2" - (at 262.89 124.4599 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "M.2 Solder Nut" - (at 262.89 126.9999 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 257.81 125.73 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 257.81 125.73 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 257.81 125.73 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Solder nut for M.2 slot" - (at 257.81 125.73 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "M2") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 162.56 172.72 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "e09bbf7f-fc97-4ba3-a424-8e5e7046c73f") - (property "Reference" "C17" - (at 165.481 171.5516 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10u" - (at 165.481 173.863 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" - (at 163.5252 176.53 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM21BR71A106KA73-01.pdf" - (at 162.56 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 162.56 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Digikey" - (at 162.56 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "490-14381-1-ND" - (at 162.56 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "GRM21BR71A106KA73L" - (at 162.56 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "Murata" - (at 162.56 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "111893011" - (at 162.56 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 10uF 10% 10V Ceramic Capacitor X7R 0805 (2012 Metric)" - (at 162.56 172.72 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "e67d528a-c90d-4cdd-810a-d09600466276") - ) - (pin "2" - (uuid "57412694-f93a-44f3-af6d-2c372efca802") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "C17") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 203.2 135.89 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "e5872d9c-a1dc-4943-ac40-9705a1501b75") - (property "Reference" "#PWR026" - (at 203.2 142.24 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 203.327 140.2842 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 203.2 135.89 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 203.2 135.89 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 203.2 135.89 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "73d6095e-946d-4662-bafa-4f7b900465ce") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR026") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 132.08 177.8 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "ef957b89-d502-4c1e-86b6-6c81a6f0d72a") - (property "Reference" "#PWR017" - (at 132.08 184.15 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 132.207 182.1942 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 132.08 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 132.08 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 132.08 177.8 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "4f85a8f0-fa75-4f89-8d75-8f9c885dec47") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005ed4bb5b" - (reference "#PWR017") - (unit 1) - ) - ) - ) - ) -) diff --git a/tools/retire_block.py b/tools/retire_block.py index 55cae1e..67106b0 100644 --- a/tools/retire_block.py +++ b/tools/retire_block.py @@ -107,6 +107,25 @@ def sym_pin_coords(t, sym): px, py, rot = sym['at'] return [xform(px, py, rot, sym['mirror'], lx, ly) for lx, ly, _ in lib_pins(t, sym['lib'])] +def drop_sheet_spans(t, fname): + """Remove an entire (sheet ...) block by its Sheetfile property, plus any + (path ...) in (sheet_instances) referencing the sheet's UUID. Run on the parent + (root) sheet. Returns list of (start,end) spans to delete.""" + spans = [] + for m in re.finditer(r'\(sheet\b', t): + s = m.start(); e = paren_end(t, s); seg = t[s:e] + sf = re.search(r'Sheetfile"' + S + r'"([^"]+)"', seg) + if not sf or sf.group(1) != fname: continue + spans.append((s, e)) + u = re.search(r'\(uuid' + S + r'"([0-9a-fA-F-]+)"', seg) + if u: + si = re.search(r'\(sheet_instances\b', t) + if si: + ss = si.start(); se = paren_end(t, ss) + for pm in re.finditer(r'\(path' + S + r'"[^"]*' + re.escape(u.group(1)) + r'[^"]*"', t[ss:se]): + ps = ss + pm.start(); spans.append((ps, paren_end(t, ps))) + return spans + def sheet_port_spans(t, names): """On a ROOT sheet, find (pin "NAME" ...) hierarchical ports inside (sheet ...) blocks whose name is in `names`. Returns (pin spans to remove, their connection coords).""" @@ -128,6 +147,7 @@ def main(): ap.add_argument('--nets', default='') ap.add_argument('--nc-pins', default='', help='module pin NUMBERS to no-connect (from analyzer regressions)') ap.add_argument('--sheet-ports', default='', help='hierarchical net names: remove matching sheet-symbol pins + connecting root wires (run on the ROOT sheet)') + ap.add_argument('--drop-sheet', default='', help='Sheetfile name: remove the whole (sheet ...) block + its sheet_instances path (run on the ROOT/parent sheet)') ap.add_argument('--module-lib', default='CM5IO:ComputeModule5-CM5') ap.add_argument('--apply', action='store_true') a = ap.parse_args() @@ -191,6 +211,7 @@ def main(): anchors = kept_pin_coords | kept_label_coords # sheet-symbol hierarchical ports to drop (root sheet) + their connection coords port_spans, port_coords = sheet_port_spans(t, port_names) if port_names else ([], set()) + sheet_spans = drop_sheet_spans(t, a.drop_sheet) if a.drop_sheet else [] seeds = set(removed_pin_coords) | set(retired_coords) | nc_coords | port_coords anchored_roots, seeded_roots = set(), set() @@ -236,12 +257,13 @@ def main(): print(f"retired-net labels: {len(retired_labels)} | wires removed (anchor-aware): {len(wire_remove)}") print(f"orphaned power flags: {len(power_spans)} | dangling NC removed: {len(dangling_nc)} | orphaned labels: {len(orphan_labels)}") if port_names: print(f"sheet-symbol ports removed: {len(port_spans)} ({sorted(port_names)})") + if a.drop_sheet: print(f"whole sheet dropped: {a.drop_sheet} ({len(sheet_spans)} block(s)/instance-path(s))") print(f"module pins to NC ({len(nc_pins)}): " + ", ".join(f"{n}@{xy}" for n, xy in nc_pins)) # build new text: remove all spans, then append fresh no_connects on exposed module pins spans = sorted(set(sym_spans) | {(s, e) for s, e, _ in retired_labels} | wire_remove_spans | set(power_spans) | set(dangling_nc) | set(orphan_labels) - | set(port_spans), key=lambda x: -x[0]) + | set(port_spans) | set(sheet_spans), key=lambda x: -x[0]) nt = t for s, e in spans: p = s From 18ef98a88e2bca880862c30ada114fe68002a498 Mon Sep 17 00:00:00 2001 From: noise Date: Tue, 30 Jun 2026 14:58:09 -0400 Subject: [PATCH 03/16] Add M.2 E-key (Wi-Fi) sheet; wire PCIe x1 to freed CM5 lanes First add-phase block. New carrier/M2_Ekey.kicad_sch (generated by tools/build_ekey.py) places J_E = Connector:Bus_M.2_Socket_E (fp Connector_PCBEdge:M.2_2230-xx-E) for an AsiaRF AW7915 / MT7915 Wi-Fi card. Reuses the single CM5 PCIe x1 Gen2 lane freed by the PCIe-M2 drop (design confirmed E-key-only, no M-key SSD). - PCIe link-0 wired to the 9 freed CM5 pins via global labels (TX/RX/CLK +/-, nRST, nCLKREQ, nWAKE) - netlist-confirmed J_E<->Module1 - +3V3_RF (pins 2/4/72/74) + 10uF||2x0.1uF decoupling + temp PWR_FLAG - W_DISABLE1/2 10k pull-ups; 11 GND; ~41 NC (USB/BT, SDIO, UART, etc.) - RX NOT AC-coupled on carrier (card supplies TX coupling per M.2 spec); corrected Pinout_BOM, dropped C_PCIE - CM5_HighSpeed: replaced the 9 PCIe-pin NC markers with global labels (106/PCIE_PWR_EN stays NC, reserved for the +3V3_RF buck EN) - root + .kicad_pro: registered the M2_Ekey sub-sheet - tools/build_ekey.py: new generator (place connector + auto-NC unused pins + by-name labels; grid-snap; cross-connector ERC pin retyping) Verify: ERC 133->133 (zero new violations); analyzer diff +7 added, 0 regressions; netlist confirms all 9 PCIe nets span J_E and Module1. Open (power phase): wire PCIE_PWR_EN->buck EN, drop temp PWR_FLAG once the +3V3_RF buck drives the rail. Co-Authored-By: Claude Opus 4.8 (1M context) --- CM5_Carrier_Pinout_BOM.md | 6 +- PORT_STATUS.md | 20 +- carrier/CM5IO.kicad_pro | 6 +- carrier/CM5IO.kicad_sch | 10 + carrier/CM5_HighSpeed.kicad_sch | 76 +- carrier/M2_Ekey.kicad_sch | 2319 +++++++++++++++++++++++++++++++ tools/build_ekey.py | 250 ++++ 7 files changed, 2650 insertions(+), 37 deletions(-) create mode 100644 carrier/M2_Ekey.kicad_sch create mode 100644 tools/build_ekey.py diff --git a/CM5_Carrier_Pinout_BOM.md b/CM5_Carrier_Pinout_BOM.md index 16dd6e9..e8e35ae 100644 --- a/CM5_Carrier_Pinout_BOM.md +++ b/CM5_Carrier_Pinout_BOM.md @@ -94,7 +94,7 @@ A+E key edge. Populate PCIe + control; leave USB pins NC. | CLKREQ0# | PCIE_CLKREQ# | CM5 PCIe CLKREQ | | REFCLK+ / REFCLK− | PCIE_REFCLK_P/N | CM5 PCIe refclk (100 MHz) | | PETp0/PETn0 | PCIE_TX_P/N | CM5 PCIe TX (AC-coupled on CM5) | -| PERp0/PERn0 | PCIE_RX_P/N | CM5 PCIe RX (AC-couple caps on carrier) | +| PERp0/PERn0 | PCIE_RX_P/N | CM5 PCIe RX (**direct** — card supplies its own TX coupling per M.2; no carrier caps) | | W_DISABLE1# (RF_KILL) | WIFI_DISABLE# | pull-up + optional GPIO | | 3.3 V pins | +3V3_RF | from 15→3.3 V 4 A RF buck (direct) | | GND | GND | | @@ -221,7 +221,7 @@ PoE pins of the magjack: leave **unloaded / NC** (no PoE in this design). | 6 | J_ETH | 1 | RJ45 1:1 GbE magjack | Pulse JXD0-0001NL / Bel V890-1AX | 2–4 | | 7 | ESD_ETH | 1 | Ethernet ESD array | TI TPD4E1U06 / Bourns | 0.3–0.6 | | 8 | J_E | 1 | M.2 E-key (A+E) 2230 conn + standoff | Amphenol/Attend 119A-92A00 | 1.2–2 | -| 9 | C_PCIE | 4 | PCIe RX AC-couple 0.1 µF | GRM 0402 100 nF | 0.05 | +| ~~9~~ | ~~C_PCIE~~ | 0 | **REMOVED** — PCIe RX coupling lives on the M.2 card's TX (standard M.2); CM5 couples its own TX. No carrier caps. | — | | 10 | J_USB1/2 | 2 | USB-A USB3.0 right-angle | Amphenol UE27AC54100 | 0.8–1.4 ea | | 11 | J_UPROG | 1 | USB-C 16-pin (USB2 + CC) | GCT USB4085 | 0.5–1 | | 12 | ESD_USB | 3 | USB ESD array | ST USBLC6-2SC6 | 0.15 ea | @@ -267,7 +267,7 @@ DF40 pair (line 1) = ~45–60% of BOM. Everything else commodity. 1. Import CM5 KiCad symbol from `refs/CM5IO.kicad_sym` — pin map is now resolved in `CM5_Carrier_PinMap.md` (all 200 pins). 2. **SYNC (pin 18) is 3.3 V** — drive directly from the Schmitt via a series R; **no level translator** (corrected). -3. AC-couple PCIe **RX** on carrier (TX coupled on CM5). +3. PCIe **RX is NOT coupled on the carrier** — caps live on the M.2 card's TX (standard M.2); CM5 couples its own TX. (Corrected: earlier text/BOM said carrier-side; double-coupling would break the link.) 4. CC 5.1 kΩ pulldowns on USB-C; nRPIBOOT jumper logic. 5. Magjack PoE pins NC; Bob-Smith + ESD on cable side. 6. Both 15→3.3 buck inductors/thermals sized for their rails (RF 4 A, AUX 1 A); all bucks rated ≥20 V Vin, low-duty-capable. diff --git a/PORT_STATUS.md b/PORT_STATUS.md index b73046a..3fa7614 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -84,10 +84,22 @@ Notes that bit us (don't re-learn the hard way): ## Next steps 1. ~~Drop the PCIe-M2 sheet entirely~~ **DONE** (see strip table). Confirmed E-key-only (no M-key SSD). -2. **Re-baseline**: capture a new analyzer baseline of `carrier/` so the add phase diffs against the - stripped design, not the original reference. (`analyze_schematic.py carrier/CM5IO.kicad_sch -o analysis/baseline/carrier_stripped.json`) -3. **Add phase**: 15V→5V buck front-end (reverse-protection + TVS), M.2 E-key (PCIe Gen2 ×1 + - CLKREQ/PERST/RF_KILL + 3.3V), GPS connector, PPS distribution (GPS PPS → TVS → Schmitt buffer → +2. ~~Re-baseline~~ **DONE** — `analysis/baseline/carrier_stripped.json` is the add-phase diff anchor. +3. **M.2 E-key sheet** ✅ **DONE** (`carrier/M2_Ekey.kicad_sch`, generated by `tools/build_ekey.py`). + J_E = KiCad `Connector:Bus_M.2_Socket_E`, fp `Connector_PCBEdge:M.2_2230-xx-E`. PCIe link-0 wired to the + 9 freed CM5 pins via **global labels** (PCIE_TX/RX/CLK ±, nRST, nCLKREQ, nWAKE — netlist-confirmed J_E↔Module1); + `+3V3_RF` (4 pins) + 10µF∥2×0.1µF decoupling + temp PWR_FLAG; 11 GND; W_DISABLE1/2 10k pull-ups to +3V3_RF; + ~41 NC (USB/BT, PCM/I2S, SDIO, UART, COEX, I2C, link-1). RX **not** coupled on carrier (card-side per M.2; BOM C_PCIE removed). + **Verify:** ERC 133→133 (zero new); analyzer diff +7 added, **0 regressions**. + Connector-symbol pin types remodeled for cross-connector ERC: lines CM5 drives → `passive`; lines the card + drives into CM5 inputs (RX pair + CLKREQ#/WAKE#) → `output`. + **Open items (review/next):** (a) CM5 `PCIE_PWR_EN` (pin 106) still NC — wire to the +3V3_RF buck EN in the + power sheet; (b) the temp PWR_FLAG on +3V3_RF must be REMOVED once the buck drives it (else dual-driver ERC); + (c) optionally route `WIFI_DISABLE#` to a CM5 GPIO for SW radio control; (d) analyzer CG-AUD 5:1 sig/gnd on J_E + is inherent to the M.2 connector (INFO, not fixable). New tool: `tools/build_ekey.py` (place connector + auto-NC + labels). +4. **Remaining add phase**: 15V→5V buck front-end (reverse-protection + TVS); the two 3.3V rails + (`+3V3_RF` for the E-key — wire its buck EN to CM5 `PCIE_PWR_EN`/106 and drop the temp PWR_FLAG — + and `+3V3_AUX` for GPS/IO); GPS connector; PPS distribution (GPS PPS → TVS → Schmitt buffer → fan-out: CM5 `Ethernet_SYNC_OUT` + 2 header taps). SPICE-validate the buck divider + PPS network. ## Out-of-repo notes diff --git a/carrier/CM5IO.kicad_pro b/carrier/CM5IO.kicad_pro index d865f05..06cdbb6 100644 --- a/carrier/CM5IO.kicad_pro +++ b/carrier/CM5IO.kicad_pro @@ -833,7 +833,11 @@ [ "00000000-0000-0000-0000-00005cff706a", "CM5_GPIO ( Ethernet, GPIO, SDCARD)" + ], + [ + "c57f5f03-e2c5-5c1b-ba90-8072a2a088a0", + "M2_Ekey" ] ], "text_variables": {} -} +} \ No newline at end of file diff --git a/carrier/CM5IO.kicad_sch b/carrier/CM5IO.kicad_sch index f6ed5a4..d582a27 100644 --- a/carrier/CM5IO.kicad_sch +++ b/carrier/CM5IO.kicad_sch @@ -3459,6 +3459,16 @@ ) ) ) + (sheet + (at 205 34.29) + (size 30 20) + (stroke (width 0.1524) (type solid) (color 132 0 132 1)) + (fill (color 255 255 255 0.0000)) + (uuid "c57f5f03-e2c5-5c1b-ba90-8072a2a088a0") + (property "Sheetname" "M2_Ekey" (at 205 30.48 0) (effects (font (size 1.27 1.27)) (justify left bottom))) + (property "Sheetfile" "M2_Ekey.kicad_sch" (at 205 31.75 0) (effects (font (size 1.27 1.27)) (justify left top))) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "4")))) + ) (sheet_instances (path "/" (page "1") diff --git a/carrier/CM5_HighSpeed.kicad_sch b/carrier/CM5_HighSpeed.kicad_sch index dc853e3..b5449f8 100644 --- a/carrier/CM5_HighSpeed.kicad_sch +++ b/carrier/CM5_HighSpeed.kicad_sch @@ -12684,44 +12684,62 @@ (at 38.1 144.78) (uuid "3e94757c-62b4-5b7d-9eb9-0bce1d18da64") ) - (no_connect - (at 38.1 25.4) - (uuid "aab94d9f-4d88-55fd-8963-e421713879b9") - ) - (no_connect - (at 38.1 27.94) - (uuid "bf767c9b-22d7-5638-8a4e-bb8fee0ab324") - ) (no_connect (at 38.1 30.48) (uuid "22043a85-7370-5a2b-9195-7034c3f95e65") ) - (no_connect - (at 99.06 35.56) - (uuid "cb39ce49-dc2e-52cf-9ae5-2fad794b9c0c") + (global_label "PCIE_nCLKREQ" + (shape input) + (at 38.1 25.4 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "2d6bcc7f-bf6a-5023-b9a8-f27291d2d3ae") ) - (no_connect - (at 38.1 35.56) - (uuid "2c45bf1f-14d2-5a34-839d-dece52143315") + (global_label "PCIE_nWAKE" + (shape input) + (at 38.1 27.94 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "d8b40857-196b-5180-bd8c-a975b3ad79da") ) - (no_connect - (at 38.1 38.1) - (uuid "03029999-8098-5e97-add5-bc4fb95371cc") + (global_label "PCIE_nRST" + (shape input) + (at 99.06 35.56 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "2274596d-a153-5b0c-816c-fd4b3c161cd2") ) - (no_connect - (at 38.1 43.18) - (uuid "59658b5e-4bf4-566d-b811-b0bf504a95d9") + (global_label "PCIE_CLK_P" + (shape input) + (at 38.1 35.56 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "e43761cd-21a8-5c71-9bd0-14fa2388618a") ) - (no_connect - (at 38.1 45.72) - (uuid "a4407bb3-9030-51e1-88f0-738765ce6334") + (global_label "PCIE_CLK_N" + (shape input) + (at 38.1 38.1 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "cee20a9f-240d-5034-a7d9-e0ea94c6b19e") ) - (no_connect - (at 38.1 50.8) - (uuid "15995150-d574-51ad-b24d-4ddbdb8a19b0") + (global_label "PCIE_RX_P" + (shape input) + (at 38.1 43.18 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "dbc3aa3a-3d74-54a7-8e16-45a47db880db") ) - (no_connect - (at 38.1 53.34) - (uuid "8fe68385-81e4-5057-aaaf-7839e45c385d") + (global_label "PCIE_RX_N" + (shape input) + (at 38.1 45.72 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "257305aa-6458-525c-be07-f4457a28ba77") + ) + (global_label "PCIE_TX_P" + (shape input) + (at 38.1 50.8 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "ac99503c-1d9e-5ff9-a810-1a99c646684d") + ) + (global_label "PCIE_TX_N" + (shape input) + (at 38.1 53.34 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "1273b5e1-2d9d-5d45-bc25-040dc4ddc6f1") ) ) diff --git a/carrier/M2_Ekey.kicad_sch b/carrier/M2_Ekey.kicad_sch new file mode 100644 index 0000000..3893b18 --- /dev/null +++ b/carrier/M2_Ekey.kicad_sch @@ -0,0 +1,2319 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "590ec3e7-56d3-5795-a7b6-3abd7e730bed") + (paper "A4") + (title_block + (title "CM5 Carrier - M.2 E-key (Wi-Fi)") + (rev "A") + (comment 1 "AW7915 / MT7915, PCIe x1 Gen2, USB NC") + ) + (lib_symbols +(symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "power:PWR_FLAG" + (power global) + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "#FLG" + (at 0 1.905 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "PWR_FLAG" + (at 0 3.81 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Special symbol for telling ERC where power comes from" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "flag power" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "PWR_FLAG_0_0" + (pin power_out line + (at 0 0 90) + (length 0) + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "PWR_FLAG_0_1" + (polyline + (pts + (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (embedded_fonts no) + ) +(symbol "Connector:Bus_M.2_Socket_E" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "J" + (at -22.86 46.99 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Bus_M.2_Socket_E" + (at 16.51 46.99 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 26.67 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://web.archive.org/web/20200613074028/http://read.pudn.com/downloads794/doc/project/3133918/PCIe_M.2_Electromechanical_Spec_Rev1.0_Final_11012013_RS_Clean.pdf#page=150" + (at 0 12.7 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "M.2 Socket 1-SD Mechanical Key E" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "M2 NGNF PCI-E" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "*M*2*E*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "Bus_M.2_Socket_E_0_1" + (rectangle + (start -22.86 45.72) + (end 22.86 -45.72) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "Bus_M.2_Socket_E_1_1" + (pin power_in line + (at 0 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 10.16 0) + (length 2.54) + (name "USB_D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 48.26 270) + (length 2.54) + (hide yes) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 7.62 0) + (length 2.54) + (name "USB_D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 25.4 -20.32 180) + (length 2.54) + (name "~{LED_1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 7.62 180) + (length 2.54) + (name "PCM_CLK/I2S_SCK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -12.7 0) + (length 2.54) + (name "SDIO_CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 5.08 180) + (length 2.54) + (name "PCM_SYNC/I2S_WS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 -15.24 0) + (length 2.54) + (name "SDIO_CMD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 25.4 2.54 180) + (length 2.54) + (name "PCM_IN/I2S_SD_IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 -17.78 0) + (length 2.54) + (name "SDIO_DATA0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 25.4 0 180) + (length 2.54) + (name "PCM_OUT/I2S_SD_OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 -20.32 0) + (length 2.54) + (name "SDIO_DATA1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 25.4 -22.86 180) + (length 2.54) + (name "~{LED_2}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 -22.86 0) + (length 2.54) + (name "SDIO_DATA2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 -25.4 0) + (length 2.54) + (name "SDIO_DATA3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 25.4 -5.08 180) + (length 2.54) + (name "~{UART_WAKE}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -27.94 0) + (length 2.54) + (name "~{SDIO_WAKE}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 25.4 -7.62 180) + (length 2.54) + (name "UART_RXD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -30.48 0) + (length 2.54) + (name "~{SDIO_RESET}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 25.4 -10.16 180) + (length 2.54) + (name "UART_TXD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 25.4 -12.7 180) + (length 2.54) + (name "UART_CTS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -25.4 33.02 0) + (length 2.54) + (name "PETp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 25.4 -15.24 180) + (length 2.54) + (name "UART_RTS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -25.4 30.48 0) + (length 2.54) + (name "PETn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 38.1 180) + (length 2.54) + (name "VENDOR_DEFINED" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 35.56 180) + (length 2.54) + (name "VENDOR_DEFINED" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 27.94 0) + (length 2.54) + (name "PERp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 33.02 180) + (length 2.54) + (name "VENDOR_DEFINED" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 25.4 0) + (length 2.54) + (name "PERn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 -38.1 180) + (length 2.54) + (name "COEX3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 -35.56 180) + (length 2.54) + (name "COEX2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -25.4 -35.56 0) + (length 2.54) + (name "REFCLKp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 -33.02 180) + (length 2.54) + (name "COEX1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -25.4 -38.1 0) + (length 2.54) + (name "REFCLKn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 25.4 -27.94 180) + (length 2.54) + (name "SUSCLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -25.4 43.18 0) + (length 2.54) + (name "~{PERST0}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 40.64 0) + (length 2.54) + (name "~{CLKREQ0}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 25.4 15.24 180) + (length 2.54) + (name "~{W_DISABLE2}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 38.1 0) + (length 2.54) + (name "~{PEWAKE0}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 25.4 17.78 180) + (length 2.54) + (name "~{W_DISABLE1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 27.94 180) + (length 2.54) + (name "I2C_DATA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 22.86 0) + (length 2.54) + (name "RESERVED/PETp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "59" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 25.4 25.4 180) + (length 2.54) + (name "I2C_CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "60" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 20.32 0) + (length 2.54) + (name "RESERVED/PETn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "61" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 25.4 22.86 180) + (length 2.54) + (name "~{ALERT}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "62" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "63" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 43.18 180) + (length 2.54) + (name "RESERVED" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "64" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 17.78 0) + (length 2.54) + (name "RESERVED/PERp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "65" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -2.54 0) + (length 2.54) + (name "UIM_SWP/~{PERST1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "66" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 15.24 0) + (length 2.54) + (name "RESERVED/PERn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 -5.08 0) + (length 2.54) + (name "UIM_POWER_SNK/~{CLKREQ1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "69" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 -7.62 0) + (length 2.54) + (name "UIM_POWER_SRC/GPIO1/~{PEWAKE1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "70" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -40.64 0) + (length 2.54) + (name "RESERVED/REFCLKp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "71" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 48.26 270) + (length 2.54) + (hide yes) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "72" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -43.18 0) + (length 2.54) + (name "RESERVED/REFCLKn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "73" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 48.26 270) + (length 2.54) + (hide yes) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "74" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -48.26 90) + (length 2.54) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "75" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + ) + (symbol + (lib_id "Connector:Bus_M.2_Socket_E") + (at 170.18 105.41 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "c5b68be4-c170-5c81-8da1-d4c9e4c5c682") + (property "Reference" "J_E" (at 170 53 0) (effects (font (size 1.27 1.27)))) + (property "Value" "M.2_Ekey_WiFi" (at 170 55 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "Connector_PCBEdge:M.2_2230-xx-E" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "M.2 A+E key socket, Wi-Fi (AsiaRF AW7915/MT7915)" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "67f6c68f-89af-58e5-b824-e199f534ccb5")) + (pin "2" (uuid "94996e33-6fc1-5e74-b687-575bf3acbba3")) + (pin "3" (uuid "17794531-5c7c-53c1-b2d6-739daca38d5d")) + (pin "4" (uuid "1b13e455-e30a-50c5-bc87-6a9634db7141")) + (pin "5" (uuid "28191e63-d1d6-5d9b-a5f3-b0619f125f01")) + (pin "6" (uuid "28c368d2-1fae-5866-9a51-412a097f5d53")) + (pin "7" (uuid "c7d493d8-3169-5eab-b943-bd664c09f285")) + (pin "8" (uuid "3a6ea6f4-a8b3-5009-a7cc-d6f182e4e30a")) + (pin "9" (uuid "3e59021d-ee33-56d9-a92c-c22764c182c8")) + (pin "10" (uuid "e6b76f41-f572-57d9-84fe-bc97dbb0f585")) + (pin "11" (uuid "c34ebc5b-d353-573a-9ae1-3e840566d99e")) + (pin "12" (uuid "9cc8f1c1-149f-5b14-ae43-0366491e4a59")) + (pin "13" (uuid "082cd125-2758-5abb-b947-e871ae25b8b9")) + (pin "14" (uuid "0977d18e-1928-5b42-9fc2-775da13c73b2")) + (pin "15" (uuid "174da418-69f0-5305-826a-bf2889ebb008")) + (pin "16" (uuid "57012303-4953-5f09-ba0c-357dc5dcbac9")) + (pin "17" (uuid "c244f461-7115-554d-9226-3dc2759efab9")) + (pin "18" (uuid "c2ca9d8a-224a-598a-8f04-995bafc088d2")) + (pin "19" (uuid "168506e2-9a73-5e06-98ce-4b70f187af07")) + (pin "20" (uuid "5026c557-229e-5f44-a69f-5e8126e5719d")) + (pin "21" (uuid "5f6e78a1-794c-51a8-a160-c1d2e4731b12")) + (pin "22" (uuid "8925728e-bbaf-5df7-8e9b-80d7ab3e45af")) + (pin "23" (uuid "edd6d257-4881-57b4-a6a5-88ad5a6b65eb")) + (pin "32" (uuid "3c488d31-b9a8-5d72-b324-2cae3e78d610")) + (pin "33" (uuid "47bc834f-6d46-5498-a846-aa8bd76bbb33")) + (pin "34" (uuid "7210b861-494d-579f-92c6-7bdc11dc962e")) + (pin "35" (uuid "02b18f30-8e1d-515f-970e-ccad575f55d1")) + (pin "36" (uuid "6e747150-b180-565f-9f66-1e42d50c8f59")) + (pin "37" (uuid "c3082882-773b-5fc0-acec-c614a9f0889f")) + (pin "38" (uuid "90284202-aa00-5791-a3d7-f2d9c6c67c80")) + (pin "39" (uuid "233e2b8a-3514-5183-a2a8-4bf2162caf54")) + (pin "40" (uuid "d550cafa-a0aa-5b6b-9cb7-02994c576adc")) + (pin "41" (uuid "2a2d3dc8-b1ff-58a6-8ad7-0b79e2e09618")) + (pin "42" (uuid "3cbc259c-eec6-539c-b3fa-d08bc0a4bbc2")) + (pin "43" (uuid "87ad49dc-3d35-5de1-8546-6a3f5f46d1dd")) + (pin "44" (uuid "6f756325-dcf3-54f6-838a-e2bd2138beb7")) + (pin "45" (uuid "38356409-3951-5e25-88b1-b678af4d66d6")) + (pin "46" (uuid "72ffb188-6dab-5f75-83ad-47b13d25af40")) + (pin "47" (uuid "bf90cde4-9870-51a8-89a1-36d0439a1dfd")) + (pin "48" (uuid "069f2d54-b280-568c-9737-698e955fab76")) + (pin "49" (uuid "a9ac5450-854a-57bc-b667-71ff642c1e1e")) + (pin "50" (uuid "6c10a126-4dc6-5b6a-be0e-21f7e283d0f0")) + (pin "51" (uuid "8b98aa58-fc6c-50eb-808a-e3d62fd3e30e")) + (pin "52" (uuid "a1aa6fc6-98e9-57e9-a2df-f78b01bae35d")) + (pin "53" (uuid "a476f0d7-24ad-5343-94be-13b8d9621a15")) + (pin "54" (uuid "06701153-1d35-5630-a990-130fb96e1a0a")) + (pin "55" (uuid "ad998a2d-e341-59e5-8244-cda9349a278e")) + (pin "56" (uuid "aa4fafed-efe9-595c-b84d-6f21a47b56a9")) + (pin "57" (uuid "8edd3e53-a7a6-560d-a803-25639fa0444c")) + (pin "58" (uuid "31c931d7-7abd-503e-bf53-4d2437711308")) + (pin "59" (uuid "184a0e44-275c-571e-b114-c27c200f4a32")) + (pin "60" (uuid "9fee4e70-d377-573a-bac5-0736d517d3cb")) + (pin "61" (uuid "3f9fc84a-8f89-56e1-8c28-61963f1596d1")) + (pin "62" (uuid "572573d3-6b43-502e-bc74-ba26a2c8b0b9")) + (pin "63" (uuid "8c4c6e70-7ea3-51ed-9f15-f322f38819a3")) + (pin "64" (uuid "3f137b9b-8fe9-5bb8-b465-3dae2ff19394")) + (pin "65" (uuid "f88bd783-89fe-5631-8654-deb5d1f4f0b0")) + (pin "66" (uuid "1956ad86-a222-5bcf-a23a-b7017faed066")) + (pin "67" (uuid "492be341-798b-5491-9256-3c5b281a66b6")) + (pin "68" (uuid "afcfda9b-3d3f-59b3-a891-8d1ca3a7469d")) + (pin "69" (uuid "6bd941df-ee75-5c65-8b49-8de90891a1e1")) + (pin "70" (uuid "3ba0f684-7ec3-545c-809c-126e330b924b")) + (pin "71" (uuid "80daa6ee-a1bc-56cb-96e5-a971afa8509f")) + (pin "72" (uuid "b6bc8337-909b-5a7b-8235-08905ec8797a")) + (pin "73" (uuid "4d023968-563b-594c-8828-90b959a69fbc")) + (pin "74" (uuid "3feab80a-f23d-57f7-be7f-16fb7efc0cc4")) + (pin "75" (uuid "8e0a1780-b855-573b-93d8-0cb618e05b8e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "J_E") (unit 1)))) + ) + (global_label "PCIE_TX_P" + (shape input) + (at 144.78 72.39 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f6e0bce8-8673-592f-9401-43bd437f3ad6") + ) + (global_label "PCIE_TX_N" + (shape input) + (at 144.78 74.93 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "15cd8d90-b4b8-5901-88fd-cbc9781f2a4c") + ) + (global_label "PCIE_RX_P" + (shape input) + (at 144.78 77.47 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "fc5f3d02-68db-5e5f-bbed-2bfdc708f07a") + ) + (global_label "PCIE_RX_N" + (shape input) + (at 144.78 80.01 180) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "85f2ee6f-fb5d-51fd-9350-e9975097c119") + ) + (global_label "PCIE_CLK_P" + (shape input) + (at 144.78 140.97 270) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "db5d4844-9769-52b8-a0c9-d0b946447166") + ) + (global_label "PCIE_CLK_N" + (shape input) + (at 144.78 143.51 270) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "86756717-9e34-527e-bd67-1530aa10b1ef") + ) + (global_label "PCIE_nRST" + (shape input) + (at 144.78 62.23 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "92276086-3dfe-5013-9704-dd10ad5394bc") + ) + (global_label "PCIE_nCLKREQ" + (shape input) + (at 144.78 64.77 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "d6fddfc2-5c36-5dfe-a3f5-d41f3aa2d07f") + ) + (global_label "PCIE_nWAKE" + (shape input) + (at 144.78 67.31 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "eb820fe5-24c6-5dc0-8f4d-e2a59ca8714e") + ) + (global_label "+3V3_RF" + (shape input) + (at 170.18 57.15 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "920aac2f-edcd-52ef-904a-1d79bf664b16") + ) + (global_label "+3V3_RF" + (shape input) + (at 170.18 57.15 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "920aac2f-edcd-52ef-904a-1d79bf664b16") + ) + (global_label "+3V3_RF" + (shape input) + (at 170.18 57.15 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "920aac2f-edcd-52ef-904a-1d79bf664b16") + ) + (global_label "+3V3_RF" + (shape input) + (at 170.18 57.15 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "920aac2f-edcd-52ef-904a-1d79bf664b16") + ) + (label "WIFI_DISABLE#" + (at 195.58 87.63 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "56ab75fb-7daa-533d-850a-21f07ab90588") + ) + (label "WIFI_DISABLE2#" + (at 195.58 90.17 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "8113565d-fa7a-5956-882a-613fe5b80032") + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "481ca82b-f7c6-5672-b33b-0dffb91079c3") + (property "Reference" "#PWR1" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "9fa67fa0-986a-5b46-aab5-cf8e3f7224c7")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR1") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "8773a784-9f33-5106-8c39-44e7e62ddcd2") + (property "Reference" "#PWR7" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "3012c969-75fc-564b-a911-7c9a70ce983b")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR7") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "6aa76b94-ef82-537b-8daf-91201d33cb3e") + (property "Reference" "#PWR18" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "859399c9-c65a-583b-bd88-802041f668e3")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR18") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "d7f470a9-88da-54d3-b057-c9d53408efe2") + (property "Reference" "#PWR33" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "21b3b202-3652-5102-965d-75fbb0dd4ec8")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR33") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "c517cc56-37a3-5315-93a7-4506474de5a2") + (property "Reference" "#PWR39" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "2bb53e4a-9791-5cef-b800-d1c26e3c5e84")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR39") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f8f9eccb-dbda-5f18-a073-bb548208c9ef") + (property "Reference" "#PWR45" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "26aedd5b-52b1-5ebd-843f-29a6df81ecc8")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR45") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "036dab12-e4f9-5d55-a117-7f4291507e07") + (property "Reference" "#PWR51" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "c6757a62-006a-5227-92df-aa0b4ebcfe06")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR51") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "92b0a134-cfd7-5f96-98e9-4a9bd4084ed7") + (property "Reference" "#PWR57" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "6b56b14a-3378-5de4-94a2-43ceb4e6fbea")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR57") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f2334be9-84c8-537d-b331-632e773e9af7") + (property "Reference" "#PWR63" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "580cc141-b4f5-5ed9-bc3d-b62352ee47ce")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR63") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "a5c13688-751c-5e47-b374-70cfc38efee9") + (property "Reference" "#PWR69" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "02e23241-cadd-53bc-9242-a845a7ec1496")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR69") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 170.18 153.67 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "6718c093-6bfe-5e22-8d43-13fda2f3a9f4") + (property "Reference" "#PWR75" (at 170.18 156.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 155.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 153.67 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "903abbfe-d586-5534-8604-f1cb78871c99")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWR75") (unit 1)))) + ) + (no_connect (at 144.78 95.25) (uuid "54d3a1f1-8ef5-55f1-a2b3-f941d093d749")) + (no_connect (at 144.78 97.79) (uuid "120f3706-3852-55fa-b221-6c89e62d9a0c")) + (no_connect (at 195.58 125.73) (uuid "b2b1699d-c548-5c0f-b4d9-ec5e13429a3a")) + (no_connect (at 195.58 97.79) (uuid "74525b1f-4d8a-5c7f-9481-06d9129aeb4a")) + (no_connect (at 144.78 118.11) (uuid "6611f519-f50b-5ea9-8074-7bf1798ab5b7")) + (no_connect (at 195.58 100.33) (uuid "3a71d2a3-a315-554f-92f4-9b0a7b16f761")) + (no_connect (at 144.78 120.65) (uuid "f073bf03-a9da-52b1-9438-5118ac960a46")) + (no_connect (at 195.58 102.87) (uuid "fa7427e7-7601-5a56-8400-1320f8dabf13")) + (no_connect (at 144.78 123.19) (uuid "ba40334d-9134-5d64-9207-8b5884e14d85")) + (no_connect (at 195.58 105.41) (uuid "8e73be06-9968-5f0e-8e91-809236d7bcc0")) + (no_connect (at 144.78 125.73) (uuid "49c663c3-96c0-581e-9fc3-c79e09fc8237")) + (no_connect (at 195.58 128.27) (uuid "0b478e5b-a4b6-5290-a6e3-631ba9e58932")) + (no_connect (at 144.78 128.27) (uuid "a032cf8c-270f-52c5-b3cd-6208efafc2c1")) + (no_connect (at 144.78 130.81) (uuid "52181e3b-fe5d-5856-8e92-7406812e0bec")) + (no_connect (at 195.58 110.49) (uuid "0c7ed8db-80bb-52e2-a2e1-2166343e0574")) + (no_connect (at 144.78 133.35) (uuid "c4346a96-42e8-577f-8f05-dd128dfbbac4")) + (no_connect (at 195.58 113.03) (uuid "cc996ccd-b032-5378-aa6a-bcbd97ae6b2b")) + (no_connect (at 144.78 135.89) (uuid "8fe345f9-1f6c-5ac0-8659-acf72e2658b3")) + (no_connect (at 195.58 115.57) (uuid "13560475-9508-5060-824b-cd4b08203542")) + (no_connect (at 195.58 118.11) (uuid "7c53ef44-fb56-5396-80d4-76f9bb07c5c4")) + (no_connect (at 195.58 120.65) (uuid "453260ab-2ec9-5553-89f1-4c5bd1ebec44")) + (no_connect (at 195.58 67.31) (uuid "c90e2bd3-eebe-5815-8378-0cd15de0266d")) + (no_connect (at 195.58 69.85) (uuid "84513dee-9232-5164-9086-808610078a73")) + (no_connect (at 195.58 72.39) (uuid "9908b9e2-e8b8-5350-a95c-dd4dc1cdb836")) + (no_connect (at 195.58 143.51) (uuid "1936edf7-58fb-5ba6-a566-cdde55085d88")) + (no_connect (at 195.58 140.97) (uuid "2a3617af-fecd-5184-a4d0-04cb0f55f8ba")) + (no_connect (at 195.58 138.43) (uuid "06441ea6-eedd-5a96-aab9-9a019e816fff")) + (no_connect (at 195.58 133.35) (uuid "3c33bfce-96ec-514c-886f-f79c775ac9ab")) + (no_connect (at 195.58 77.47) (uuid "11a17392-076b-5276-8b2f-c55ce1ae35de")) + (no_connect (at 144.78 82.55) (uuid "5d22c816-7f60-53a9-90c4-f351e8640de6")) + (no_connect (at 195.58 80.01) (uuid "6464d8bf-1bd5-5de3-9991-d4eac2738a96")) + (no_connect (at 144.78 85.09) (uuid "c83b0b75-a08a-585a-b6af-8a16a23979c8")) + (no_connect (at 195.58 82.55) (uuid "91ca7d3b-fd8b-5d13-b2b1-e69caeeb9913")) + (no_connect (at 195.58 62.23) (uuid "5ef83089-8e8d-5dc2-a0a4-5d5a12570a81")) + (no_connect (at 144.78 87.63) (uuid "bf243227-9844-57cd-90b7-c85b35f0f1f8")) + (no_connect (at 144.78 107.95) (uuid "75f47de0-f439-50e3-bb74-3c3965513162")) + (no_connect (at 144.78 90.17) (uuid "fbfbfa95-4cda-5eaf-8b67-7ab8990061be")) + (no_connect (at 144.78 110.49) (uuid "b58b68b3-165b-5718-9bc3-ef4b846c05db")) + (no_connect (at 144.78 113.03) (uuid "c67aac4f-5d69-5832-8e65-b52651ecc3e3")) + (no_connect (at 144.78 146.05) (uuid "d59858ed-64ad-599d-924b-da7718408ab9")) + (no_connect (at 144.78 148.59) (uuid "3b8efef5-4682-5995-8384-813e1490a552")) + (symbol + (lib_id "Device:R") + (at 214.63 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "8c8dcfa4-0b07-57be-af08-4cf02c31f850") + (property "Reference" "R_E1" (at 217.17 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10k" (at 217.17 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 214.63 80.01 90) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 214.63 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "b881f458-3928-54ce-a4e1-e240a2a07312")) + (pin "2" (uuid "5afe35aa-c7d1-58d7-888e-1255348501c5")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "R_E1") (unit 1)))) + ) + (label "WIFI_DISABLE#" + (at 214.63 76.2 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "91a8044b-4cab-585f-88ed-6ef6081fbb30") + ) + (global_label "+3V3_RF" + (shape input) + (at 214.63 83.82 270) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "c6c309e9-4e4e-5385-8015-f5a92df00f99") + ) + (symbol + (lib_id "Device:R") + (at 224.79 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "68d5bd2c-8c44-5028-aee4-f9e5a5c79adc") + (property "Reference" "R_E2" (at 227.32999999999998 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10k" (at 227.32999999999998 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 224.79 80.01 90) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 224.79 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "df53fdb0-ebaf-5bb6-aab8-771484d665c2")) + (pin "2" (uuid "d7b51c5b-a02a-5335-9fe5-6bf58b62f469")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "R_E2") (unit 1)))) + ) + (label "WIFI_DISABLE2#" + (at 224.79 76.2 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "b6a2d87b-617d-5a03-97b3-7812237c0b51") + ) + (global_label "+3V3_RF" + (shape input) + (at 224.79 83.82 270) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "52359d89-8a59-58db-adb5-fd0775a9231a") + ) + (symbol + (lib_id "Device:C") + (at 214.63 110.49 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "1c7a2d84-09f4-5e80-8bc5-b79148d9765a") + (property "Reference" "C_E1" (at 217.17 109.49 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10u" (at 217.17 111.49 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 214.63 110.49 90) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 214.63 110.49 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "468ae892-540a-5e41-95e5-adb674b55dd0")) + (pin "2" (uuid "d4f031b1-20aa-5f5e-8dfb-8a544d1ebb18")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "C_E1") (unit 1)))) + ) + (global_label "+3V3_RF" + (shape input) + (at 214.63 106.68 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "ce950d44-a7c2-575c-8ab5-789e2411833b") + ) + (symbol + (lib_id "power:GND") + (at 214.63 114.3 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "16d1ee5f-7d20-5f3d-ada1-ed9e5154bc76") + (property "Reference" "#PWRC_E1g" (at 214.63 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 214.63 116.3 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 214.63 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 214.63 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "f81e6b93-0385-5c25-9d9f-a753ae73f11c")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E1g") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 222.25 110.49 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "c353a3ee-b20c-55ca-a740-bf16913dc00b") + (property "Reference" "C_E2" (at 224.79 109.49 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100n" (at 224.79 111.49 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 222.25 110.49 90) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 222.25 110.49 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "612a6e11-2a58-559a-a046-0a34142c2f08")) + (pin "2" (uuid "b8f142af-dda2-52a5-99ee-59a25abee08b")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "C_E2") (unit 1)))) + ) + (global_label "+3V3_RF" + (shape input) + (at 222.25 106.68 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "766c27ee-52c9-59ac-a662-53fa8acf2014") + ) + (symbol + (lib_id "power:GND") + (at 222.25 114.3 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "649014b2-7027-547c-8fae-c42cdec405a4") + (property "Reference" "#PWRC_E2g" (at 222.25 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 222.25 116.3 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 222.25 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 222.25 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "21ee945b-167e-5eb2-ad27-7bfcf5e00d73")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E2g") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 229.87 110.49 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "721fe193-5e8e-53a2-abe0-54bef161e075") + (property "Reference" "C_E3" (at 232.41 109.49 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100n" (at 232.41 111.49 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 229.87 110.49 90) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 229.87 110.49 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "75060c03-4cf3-5a5a-a5b9-5ebfdc43fb60")) + (pin "2" (uuid "e1f111cc-0ccb-5624-a53c-916073c084af")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "C_E3") (unit 1)))) + ) + (global_label "+3V3_RF" + (shape input) + (at 229.87 106.68 90) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "6dfd446a-6542-51e4-8a7d-7d13cddba859") + ) + (symbol + (lib_id "power:GND") + (at 229.87 114.3 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "d1e54328-43fe-5fb8-9c85-ccdc06cb33c3") + (property "Reference" "#PWRC_E3g" (at 229.87 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 229.87 116.3 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 229.87 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 229.87 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "4b6d8ed9-33cb-576b-b25a-4d7450c86b69")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E3g") (unit 1)))) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 214.63 106.68 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "57cb1e76-9a59-5707-bae8-cb2acbf83bcd") + (property "Reference" "#FLG33RF" (at 214.63 103.68 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "PWR_FLAG" (at 214.63 104.68 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 214.63 106.68 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 214.63 106.68 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "63df115b-4a9f-5dd3-b381-99eea593a368")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#FLG33RF") (unit 1)))) + ) + (sheet_instances + (path "/" + (page "4") + ) + ) +) diff --git a/tools/build_ekey.py b/tools/build_ekey.py new file mode 100644 index 0000000..4f0d08c --- /dev/null +++ b/tools/build_ekey.py @@ -0,0 +1,250 @@ +#!/usr/bin/env python3 +"""build_ekey.py — generate the M.2 E-key (Wi-Fi) sub-sheet for the CM5 carrier. + +The inverse of retire_block.py: places a library connector + passives, attaches a +named label at every USED pin connection point, and a (no_connect) at every unused +pin. Connectivity is by KiCad's by-name net model (a label coincident with a pin +endpoint joins that pin to the net) — no wire routing, which keeps generation exact. + +Locked net map (see CM5_Carrier_Pinout_BOM.md §4, design confirmed E-key-only): + PCIe link-0 -> the 9 freed CM5 pins ; +3V3_RF (4 pins) ; GND (11) ; W_DISABLE x2 pull-ups. + RX is NOT AC-coupled on the carrier (caps live on the card's TX, per M.2 spec). + +Emits carrier/M2_Ekey.kicad_sch. Pin connection point: abs=(px+lx, py-ly) for a +rot0/no-mirror placement (the transform validated in retire_block.py). +""" +import re, sys, os, uuid as uuidlib + +ROOT_UUID = "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" +PROJECT = "CM5IO" +SHEET_SYMBOL_UUID = "00000000-0000-0000-0000-00005 e000ekey".replace(" ", "") # placeholder, overwritten below +KSS = "/Applications/KiCad/KiCad.app/Contents/SharedSupport/symbols" +HERE = os.path.dirname(os.path.abspath(__file__)) +CARRIER = os.path.join(HERE, "..", "carrier") + +def U(label): + return str(uuidlib.uuid5(uuidlib.NAMESPACE_DNS, "cm5carrier-ekey-" + label)) + +# deterministic sheet-symbol uuid (used in instance paths + the root sheet block) +SHEET_SYMBOL_UUID = U("sheet-symbol") +SHEET_FILE_UUID = U("sheet-file") + +def paren_end(t, s): + d = 0 + for i in range(s, len(t)): + if t[i] == '(': d += 1 + elif t[i] == ')': + d -= 1 + if d == 0: return i + 1 + raise ValueError("unbalanced") + +def get_symbol(text, name): + m = re.search(r'\(symbol\s+"' + re.escape(name) + r'"', text) + if not m: return None + s = m.start(); return text[s:paren_end(text, s)] + +def lib_pins(seg): + """[(number, lx, ly, angle)] for a lib_symbol block (descends into _x_1 units).""" + out = [] + for pm in re.finditer(r'\(pin\b', seg): + s = pm.start(); ps = seg[s:paren_end(seg, s)] + at = re.search(r'\(at\s+([\d.-]+)\s+([\d.-]+)\s+([\d.-]+)\)', ps) + nu = re.search(r'\(number\s+"([^"]+)"', ps) + if at and nu: + out.append((nu.group(1), float(at.group(1)), float(at.group(2)), float(at.group(3)))) + return out + +# ---- gather lib_symbol definitions ------------------------------------------------- +carrier_hs = open(os.path.join(CARRIER, "CM5_HighSpeed.kicad_sch")).read() +conn_lib = open(os.path.join(KSS, "Connector.kicad_sym")).read() +power_lib = open(os.path.join(KSS, "power.kicad_sym")).read() + +# reuse R / C / GND verbatim from the carrier (guaranteed-compatible embeds) +DEV_R = get_symbol(carrier_hs, "Device:R") +DEV_C = get_symbol(carrier_hs, "Device:C") +PWR_GND = get_symbol(carrier_hs, "power:GND") +# socket + PWR_FLAG from KiCad libs, renamed to their full lib_id +sock = get_symbol(conn_lib, "Bus_M.2_Socket_E") +sock = sock.replace('(symbol "Bus_M.2_Socket_E"', '(symbol "Connector:Bus_M.2_Socket_E"', 1) + +def set_pin_type(seg, number, newtype): + """Rewrite the electrical type of the lib pin whose (number "N") matches. + The socket is typed from the host's view; for ERC across the connector we model + the lines CM5 drives as 'passive' and the RX pair (card drives -> CM5) as 'output'.""" + for pm in re.finditer(r'\(pin\s+(\w+)\s+(\w+)', seg): + s = pm.start(); blk = seg[s:paren_end(seg, s)] + if re.search(r'\(number\s+"' + re.escape(number) + r'"', blk): + head = re.match(r'\(pin\s+\w+', blk).group(0) + return seg[:s] + blk.replace(head, f'(pin {newtype}', 1) + seg[s + len(blk):] + return seg +# Lines CM5 drives (TX 35/37, REFCLK 47/49, PERST 52): socket side passive. +for n in ['35', '37', '47', '49', '52']: + sock = set_pin_type(sock, n, 'passive') +# Lines the CARD drives into CM5 inputs -> model socket side as output: +# RX pair (41/43) + CLKREQ# (53) + WAKE# (55) are all CM5 inputs (open-drain for +# CLKREQ/WAKE; the card pulls them). 'output' gives each net a driver for ERC. +for n in ['41', '43', '53', '55']: + sock = set_pin_type(sock, n, 'output') +pflag = get_symbol(power_lib, "PWR_FLAG") +pflag = pflag.replace('(symbol "PWR_FLAG"', '(symbol "power:PWR_FLAG"', 1) +for nm, blk in [("Device:R", DEV_R), ("Device:C", DEV_C), ("power:GND", PWR_GND), + ("Connector:Bus_M.2_Socket_E", sock), ("power:PWR_FLAG", pflag)]: + if not blk: sys.exit("missing lib_symbol: " + nm) + +SOCK_PINS = {n: (lx, ly, a) for n, lx, ly, a in lib_pins(sock)} # 67 pins + +# ---- the net map ------------------------------------------------------------------- +# pin -> ('hier', net) cross-sheet PCIe ; ('gnd',) ; ('v33',) ; ('loc', net) local +HIER = { + '35': 'PCIE_TX_P', '37': 'PCIE_TX_N', '41': 'PCIE_RX_P', '43': 'PCIE_RX_N', + '47': 'PCIE_CLK_P', '49': 'PCIE_CLK_N', '52': 'PCIE_nRST', '53': 'PCIE_nCLKREQ', + '55': 'PCIE_nWAKE', +} +V33 = ['2', '4', '72', '74'] +GND = ['1', '7', '18', '33', '39', '45', '51', '57', '63', '69', '75'] +LOCAL = {'56': 'WIFI_DISABLE#', '54': 'WIFI_DISABLE2#'} +used = set(HIER) | set(V33) | set(GND) | set(LOCAL) +NC = sorted((p for p in SOCK_PINS if p not in used), key=lambda x: int(x)) + +assert len(used) + len(NC) == len(SOCK_PINS), (len(used), len(NC), len(SOCK_PINS)) + +# ---- placement --------------------------------------------------------------------- +def g(v): # snap to the 1.27mm (50mil) schematic grid so labels bind to pins + return round(round(v / 1.27) * 1.27, 2) +PX, PY = g(170.0), g(105.0) +def pin_abs(num): + lx, ly, a = SOCK_PINS[num] + return (round(PX + lx, 2), round(PY - ly, 2), a) + +def lbl_angle(num): + lx, ly, a = SOCK_PINS[num] + if abs(lx) >= abs(ly): return 0 if lx > 0 else 180 + return 90 if ly > 0 else 270 + +def hier_label(name, x, y, ang, shape="bidirectional"): + return (f'\t(hierarchical_label "{name}"\n\t\t(shape {shape})\n\t\t(at {x} {y} {ang})\n' + f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("hl-"+name+"-"+str(x)+"-"+str(y))}")\n\t)\n') + +def glob_label(name, x, y, ang): + return (f'\t(global_label "{name}"\n\t\t(shape input)\n\t\t(at {x} {y} {ang})\n' + f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("gl-"+name+"-"+str(x)+"-"+str(y))}")\n\t)\n') + +def loc_label(name, x, y, ang): + return (f'\t(label "{name}"\n\t\t(at {x} {y} {ang})\n' + f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("ll-"+name+"-"+str(x)+"-"+str(y))}")\n\t)\n') + +def no_connect(x, y, tag): + return f'\t(no_connect (at {x} {y}) (uuid "{U("nc-"+tag)}"))\n' + +def gnd_sym(x, y, tag): + return (f'\t(symbol\n\t\t(lib_id "power:GND")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n' + f'\t\t(uuid "{U("gnd-"+tag)}")\n' + f'\t\t(property "Reference" "#PWR{tag}" (at {x} {y+3.0} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Value" "GND" (at {x} {y+2.0} 0) (effects (font (size 1.27 1.27))))\n' + f'\t\t(property "Footprint" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Datasheet" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(pin "1" (uuid "{U("gndpin-"+tag)}"))\n' + f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "#PWR{tag}") (unit 1))))\n\t)\n') + +def pwr_flag(x, y, tag): + return (f'\t(symbol\n\t\t(lib_id "power:PWR_FLAG")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n' + f'\t\t(uuid "{U("pflag-"+tag)}")\n' + f'\t\t(property "Reference" "#FLG{tag}" (at {x} {y-3.0} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Value" "PWR_FLAG" (at {x} {y-2.0} 0) (effects (font (size 1.27 1.27))))\n' + f'\t\t(property "Footprint" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Datasheet" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(pin "1" (uuid "{U("pflagpin-"+tag)}"))\n' + f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "#FLG{tag}") (unit 1))))\n\t)\n') + +def passive(lib_id, ref, value, footprint, x, y, tag): + return (f'\t(symbol\n\t\t(lib_id "{lib_id}")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n' + f'\t\t(uuid "{U("sym-"+ref)}")\n' + f'\t\t(property "Reference" "{ref}" (at {x+2.54} {y-1.0} 0) (effects (font (size 1.27 1.27)) (justify left)))\n' + f'\t\t(property "Value" "{value}" (at {x+2.54} {y+1.0} 0) (effects (font (size 1.27 1.27)) (justify left)))\n' + f'\t\t(property "Footprint" "{footprint}" (at {x} {y} 90) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Datasheet" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(pin "1" (uuid "{U("p1-"+ref)}"))\n' + f'\t\t(pin "2" (uuid "{U("p2-"+ref)}"))\n' + f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "{ref}") (unit 1))))\n\t)\n') + +def socket_symbol(): + # the placed J_E (multi-unit symbol uses unit 1; both graphic units share lib def) + props = ('\t\t(property "Reference" "J_E" (at 170 53 0) (effects (font (size 1.27 1.27))))\n' + '\t\t(property "Value" "M.2_Ekey_WiFi" (at 170 55 0) (effects (font (size 1.27 1.27))))\n' + '\t\t(property "Footprint" "Connector_PCBEdge:M.2_2230-xx-E" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + '\t\t(property "Datasheet" "" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + '\t\t(property "Description" "M.2 A+E key socket, Wi-Fi (AsiaRF AW7915/MT7915)" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes)))\n') + pins = "".join(f'\t\t(pin "{n}" (uuid "{U("jepin-"+n)}"))\n' for n in sorted(SOCK_PINS, key=int)) + return (f'\t(symbol\n\t\t(lib_id "Connector:Bus_M.2_Socket_E")\n\t\t(at {PX} {PY} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n' + f'\t\t(uuid "{U("J_E")}")\n' + props + pins + + f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "J_E") (unit 1))))\n\t)\n') + +# ---- assemble the sheet ------------------------------------------------------------ +body = [] +body.append(socket_symbol()) + +# connector pin labels / NC / GND +for num, net in HIER.items(): + # global labels: connect to the matching CM5-side labels across sheets without + # parent sheet-pin plumbing (the 9 freed CM5 PCIe pins get the same global names). + x, y, _ = pin_abs(num); body.append(glob_label(net, x, y, lbl_angle(num))) +for num in V33: + x, y, _ = pin_abs(num); body.append(glob_label("+3V3_RF", x, y, lbl_angle(num))) +for num, net in LOCAL.items(): + x, y, _ = pin_abs(num); body.append(loc_label(net, x, y, lbl_angle(num))) +for num in GND: + x, y, _ = pin_abs(num); body.append(gnd_sym(x, y, num)) +for num in NC: + x, y, _ = pin_abs(num); body.append(no_connect(x, y, num)) + +# pull-up resistors: pin1(top) -> signal label ; pin2(bottom) -> +3V3_RF +def place_rc(lib_id, ref, value, fp, x, y, top_label_fn, top_name, bot_name): + body.append(passive(lib_id, ref, value, fp, x, y, ref)) + body.append(top_label_fn(top_name, x, round(y - 3.81, 2), 90)) # pin1 + body.append(glob_label(bot_name, x, round(y + 3.81, 2), 270)) # pin2 + +place_rc("Device:R", "R_E1", "10k", "Resistor_SMD:R_0402_1005Metric", g(215.0), g(80.0), loc_label, "WIFI_DISABLE#", "+3V3_RF") +place_rc("Device:R", "R_E2", "10k", "Resistor_SMD:R_0402_1005Metric", g(225.0), g(80.0), loc_label, "WIFI_DISABLE2#", "+3V3_RF") + +# decoupling caps: pin1 -> +3V3_RF ; pin2 -> GND +c_e1_pin1 = None +for i, (ref, val) in enumerate([("C_E1", "10u"), ("C_E2", "100n"), ("C_E3", "100n")]): + cx = g(215.0 + i * 7.62); cy = g(110.0) + body.append(passive("Device:C", ref, val, "Capacitor_SMD:C_0402_1005Metric", cx, cy, ref)) + p1 = (cx, round(cy - 3.81, 2)) + body.append(glob_label("+3V3_RF", p1[0], p1[1], 90)) # pin1 + body.append(gnd_sym(cx, round(cy + 3.81, 2), ref + "g")) # pin2 -> GND symbol + if ref == "C_E1": c_e1_pin1 = p1 + +# one PWR_FLAG to drive +3V3_RF until the power-sheet buck exists. +# Co-locate its pin directly on an existing +3V3_RF node (C_E1 pin1) so it binds. +# REMOVE this flag once the power sheet's buck drives +3V3_RF (else dual-driver ERC). +body.append(pwr_flag(c_e1_pin1[0], c_e1_pin1[1], "33RF")) + +# ---- file scaffold ----------------------------------------------------------------- +libsyms = "\n".join([DEV_R, DEV_C, PWR_GND, pflag, sock]) +sheet = ( + '(kicad_sch\n' + '\t(version 20231120)\n\t(generator "eeschema")\n\t(generator_version "8.0")\n' + f'\t(uuid "{SHEET_FILE_UUID}")\n\t(paper "A4")\n' + '\t(title_block\n\t\t(title "CM5 Carrier - M.2 E-key (Wi-Fi)")\n\t\t(rev "A")\n' + '\t\t(comment 1 "AW7915 / MT7915, PCIe x1 Gen2, USB NC")\n\t)\n' + '\t(lib_symbols\n' + libsyms + '\n\t)\n' + + "".join(body) + + '\t(sheet_instances\n\t\t(path "/"\n\t\t\t(page "4")\n\t\t)\n\t)\n' + ')\n' +) + +assert sheet.count('(') == sheet.count(')'), f"UNBALANCED ({sheet.count('(')} vs {sheet.count(')')})" +out = os.path.join(CARRIER, "M2_Ekey.kicad_sch") +print(f"pins: {len(SOCK_PINS)} used: {len(used)} (hier {len(HIER)}, v33 {len(V33)}, gnd {len(GND)}, local {len(LOCAL)}) NC: {len(NC)}") +print(f"sheet-symbol uuid: {SHEET_SYMBOL_UUID}") +print(f"parens balanced: {sheet.count('(')}") +if '--apply' in sys.argv: + open(out, 'w').write(sheet); print("WROTE " + out) +else: + print("DRY RUN (pass --apply to write " + out + ")") From c469238dd5560cf5afe46ebd93e627a42f174a75 Mon Sep 17 00:00:00 2001 From: noise Date: Tue, 30 Jun 2026 16:41:22 -0400 Subject: [PATCH 04/16] Power sheet stage 1: 15V input protection (ideal-diode + TVS) First stage of the power tree. New carrier/Power.kicad_sch (generated by tools/build_power.py): J_PWR 15V inlet -> D_REV LM74700-Q1 ideal-diode controller + Q_REV N-FET (reverse-polarity / reverse-current) -> VIN_PROT, with SMBJ18A input TVS and 100uF/25V || 10uF/50V bulk + VCAP cap. Part-selection note: the spec's buck candidates miss its own >=20V Vin rule (TPS54424=17V, TPS54560=async); the 3 sync bucks (stages 2-4) will use >=30V synchronous parts, datasheet-verified, feeding +5V/+3V3_RF/+3V3_AUX. tools/build_power.py generalizes the build_ekey approach: generic place() attaches a net label / GND symbol per pin (by-name connectivity, grid-snapped); PWR_FLAGs co-located on real pin coords. Verify: ERC 133->133 (zero new); analyzer +16 added, 0 regressions; netlist confirms the ideal-diode topology (+15V_IN/VIN_PROT/GATE_REV/VCAP_REV/GND). Confirm vs LM74700-Q1 datasheet: C_VCAP value, EN tie, FET Vds/SOA, gate R. Co-Authored-By: Claude Opus 4.8 (1M context) --- PORT_STATUS.md | 9 +- carrier/CM5IO.kicad_pro | 4 + carrier/CM5IO.kicad_sch | 10 + carrier/Power.kicad_sch | 1803 +++++++++++++++++++++++++++++++++++++++ tools/build_power.py | 160 ++++ 5 files changed, 1982 insertions(+), 4 deletions(-) create mode 100644 carrier/Power.kicad_sch create mode 100644 tools/build_power.py diff --git a/PORT_STATUS.md b/PORT_STATUS.md index 3fa7614..4688527 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -97,10 +97,11 @@ Notes that bit us (don't re-learn the hard way): power sheet; (b) the temp PWR_FLAG on +3V3_RF must be REMOVED once the buck drives it (else dual-driver ERC); (c) optionally route `WIFI_DISABLE#` to a CM5 GPIO for SW radio control; (d) analyzer CG-AUD 5:1 sig/gnd on J_E is inherent to the M.2 connector (INFO, not fixable). New tool: `tools/build_ekey.py` (place connector + auto-NC + labels). -4. **Remaining add phase**: 15V→5V buck front-end (reverse-protection + TVS); the two 3.3V rails - (`+3V3_RF` for the E-key — wire its buck EN to CM5 `PCIE_PWR_EN`/106 and drop the temp PWR_FLAG — - and `+3V3_AUX` for GPS/IO); GPS connector; PPS distribution (GPS PPS → TVS → Schmitt buffer → - fan-out: CM5 `Ethernet_SYNC_OUT` + 2 header taps). SPICE-validate the buck divider + PPS network. +4. **Power sheet** (`carrier/Power.kicad_sch`, generated by `tools/build_power.py`) — staged, **sync + datasheet-built parts** (user choice). **Spec rating fix:** the spec's buck candidates miss its own ≥20V-Vin rule (TPS54424=17V, TPS54560=async) — selecting synchronous ≥30V parts instead (LM61460-class 6A for +5V & +3V3_RF/4A; TPS54202 28V for +3V3_AUX), each verified vs datasheet before commit. + - **Stage 1 — input protection ✅ DONE.** J_PWR(15V) → D_REV `LM74700-Q1` ideal-diode + Q_REV N-FET (reverse-polarity/-current) → `VIN_PROT`; `SMBJ18A` TVS + 100µF/25V ∥ 10µF/50V bulk; C_VCAP charge-pump cap. Netlist-verified topology; ERC 133→133 (zero new); analyzer 0 regressions. **Confirm vs LM74700-Q1 datasheet:** C_VCAP value, EN-to-+15V_IN, FET pick (Vds≥30V, SOA/inrush) + optional gate R. + - **Stage 2** U_BUCK5 15→5V 5A → `+5V`. **Stage 3** U_BUCK33R 15→3.3V 4A → `+3V3_RF` (then REMOVE the E-key temp PWR_FLAG; wire buck EN ← CM5 `PCIE_PWR_EN`/106). **Stage 4** U_BUCK33A 15→3.3V 1A → `+3V3_AUX`. SPICE-validate each feedback divider (like the reference U8/AP3441). +5. **GPS + PPS distribution**: GPS connector (PPS+UART+3V3+GND); PPS → TVS → Schmitt (LVC1G17) → + fan-out: CM5 `Ethernet_SYNC_OUT` (J2 pin-6 net, 3.3V, no translator) + 2 header taps. SPICE/timing check. ## Out-of-repo notes diff --git a/carrier/CM5IO.kicad_pro b/carrier/CM5IO.kicad_pro index 06cdbb6..b6a9527 100644 --- a/carrier/CM5IO.kicad_pro +++ b/carrier/CM5IO.kicad_pro @@ -837,6 +837,10 @@ [ "c57f5f03-e2c5-5c1b-ba90-8072a2a088a0", "M2_Ekey" + ], + [ + "9c7ccf72-dd3e-5ed3-bb43-2939833eb069", + "Power" ] ], "text_variables": {} diff --git a/carrier/CM5IO.kicad_sch b/carrier/CM5IO.kicad_sch index d582a27..b7ef82b 100644 --- a/carrier/CM5IO.kicad_sch +++ b/carrier/CM5IO.kicad_sch @@ -3469,6 +3469,16 @@ (property "Sheetfile" "M2_Ekey.kicad_sch" (at 205 31.75 0) (effects (font (size 1.27 1.27)) (justify left top))) (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "4")))) ) + (sheet + (at 205 60) + (size 30 20) + (stroke (width 0.1524) (type solid) (color 132 0 132 1)) + (fill (color 255 255 255 0.0000)) + (uuid "9c7ccf72-dd3e-5ed3-bb43-2939833eb069") + (property "Sheetname" "Power" (at 205 56.18 0) (effects (font (size 1.27 1.27)) (justify left bottom))) + (property "Sheetfile" "Power.kicad_sch" (at 205 57.45 0) (effects (font (size 1.27 1.27)) (justify left top))) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "5")))) + ) (sheet_instances (path "/" (page "1") diff --git a/carrier/Power.kicad_sch b/carrier/Power.kicad_sch new file mode 100644 index 0000000..8fa7792 --- /dev/null +++ b/carrier/Power.kicad_sch @@ -0,0 +1,1803 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "63c7bc0a-7271-5cb4-b0b2-ea6295da83e4") + (paper "A4") + (title_block + (title "CM5 Carrier - Power") + (rev "A") + (comment 1 "15V inlet -> ideal-diode -> VIN_PROT -> 3 bucks (+5V, +3V3_RF, +3V3_AUX)") + ) + (lib_symbols +(symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "Device:C_Polarized" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C_Polarized" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Polarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "CP_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_Polarized_0_1" + (rectangle + (start -2.286 0.508) + (end 2.286 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 2.286) (xy -0.762 2.286) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.794) (xy -1.27 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.286 -0.508) + (end -2.286 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "C_Polarized_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "power:PWR_FLAG" + (power global) + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "#FLG" + (at 0 1.905 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "PWR_FLAG" + (at 0 3.81 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Special symbol for telling ERC where power comes from" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "flag power" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "PWR_FLAG_0_0" + (pin power_out line + (at 0 0 90) + (length 0) + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "PWR_FLAG_0_1" + (polyline + (pts + (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (embedded_fonts no) + ) +(symbol "Power_Management:LM74700" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "U" + (at -9.525 -8.89 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LM74700" + (at 7.62 -8.89 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" + (at -9.525 -8.89 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/gpn/LM74700-Q1" + (at -9.525 -8.89 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Low Iq reverse battery protection ideal diode controller, SOT-23-6" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "ideal-diode or-ing" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "SOT?23*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "LM74700_0_1" + (rectangle + (start -10.16 7.62) + (end 10.16 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "LM74700_1_1" + (pin passive line + (at -12.7 -2.54 0) + (length 2.54) + (name "VCAP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -10.16 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -12.7 -5.08 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 7.62 10.16 270) + (length 2.54) + (name "CATHODE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 0 10.16 270) + (length 2.54) + (name "GATE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 10.16 270) + (length 2.54) + (name "ANODE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) +(symbol "Transistor_FET:Q_NMOS_GDS" + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "Q" + (at 5.08 1.905 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Q_NMOS_GDS" + (at 5.08 0 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 5.08 2.54 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "N-MOSFET transistor, gate/drain/source" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "transistor NMOS N-MOS N-MOSFET" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "Q_NMOS_GDS_0_1" + (polyline + (pts + (xy 0.254 1.905) (xy 0.254 -1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 0) (xy -2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 2.286) (xy 0.762 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 0.508) (xy 0.762 -0.508) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.27) (xy 0.762 -2.286) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.778) (xy 3.302 -1.778) (xy 3.302 1.778) (xy 0.762 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.016 0) (xy 2.032 0.381) (xy 2.032 -0.381) (xy 1.016 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 1.651 0) + (radius 2.794) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 2.54) (xy 2.54 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 2.54 -1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.921 0.381) (xy 3.683 0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.302 0.381) (xy 2.921 -0.254) (xy 3.683 -0.254) (xy 3.302 0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Q_NMOS_GDS_1_1" + (pin input line + (at -5.08 0 0) + (length 2.54) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) +(symbol "Device:D_TVS" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "D" + (at 0 2.54 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "D_TVS" + (at 0 -2.54 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Bidirectional transient-voltage-suppression diode" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "diode TVS thyrector" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "D_TVS_0_1" + (polyline + (pts + (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy -1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "D_TVS_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) +(symbol "Connector:Screw_Terminal_01x02" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "J" + (at 0 2.54 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Screw_Terminal_01x02" + (at 0 -5.08 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "screw terminal" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "TerminalBlock*:*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "Screw_Terminal_01x02_1_1" + (rectangle + (start -1.27 1.27) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -0.5334 0.3302) (xy 0.3302 -0.508) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.5334 -2.2098) (xy 0.3302 -3.048) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.3556 0.508) (xy 0.508 -0.3302) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.3556 -2.032) (xy 0.508 -2.8702) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0) + (radius 0.635) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 -2.54) + (radius 0.635) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + ) + (symbol + (lib_id "Connector:Screw_Terminal_01x02") + (at 80.01 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "138ccd89-316e-5500-a880-7404227f9795") + (property "Reference" "J_PWR" (at 82.55000000000001 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "15V_DC_IN" (at 82.55000000000001 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 80.01 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 80.01 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 80.01 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "32ee5f27-8526-5407-aaa5-2624a8431ab2")) + (pin "2" (uuid "c97b89b9-8fc6-50bc-86b9-2b4d1e9aa61b")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "J_PWR") (unit 1)))) + ) + (label "+15V_IN" + (at 74.93 80.01 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "6a0186bc-1b0f-5d02-9cc9-2b58ad665a19") + ) + (symbol + (lib_id "power:GND") + (at 74.93 82.55 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "8def5da0-db83-5909-a5b9-32339f4cb34b") + (property "Reference" "#PWRJ_PWR2" (at 74.93 85.55 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 74.93 84.55 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 74.93 82.55 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 74.93 82.55 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "1deae2c7-a33b-55bc-8f85-710875dc61eb")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRJ_PWR2") (unit 1)))) + ) + (symbol + (lib_id "Power_Management:LM74700") + (at 119.38 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "e1d47221-0b9d-5e63-9c6b-2f617f5b1bb0") + (property "Reference" "D_REV" (at 121.92 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "LM74700-Q1" (at 121.92 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 119.38 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 119.38 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 119.38 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "93e07f85-de89-51b3-b20e-46d6f423cc5a")) + (pin "2" (uuid "cf6745a0-40a2-5342-b0be-a3f9b6729aa6")) + (pin "3" (uuid "bd09d25c-11ed-5241-a16a-d5532b0e266a")) + (pin "4" (uuid "c867d754-56c1-502e-896f-4ee34d25f950")) + (pin "5" (uuid "2bf914a5-e64b-588d-8a13-468583e7a939")) + (pin "6" (uuid "1f815a26-d4c1-5179-b6e2-12b4cff852cd")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "D_REV") (unit 1)))) + ) + (label "+15V_IN" + (at 111.76 69.85 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f3718e41-1f27-5599-bf84-1faaf54302ba") + ) + (label "+15V_IN" + (at 106.68 85.09 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "3a6f2938-bcc7-54f3-8919-8488e03126d3") + ) + (label "VIN_PROT" + (at 127.0 69.85 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "e9a16564-356b-57fd-9f38-09da0a780ac9") + ) + (label "GATE_REV" + (at 119.38 69.85 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "31d2d6c3-274d-5315-9bbe-6d57d895cf79") + ) + (label "VCAP_REV" + (at 106.68 82.55 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "e9f15989-c80c-5d09-89b5-f5ee1789b3b3") + ) + (symbol + (lib_id "power:GND") + (at 119.38 90.17 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f9767a09-25e4-52e9-a73f-aca3afe030a4") + (property "Reference" "#PWRD_REV2" (at 119.38 93.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 119.38 92.17 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 119.38 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 119.38 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "4a09d51f-8a89-55f3-a1d8-27d95495670a")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRD_REV2") (unit 1)))) + ) + (symbol + (lib_id "Transistor_FET:Q_NMOS_GDS") + (at 139.7 90.17 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "ef966840-dbbf-56d1-97bb-f4f2fd044f98") + (property "Reference" "Q_REV" (at 142.23999999999998 89.17 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "CSD18540 (Vds>=30V)" (at 142.23999999999998 91.17 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Package_TO_SOT_SMD:TO-263-2" (at 139.7 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 139.7 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 139.7 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "94370b7d-192e-53f7-b251-68df884a1fff")) + (pin "2" (uuid "99de816e-caa0-527a-a8d0-ef007cc8acb0")) + (pin "3" (uuid "86396f6b-7a08-5266-b2ee-d077f878dd92")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "Q_REV") (unit 1)))) + ) + (label "GATE_REV" + (at 134.62 90.17 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f85b1430-45a9-5342-b097-28e8b8534cf7") + ) + (label "VIN_PROT" + (at 142.24 85.09 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f2da23ac-a512-5cb1-a414-6898e0fb3258") + ) + (label "+15V_IN" + (at 142.24 95.25 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "b4dbc2e9-bd58-5415-a7c3-9e227b76df09") + ) + (symbol + (lib_id "Device:C") + (at 119.38 100.33 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "e663a40a-0120-5745-ae82-4ba6f6493de7") + (property "Reference" "C_VCAP" (at 121.92 99.33 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "1u" (at 121.92 101.33 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 119.38 100.33 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 119.38 100.33 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 119.38 100.33 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "ee6cb68c-edba-5f32-aec9-77a20a0c8af4")) + (pin "2" (uuid "c8d009ee-0f10-5832-8bd2-d7d0964a4297")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_VCAP") (unit 1)))) + ) + (label "VCAP_REV" + (at 119.38 96.52 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "5f91176d-3a87-5b4d-87eb-31fc203e3848") + ) + (symbol + (lib_id "power:GND") + (at 119.38 104.14 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "4ab12bfc-dd31-59f3-9d55-00ce58765061") + (property "Reference" "#PWRC_VCAP2" (at 119.38 107.14 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 119.38 106.14 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 119.38 104.14 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 119.38 104.14 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "7ad03b45-36a7-5dd2-b4b5-aa8d8d2bae6b")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_VCAP2") (unit 1)))) + ) + (symbol + (lib_id "Device:D_TVS") + (at 160.02 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "cdc750b8-ea53-5f55-ac5d-7788ac206958") + (property "Reference" "TVS_IN" (at 162.56 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "SMBJ18A" (at 162.56 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Diode_SMD:D_SMB" (at 160.02 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 160.02 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 160.02 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "897afdc2-3b0c-5c38-b6a9-3ee119f7ffd6")) + (pin "2" (uuid "4b2bf424-5028-5456-8022-7deb26c87c66")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "TVS_IN") (unit 1)))) + ) + (label "VIN_PROT" + (at 156.21 80.01 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "19b62c7e-49d8-51bf-afac-22699cfdd064") + ) + (symbol + (lib_id "power:GND") + (at 163.83 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "3855c4fe-b4f0-5737-b42d-d3ca4d8cfadb") + (property "Reference" "#PWRTVS_IN2" (at 163.83 83.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 163.83 82.01 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 163.83 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 163.83 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "325a832a-c3a0-5b01-8994-7c42cb9dae92")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRTVS_IN2") (unit 1)))) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 170.18 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "307c2b9f-38c6-58a7-8692-3a828d80213e") + (property "Reference" "C_BULK1" (at 172.72 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100u/25V" (at 172.72 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:CP_Elec_8x10" (at 170.18 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 170.18 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "27a8dc89-4edd-54ae-b180-3f211178a4c0")) + (pin "2" (uuid "fa0aba18-7db3-56b5-bb36-38ac68b2db63")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_BULK1") (unit 1)))) + ) + (label "VIN_PROT" + (at 170.18 76.2 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "e1a66db3-3fdb-529b-bacc-9a7f17d059f1") + ) + (symbol + (lib_id "power:GND") + (at 170.18 83.82 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "8538b833-fc46-5d70-9c2d-3aa625b84450") + (property "Reference" "#PWRC_BULK12" (at 170.18 86.82 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 170.18 85.82 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 170.18 83.82 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 83.82 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "cb185ee6-fec2-57b3-9ae5-3a2d7b4735a9")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_BULK12") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 180.34 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "83e33833-3390-51a3-97f4-83f5c8472534") + (property "Reference" "C_BULK2" (at 182.88 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10u/50V" (at 182.88 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 180.34 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 180.34 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 180.34 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "4e66f5b1-0ef7-5a04-ac3c-49aa3ce3320c")) + (pin "2" (uuid "990c61f3-da1c-54a4-9a11-a092c117b6de")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_BULK2") (unit 1)))) + ) + (label "VIN_PROT" + (at 180.34 76.2 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "1da3dc49-77b0-5815-96f5-cbac8076c96c") + ) + (symbol + (lib_id "power:GND") + (at 180.34 83.82 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "11ae63ae-24fb-5048-a42f-7adeaec9aea2") + (property "Reference" "#PWRC_BULK22" (at 180.34 86.82 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 180.34 85.82 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 180.34 83.82 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 180.34 83.82 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "e1db4e81-845e-503a-8903-e40f9b98027c")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_BULK22") (unit 1)))) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 111.76 69.85 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f46453fa-0c06-59df-bc14-5d0d93dd5c2e") + (property "Reference" "#FLG15IN" (at 111.76 66.85 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "PWR_FLAG" (at 111.76 67.85 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 111.76 69.85 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 111.76 69.85 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "a1220450-13c7-5513-9e4c-61b56f70e298")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLG15IN") (unit 1)))) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 156.21 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "48ae8b91-206b-5bbd-a09f-c76f2def09a0") + (property "Reference" "#FLGVINP" (at 156.21 77.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "PWR_FLAG" (at 156.21 78.01 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 156.21 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 156.21 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "fcebb774-28ce-5368-b1fb-89af26485295")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGVINP") (unit 1)))) + ) + (sheet_instances + (path "/" + (page "5") + ) + ) +) diff --git a/tools/build_power.py b/tools/build_power.py new file mode 100644 index 0000000..e95a9f6 --- /dev/null +++ b/tools/build_power.py @@ -0,0 +1,160 @@ +#!/usr/bin/env python3 +"""build_power.py — generate the CM5-carrier Power sheet, stage by stage. + +Same connectivity model as build_ekey.py: every component pin gets a named label +(or a power:GND symbol) coincident with its connection point, so nets form by name +with no wire routing. Coords are grid-snapped to 1.27mm so labels bind to pins. + +STAGE 1 (this file): input protection — + J_PWR(15V) -> D_REV(LM74700 ideal-diode + Q_REV N-FET) -> VIN_PROT, with input TVS + + bulk. Reverse-polarity + reverse-current via the ideal-diode controller. +Later stages (bucks) append to PLACEMENTS and re-run. + +Datasheet items to CONFIRM against LM74700-Q1 (values, not topology): + - C_VCAP value/reference (charge-pump reservoir; ~1uF typ) + - EN handling (tied to +15V_IN for always-on; EN abs-max covers 15V) + - Q_REV FET pick (Vds>=30V, low Rds(on), SOA for inrush) + optional gate resistor + - TVS standoff (SMBJ18A: 18V standoff / ~29V clamp < buck Vin rating) +""" +import re, sys, os, uuid as uuidlib + +ROOT_UUID = "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" +PROJECT = "CM5IO" +KSS = "/Applications/KiCad/KiCad.app/Contents/SharedSupport/symbols" +HERE = os.path.dirname(os.path.abspath(__file__)) +CARRIER = os.path.join(HERE, "..", "carrier") + +def U(label): return str(uuidlib.uuid5(uuidlib.NAMESPACE_DNS, "cm5carrier-power-" + label)) +SHEET_SYMBOL_UUID = U("sheet-symbol") +SHEET_FILE_UUID = U("sheet-file") + +def g(v): return round(round(v / 1.27) * 1.27, 2) + +def paren_end(t, s): + d = 0 + for i in range(s, len(t)): + if t[i] == '(': d += 1 + elif t[i] == ')': + d -= 1 + if d == 0: return i + 1 + raise ValueError("unbalanced") + +def get_symbol(text, name): + m = re.search(r'\(symbol\s+"' + re.escape(name) + r'"', text) + return text[m.start():paren_end(text, m.start())] if m else None + +def lib_pins(seg): + out = {} + for pm in re.finditer(r'\(pin\b', seg): + s = pm.start(); ps = seg[s:paren_end(seg, s)] + at = re.search(r'\(at\s+([\d.-]+)\s+([\d.-]+)\s+([\d.-]+)\)', ps) + nu = re.search(r'\(number\s+"([^"]+)"', ps) + if at and nu: + out.setdefault(nu.group(1), (float(at.group(1)), float(at.group(2)), float(at.group(3)))) + return out + +# ---- lib_symbol sources ----------------------------------------------------------- +carrier_hs = open(os.path.join(CARRIER, "CM5_HighSpeed.kicad_sch")).read() +LIBS = {} # lib_id -> (embed_block, {pin:(lx,ly,ang)}) +def add_from(lib_id, srctext, srcname=None): + srcname = srcname or lib_id.split(':')[-1] + blk = get_symbol(srctext, lib_id) or get_symbol(srctext, srcname) + if not blk: sys.exit("missing lib_symbol " + lib_id) + if ('"' + lib_id + '"') not in blk[:60]: + blk = blk.replace('(symbol "' + srcname + '"', '(symbol "' + lib_id + '"', 1) + LIBS[lib_id] = (blk, lib_pins(blk)) + +# reuse R/C/C_Polarized/GND verbatim from the carrier (guaranteed compatible) +for lid in ["Device:R", "Device:C", "Device:C_Polarized", "power:GND"]: + add_from(lid, carrier_hs) +# from KiCad libs (renamed to full lib_id) +add_from("power:PWR_FLAG", open(f"{KSS}/power.kicad_sym").read(), "PWR_FLAG") +add_from("Power_Management:LM74700", open(f"{KSS}/Power_Management.kicad_sym").read(), "LM74700") +add_from("Transistor_FET:Q_NMOS_GDS", open(f"{KSS}/Transistor_FET.kicad_sym").read(), "Q_NMOS_GDS") +add_from("Device:D_TVS", open(f"{KSS}/Device.kicad_sym").read(), "D_TVS") +add_from("Connector:Screw_Terminal_01x02", open(f"{KSS}/Connector.kicad_sym").read(), "Screw_Terminal_01x02") + +# ---- placement engine ------------------------------------------------------------- +body = [] +def emit_label(net, x, y, ang=0): + body.append(f'\t(label "{net}"\n\t\t(at {x} {y} {ang})\n' + f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("l-"+net+f"-{x}-{y}")}")\n\t)\n') +def emit_glabel(net, x, y, ang=0): + body.append(f'\t(global_label "{net}"\n\t\t(shape input)\n\t\t(at {x} {y} {ang})\n' + f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("gl-"+net+f"-{x}-{y}")}")\n\t)\n') +def emit_gnd(x, y, tag): + body.append(f'\t(symbol\n\t\t(lib_id "power:GND")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("gnd-"+tag)}")\n' + f'\t\t(property "Reference" "#PWR{tag}" (at {x} {y+3} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Value" "GND" (at {x} {y+2} 0) (effects (font (size 1.27 1.27))))\n' + f'\t\t(property "Footprint" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Datasheet" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(pin "1" (uuid "{U("gp-"+tag)}"))\n' + f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "#PWR{tag}") (unit 1))))\n\t)\n') +def emit_flag(x, y, tag): + body.append(f'\t(symbol\n\t\t(lib_id "power:PWR_FLAG")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("flg-"+tag)}")\n' + f'\t\t(property "Reference" "#FLG{tag}" (at {x} {y-3} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Value" "PWR_FLAG" (at {x} {y-2} 0) (effects (font (size 1.27 1.27))))\n' + f'\t\t(property "Footprint" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Datasheet" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(pin "1" (uuid "{U("fp-"+tag)}"))\n' + f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "#FLG{tag}") (unit 1))))\n\t)\n') + +def place(lib_id, ref, value, footprint, ox, oy, pin_nets): + """Place a symbol at grid-snapped (ox,oy); attach each pin's net by name. + pin_nets: {pinnum: 'NET' | ('gnd',) }. GND pins use a power:GND symbol.""" + ox, oy = g(ox), g(oy) + _, pins = LIBS[lib_id] + extra = ('\t\t(property "Description" "" (at %g %g 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' % (ox, oy)) + sym = (f'\t(symbol\n\t\t(lib_id "{lib_id}")\n\t\t(at {ox} {oy} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("sym-"+ref)}")\n' + f'\t\t(property "Reference" "{ref}" (at {ox+2.54} {oy-1} 0) (effects (font (size 1.27 1.27)) (justify left)))\n' + f'\t\t(property "Value" "{value}" (at {ox+2.54} {oy+1} 0) (effects (font (size 1.27 1.27)) (justify left)))\n' + f'\t\t(property "Footprint" "{footprint}" (at {ox} {oy} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Datasheet" "" (at {ox} {oy} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + extra) + for num in sorted(pins, key=lambda n: int(re.sub(r'\D', '', n) or 0)): + sym += f'\t\t(pin "{num}" (uuid "{U("p-"+ref+"-"+num)}"))\n' + sym += f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "{ref}") (unit 1))))\n\t)\n' + body.append(sym) + for num, net in pin_nets.items(): + lx, ly, _ = pins[num]; px, py = round(ox + lx, 2), round(oy - ly, 2) + if net == ('gnd',): emit_gnd(px, py, ref + num) + elif isinstance(net, tuple) and net[0] == 'global': emit_glabel(net[1], px, py) + else: emit_label(net, px, py) + return ox, oy + +# ---- STAGE 1: input protection ---------------------------------------------------- +GND = ('gnd',) +place("Connector:Screw_Terminal_01x02", "J_PWR", "15V_DC_IN", "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal", + 80, 80, {'1': '+15V_IN', '2': GND}) +drev = place("Power_Management:LM74700", "D_REV", "LM74700-Q1", "Package_TO_SOT_SMD:SOT-23-6", + 120, 80, {'6': '+15V_IN', '3': '+15V_IN', '4': 'VIN_PROT', '5': 'GATE_REV', '1': 'VCAP_REV', '2': GND}) +place("Transistor_FET:Q_NMOS_GDS", "Q_REV", "CSD18540 (Vds>=30V)", "Package_TO_SOT_SMD:TO-263-2", + 140, 90, {'1': 'GATE_REV', '2': 'VIN_PROT', '3': '+15V_IN'}) +place("Device:C", "C_VCAP", "1u", "Capacitor_SMD:C_0402_1005Metric", 120, 100, {'1': 'VCAP_REV', '2': GND}) +tvs = place("Device:D_TVS", "TVS_IN", "SMBJ18A", "Diode_SMD:D_SMB", 160, 80, {'1': 'VIN_PROT', '2': GND}) +place("Device:C_Polarized", "C_BULK1", "100u/25V", "Capacitor_SMD:CP_Elec_8x10", 170, 80, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_BULK2", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 180, 80, {'1': 'VIN_PROT', '2': GND}) +# PWR_FLAGs co-located exactly on real pins so they bind: +15V_IN @ D_REV.6 (ANODE), +# VIN_PROT @ TVS.1 (a power_in driver for VIN_PROT, needed once bucks consume it). +def pin_abs(origin, lib_id, num): + lx, ly, _ = LIBS[lib_id][1][num] + return round(origin[0] + lx, 2), round(origin[1] - ly, 2) +fx, fy = pin_abs(drev, "Power_Management:LM74700", "6"); emit_flag(fx, fy, "15IN") +vx, vy = pin_abs(tvs, "Device:D_TVS", "1"); emit_flag(vx, vy, "VINP") + +# ---- file scaffold ---------------------------------------------------------------- +libsyms = "\n".join(blk for blk, _ in LIBS.values()) +sheet = ('(kicad_sch\n\t(version 20231120)\n\t(generator "eeschema")\n\t(generator_version "8.0")\n' + f'\t(uuid "{SHEET_FILE_UUID}")\n\t(paper "A4")\n' + '\t(title_block\n\t\t(title "CM5 Carrier - Power")\n\t\t(rev "A")\n' + '\t\t(comment 1 "15V inlet -> ideal-diode -> VIN_PROT -> 3 bucks (+5V, +3V3_RF, +3V3_AUX)")\n\t)\n' + '\t(lib_symbols\n' + libsyms + '\n\t)\n' + "".join(body) + + '\t(sheet_instances\n\t\t(path "/"\n\t\t\t(page "5")\n\t\t)\n\t)\n)\n') +assert sheet.count('(') == sheet.count(')'), f"UNBALANCED {sheet.count('(')} vs {sheet.count(')')}" +print("sheet-symbol uuid:", SHEET_SYMBOL_UUID) +print("parens balanced:", sheet.count('(')) +out = os.path.join(CARRIER, "Power.kicad_sch") +if '--apply' in sys.argv: open(out, 'w').write(sheet); print("WROTE " + out) +else: print("DRY RUN (--apply to write)") From fd627f512bce35983390130f32494a45c3813693 Mon Sep 17 00:00:00 2001 From: noise Date: Wed, 1 Jul 2026 18:31:26 -0400 Subject: [PATCH 05/16] Power stage 2: LM61460-Q1 15V->+5v 5A sync buck (SPICE-verified 5.02V) Second power stage. U_BUCK5 = LM61460-Q1 (6A, 42V abs-max synchronous). No KiCad symbol existed, so built one from the TI datasheet (SNVSB70F: 14-pin HTSSOP-1EP + EP, VREF=1.0V) and added it to the project library carrier/CM5IO.kicad_sym as CM5IO:LM61460-Q1. - FB divider R_FBT5 40.2k / R_FBB5 10.0k -> 5.02V (SPICE-confirmed vfb=1.0V=VREF at 5.02V); L5 4.7uH, Cout 2x47u/16V, Cin 2x10u/50V, Cboot 100n+Rboot, RT 31.6k (~400kHz), BIAS->+5v, EN->VIN_PROT - +5v pre-exists in the carrier as a hierarchical net -> exposed via a hierarchical label + a +5v sheet pin on the Power symbol, tied into the root +5v net (a global label would trip same_local_global_label). Netlist confirms the buck now sources Module1 + GPIO headers + USB. - FB pin typed passive (high-Z sense) to clear an analyzer no_driver - build_power.py: register_lm61460(), Device:L, HIER_NETS/emit_hlabel Verify: ERC 133->133 (zero new); analyzer +32 added, 0 regressions; SPICE 12/13 pass, 0 fail (1 benign warn: L5/Cboot mis-grouped as LC). Confirm vs datasheet: RT freq, L saturation >=7A, EP=pad15, EN UVLO. Co-Authored-By: Claude Opus 4.8 (1M context) --- PORT_STATUS.md | 3 +- carrier/CM5IO.kicad_sch | 10 + carrier/CM5IO.kicad_sym | 20515 +++++++++++++++++++------------------- carrier/Power.kicad_sch | 763 ++ tools/build_power.py | 63 + 5 files changed, 11133 insertions(+), 10221 deletions(-) diff --git a/PORT_STATUS.md b/PORT_STATUS.md index 4688527..e4a24c7 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -99,7 +99,8 @@ Notes that bit us (don't re-learn the hard way): is inherent to the M.2 connector (INFO, not fixable). New tool: `tools/build_ekey.py` (place connector + auto-NC + labels). 4. **Power sheet** (`carrier/Power.kicad_sch`, generated by `tools/build_power.py`) — staged, **sync + datasheet-built parts** (user choice). **Spec rating fix:** the spec's buck candidates miss its own ≥20V-Vin rule (TPS54424=17V, TPS54560=async) — selecting synchronous ≥30V parts instead (LM61460-class 6A for +5V & +3V3_RF/4A; TPS54202 28V for +3V3_AUX), each verified vs datasheet before commit. - **Stage 1 — input protection ✅ DONE.** J_PWR(15V) → D_REV `LM74700-Q1` ideal-diode + Q_REV N-FET (reverse-polarity/-current) → `VIN_PROT`; `SMBJ18A` TVS + 100µF/25V ∥ 10µF/50V bulk; C_VCAP charge-pump cap. Netlist-verified topology; ERC 133→133 (zero new); analyzer 0 regressions. **Confirm vs LM74700-Q1 datasheet:** C_VCAP value, EN-to-+15V_IN, FET pick (Vds≥30V, SOA/inrush) + optional gate R. - - **Stage 2** U_BUCK5 15→5V 5A → `+5V`. **Stage 3** U_BUCK33R 15→3.3V 4A → `+3V3_RF` (then REMOVE the E-key temp PWR_FLAG; wire buck EN ← CM5 `PCIE_PWR_EN`/106). **Stage 4** U_BUCK33A 15→3.3V 1A → `+3V3_AUX`. SPICE-validate each feedback divider (like the reference U8/AP3441). + - **Stage 2 — U_BUCK5 15→`+5v` 5A ✅ DONE.** `LM61460-Q1` (6A, 42V absmax sync; **custom symbol built from the datasheet** → `carrier/CM5IO.kicad_sym` as `CM5IO:LM61460-Q1`, fp `Package_SO:Texas_HTSSOP-14-1EP…ThermalVias`). VREF=1.0V → FB divider R_FBT5 40.2k / R_FBB5 10.0k = **5.02V (SPICE-confirmed vfb=1.0V)**. L5 4.7µH, Cout 2×47µF/16V, Cin 2×10µF/50V, Cboot 100n+Rboot 4.7Ω, RT 31.6k(~400kHz), BIAS→+5v, EN→VIN_PROT, PGOOD 100k→+5v. **`+5v` kept HIERARCHICAL** (pre-existing carrier net; global would collide `same_local_global_label`) — Power sheet exposes a `+5v` sheet pin, tied into the root `+5v` net; netlist-verified it drives Module1 + GPIO + USB. ERC 133→133 (zero new); analyzer +32 added **0 regressions**; SPICE 12/13 pass, 1 benign warn (L5/Cboot mis-detected as LC filter). **Confirm vs datasheet:** RT freq, L sat ≥7A, EP=pad15, optional EN UVLO divider. + - **Stage 3** U_BUCK33R 15→3.3V 4A → `+3V3_RF` (then REMOVE the E-key temp PWR_FLAG; wire buck EN ← CM5 `PCIE_PWR_EN`/106). **Stage 4** U_BUCK33A 15→3.3V 1A → `+3V3_AUX`. SPICE-validate each feedback divider. 5. **GPS + PPS distribution**: GPS connector (PPS+UART+3V3+GND); PPS → TVS → Schmitt (LVC1G17) → fan-out: CM5 `Ethernet_SYNC_OUT` (J2 pin-6 net, 3.3V, no translator) + 2 header taps. SPICE/timing check. diff --git a/carrier/CM5IO.kicad_sch b/carrier/CM5IO.kicad_sch index b7ef82b..3154767 100644 --- a/carrier/CM5IO.kicad_sch +++ b/carrier/CM5IO.kicad_sch @@ -3477,8 +3477,18 @@ (uuid "9c7ccf72-dd3e-5ed3-bb43-2939833eb069") (property "Sheetname" "Power" (at 205 56.18 0) (effects (font (size 1.27 1.27)) (justify left bottom))) (property "Sheetfile" "Power.kicad_sch" (at 205 57.45 0) (effects (font (size 1.27 1.27)) (justify left top))) + (pin "+5v" passive + (at 205 66 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "6a42935f-df5f-5ead-a94c-89074919a7c3") + ) (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "5")))) ) + (label "+5v" + (at 205 66 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f1109a7e-4bfb-54f4-a32e-e6719bad4ba8") + ) (sheet_instances (path "/" (page "1") diff --git a/carrier/CM5IO.kicad_sym b/carrier/CM5IO.kicad_sym index 8eea764..ced9c27 100644 --- a/carrier/CM5IO.kicad_sym +++ b/carrier/CM5IO.kicad_sym @@ -1,10220 +1,10295 @@ -(kicad_symbol_lib - (version 20231120) - (generator "kicad_symbol_editor") - (generator_version "8.0") - (symbol "74LVC1G07_copy" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at -2.54 3.81 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "74LVC1G07_copy" - (at 0 -3.81 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-353_SC-70-5" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Single Buffer Gate w/ Open Drain, Low-Voltage CMOS" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "Single Gate Buff LVC CMOS Open Drain" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "SOT* SG-*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "74LVC1G07_copy_0_1" - (polyline - (pts - (xy -2.54 -0.635) (xy -1.27 -0.635) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.81 2.54) (xy -3.81 -2.54) (xy 2.54 0) (xy -3.81 2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.905 0.635) (xy -2.54 0) (xy -1.905 -0.635) (xy -1.27 0) (xy -1.905 0.635) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "74LVC1G07_copy_1_1" - (pin no_connect line - (at -6.35 -2.54 0) - (length 2.54) - (name "nc" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -7.62 0 0) - (length 3.81) - (name "~" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "2" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin power_in line - (at 0 -2.54 270) - (length 0) - (name "GND" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "3" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin open_collector line - (at 6.35 0 180) - (length 3.81) - (name "~" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "4" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin power_in line - (at 0 2.54 90) - (length 0) - (name "VCC" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "5" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - ) - ) - (symbol "AP2553W6" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at 3.81 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "AP2553W6" - (at -3.81 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" - (at 3.81 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP255x.pdf" - (at 3.81 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Digikey" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "AP2553W6-7DICT-ND" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "AP2553W6_0_0" - (pin power_in line - (at -8.89 2.54 0) - (length 2.54) - (name "IN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at -8.89 0 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -8.89 -2.54 0) - (length 2.54) - (name "EN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 7.62 -2.54 180) - (length 2.54) - (name "nFault" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 7.62 0 180) - (length 2.54) - (name "ILIM" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 7.62 2.54 180) - (length 2.54) - (name "OUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "AP2553W6_0_1" - (rectangle - (start -6.35 5.08) - (end 5.08 -5.08) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - ) - (symbol "AP3441SHE-7B" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at -6.35 10.16 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "AP3441SHE-7B" - (at 0 7.62 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_DFN_QFN:DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm" - (at 1.27 -7.62 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP3441-L.pdf" - (at 0 -10.16 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "AP3441SHE-7B_0_1" - (rectangle - (start -6.35 6.35) - (end 6.35 -3.81) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "AP3441SHE-7B_1_1" - (pin passive line - (at -8.89 5.08 0) - (length 2.54) - (name "FB" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at -8.89 2.54 0) - (length 2.54) - (name "PG" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 0 0) - (length 2.54) - (name "VIN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 -2.54 0) - (length 2.54) - (name "PGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 8.89 -2.54 180) - (length 2.54) - (name "nc" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 8.89 0 180) - (length 2.54) - (name "LX" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 8.89 2.54 180) - (length 2.54) - (name "EN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 8.89 5.08 180) - (length 2.54) - (name "SGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 1.27 -6.35 90) - (length 2.54) - (name "PAD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "ASEK-32.768KHZ-L-R-T" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at -5.08 6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "ASEK-32.768KHZ-L-R-T" - (at 0 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" - (at 1.27 -8.89 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://abracon.com/Oscillators/ASEK.pdf" - (at 0 -11.43 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "ASEK-32.768KHZ-L-R-T_0_1" - (rectangle - (start -6.35 5.08) - (end 6.35 -5.08) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "ASEK-32.768KHZ-L-R-T_1_1" - (pin input line - (at -8.89 3.81 0) - (length 2.54) - (name "EN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 -3.81 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 8.89 -3.81 180) - (length 2.54) - (name "Out" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 8.89 3.81 180) - (length 2.54) - (name "VDD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "Bus_M.2_Socket_M" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "J" - (at -22.86 46.99 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "Bus_M.2_Socket_M" - (at 30.988 46.99 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 26.67 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 0 26.67 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "M.2 Socket 3 Mechanical Key M" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "M2 NGNF PCI-E" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "*M*2*M*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "Bus_M.2_Socket_M_0_1" - (rectangle - (start -22.86 45.72) - (end 22.86 -45.72) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - ) - (symbol "Bus_M.2_Socket_M_1_1" - (pin power_in line - (at -20.32 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 25.4 -10.16 180) - (length 2.54) - (name "DAS/~{DSS}/~{LED1}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 0 0) - (length 2.54) - (name "PERn3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -3.81 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 2.54 0) - (length 2.54) - (name "PERp3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -1.27 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -12.7 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 1.27 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 5.08 0) - (length 2.54) - (name "PETn2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 3.81 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 7.62 0) - (length 2.54) - (name "PETp2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 2.54 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -10.16 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "21" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 5.08 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "22" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 10.16 0) - (length 2.54) - (name "PERn2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "23" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 7.62 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "24" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 12.7 0) - (length 2.54) - (name "PERp2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "25" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 10.16 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "26" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -7.62 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "27" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 12.7 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "28" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 15.24 0) - (length 2.54) - (name "PETn1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "29" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -17.78 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 15.24 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "30" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 17.78 0) - (length 2.54) - (name "PETp1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "31" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 17.78 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "32" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -5.08 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "33" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 20.32 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "34" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 20.32 0) - (length 2.54) - (name "PERn1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "35" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 22.86 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "36" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 22.86 0) - (length 2.54) - (name "PERp1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "37" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 -22.86 0) - (length 2.54) - (name "DEVSLP" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "38" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -2.54 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "39" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -6.35 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 25.4 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "40" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 25.4 0) - (length 2.54) - (name "PETn0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "41" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 27.94 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "42" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 27.94 0) - (length 2.54) - (name "PETp0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "43" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 30.48 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "44" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "45" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 33.02 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "46" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 30.48 0) - (length 2.54) - (name "PERn0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "47" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 35.56 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "48" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 33.02 0) - (length 2.54) - (name "PERp0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "49" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 -5.08 0) - (length 2.54) - (name "PETn3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 43.18 0) - (length 2.54) - (name "~{PERST}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "50" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "51" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -25.4 40.64 0) - (length 2.54) - (name "~{CLKREQ}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "52" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 -38.1 0) - (length 2.54) - (name "REFCLKn" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "53" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -25.4 38.1 0) - (length 2.54) - (name "~{PEWAKE}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "54" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -25.4 -35.56 0) - (length 2.54) - (name "REFCLKp" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "55" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 38.1 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "56" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 5.08 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "57" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 40.64 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "58" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 -2.54 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 -5.08 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "67" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 25.4 -27.94 180) - (length 2.54) - (name "SUSCLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "68" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -20.32 180) - (length 2.54) - (name "PEDET" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "69" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -25.4 -2.54 0) - (length 2.54) - (name "PETp3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 6.35 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "70" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 7.62 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "71" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 8.89 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "72" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 10.16 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "73" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 11.43 48.26 270) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "74" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 12.7 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "75" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 22.86 0 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -15.24 -48.26 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -39.37 180) - (length 2.54) - (name "GND2230" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "M1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -36.83 180) - (length 2.54) - (name "GND2242" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "M2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -34.29 180) - (length 2.54) - (name "GND2260" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "M3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -31.75 180) - (length 2.54) - (name "GND2280" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "M4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -41.91 180) - (length 2.54) - (name "S1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "S1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 25.4 -44.45 180) - (length 2.54) - (name "S2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "S2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "ComputeModule5-CM5" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "Module" - (at 113.03 -68.58 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "ComputeModule5-CM5" - (at 140.97 2.54 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "CM5IO:Raspberry-Pi-5-Compute-Module" - (at 142.24 -26.67 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 142.24 -26.67 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "RaspberryPi Compute module 5 " - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Amphenol" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Field5" "2x 10164227-1001A1RLF" - (at 0 -2.54 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_locked" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "ComputeModule5-CM5_1_0" - (text "GPIO" - (at 0 6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (symbol "ComputeModule5-CM5_1_1" - (rectangle - (start -30.48 -71.12) - (end 25.4 58.42) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (text "600mA Max" - (at -8.89 -53.34 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (text "600mA Max" - (at -8.89 -48.26 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (text "NB SD signals are only available" - (at -1.27 -27.94 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (text "on modules without eMMC" - (at -1.27 -30.48 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin power_in line - (at 27.94 55.88 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 45.72 0) - (length 2.54) - (name "Ethernet_Pair0_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -68.58 0) - (length 2.54) - (name "CAM_GPIO1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "100" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 43.18 180) - (length 2.54) - (name "Ethernet_Pair2_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 43.18 0) - (length 2.54) - (name "Ethernet_Pair0_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 40.64 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 40.64 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 27.94 38.1 180) - (length 2.54) - (name "Ethernet_nLED3(3.3v)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -33.02 38.1 0) - (length 2.54) - (name "FAN_TACHO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 27.94 35.56 180) - (length 2.54) - (name "Ethernet_nLED2(3.3v)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -33.02 35.56 0) - (length 2.54) - (name "Ethernet_SYNC_OUT(3.3v)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 27.94 33.02 180) - (length 2.54) - (name "FAN_PWM" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 55.88 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 33.02 0) - (length 2.54) - (name "EEPROM_nWP" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 27.94 30.48 180) - (length 2.54) - (name "LED_nACT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "21" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 30.48 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "22" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 27.94 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "23" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 27.94 0) - (length 2.54) - (name "GPIO26" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "24" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 25.4 180) - (length 2.54) - (name "GPIO21" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "25" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 25.4 0) - (length 2.54) - (name "GPIO19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "26" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 22.86 180) - (length 2.54) - (name "GPIO20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "27" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 22.86 0) - (length 2.54) - (name "GPIO13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "28" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 20.32 180) - (length 2.54) - (name "GPIO16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "29" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 53.34 180) - (length 2.54) - (name "Ethernet_Pair3_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 20.32 0) - (length 2.54) - (name "GPIO6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "30" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 17.78 180) - (length 2.54) - (name "GPIO12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "31" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 17.78 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "32" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 15.24 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "33" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 15.24 0) - (length 2.54) - (name "GPIO5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "34" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 12.7 180) - (length 2.54) - (name "ID_SC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "35" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 12.7 0) - (length 2.54) - (name "ID_SD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "36" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 10.16 180) - (length 2.54) - (name "GPIO7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "37" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 10.16 0) - (length 2.54) - (name "GPIO11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "38" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 7.62 180) - (length 2.54) - (name "GPIO8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "39" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 53.34 0) - (length 2.54) - (name "Ethernet_Pair1_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 7.62 0) - (length 2.54) - (name "GPIO9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "40" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 5.08 180) - (length 2.54) - (name "GPIO25" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "41" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 5.08 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "42" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 2.54 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "43" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 2.54 0) - (length 2.54) - (name "GPIO10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "44" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 0 180) - (length 2.54) - (name "GPIO24" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "45" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 0 0) - (length 2.54) - (name "GPIO22" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "46" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -2.54 180) - (length 2.54) - (name "GPIO23" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "47" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -2.54 0) - (length 2.54) - (name "GPIO27" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "48" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -5.08 180) - (length 2.54) - (name "GPIO18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "49" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 50.8 180) - (length 2.54) - (name "Ethernet_Pair3_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -5.08 0) - (length 2.54) - (name "GPIO17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "50" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -7.62 180) - (length 2.54) - (name "GPIO15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "51" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 -7.62 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "52" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -10.16 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "53" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -10.16 0) - (length 2.54) - (name "GPIO4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "54" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -12.7 180) - (length 2.54) - (name "GPIO14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "55" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -12.7 0) - (length 2.54) - (name "GPIO3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "56" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -15.24 180) - (length 2.54) - (name "SD_CLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "57" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -15.24 0) - (length 2.54) - (name "GPIO2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "58" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -17.78 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "59" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 50.8 0) - (length 2.54) - (name "Ethernet_Pair1_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 -17.78 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "60" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -20.32 180) - (length 2.54) - (name "SD_DAT3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "61" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -20.32 0) - (length 2.54) - (name "SD_CMD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "62" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -22.86 180) - (length 2.54) - (name "SD_DAT0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "63" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -22.86 0) - (length 2.54) - (name "SD_DAT5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "64" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -25.4 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "65" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 -25.4 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "66" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -27.94 180) - (length 2.54) - (name "SD_DAT1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "67" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -27.94 0) - (length 2.54) - (name "SD_DAT4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "68" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -30.48 180) - (length 2.54) - (name "SD_DAT2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "69" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 48.26 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -30.48 0) - (length 2.54) - (name "SD_DAT7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "70" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -33.02 180) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "71" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -33.02 0) - (length 2.54) - (name "SD_DAT6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "72" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 27.94 -35.56 180) - (length 2.54) - (name "SD_VDD_Override" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "73" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 -35.56 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "74" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 27.94 -38.1 180) - (length 2.54) - (name "SD_PWR_ON" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "75" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -38.1 0) - (length 2.54) - (name "VBAT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "76" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -40.64 180) - (length 2.54) - (name "+5v_(Input)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "77" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 -40.64 0) - (length 2.54) - (name "GPIO_VREF(1.8v/3.3v_Input)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "78" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -43.18 180) - (length 2.54) - (name "+5v_(Input)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "79" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 48.26 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -43.18 0) - (length 2.54) - (name "SCL0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "80" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -45.72 180) - (length 2.54) - (name "+5v_(Input)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "81" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -45.72 0) - (length 2.54) - (name "SDA0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "82" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -48.26 180) - (length 2.54) - (name "+5v_(Input)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "83" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at -33.02 -48.26 0) - (length 2.54) - (name "+3.3v_(Output)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "84" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -50.8 180) - (length 2.54) - (name "+5v_(Input)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "85" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -50.8 0) - (length 2.54) - (name "+3.3v_(Output)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "86" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 27.94 -53.34 180) - (length 2.54) - (name "+5v_(Input)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "87" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at -33.02 -53.34 0) - (length 2.54) - (name "+1.8v_(Output)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "88" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 27.94 -55.88 180) - (length 2.54) - (name "WiFi_nDisable" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "89" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 45.72 180) - (length 2.54) - (name "Ethernet_Pair2_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -55.88 0) - (length 2.54) - (name "+1.8v_(Output)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "90" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 27.94 -58.42 180) - (length 2.54) - (name "BT_nDisable" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "91" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -58.42 0) - (length 2.54) - (name "PWR_BUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "92" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 27.94 -60.96 180) - (length 2.54) - (name "nRPIBOOT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "93" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -60.96 0) - (length 2.54) - (name "CC1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "94" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 27.94 -63.5 180) - (length 2.54) - (name "LED_nPWR" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "95" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -33.02 -63.5 0) - (length 2.54) - (name "CC2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "96" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 27.94 -66.04 180) - (length 2.54) - (name "CAM_GPIO0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "97" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -33.02 -66.04 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "98" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 27.94 -68.58 180) - (length 2.54) - (name "PMIC_ENABLE" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "99" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "ComputeModule5-CM5_2_1" - (rectangle - (start 114.3 -66.04) - (end 165.1 63.5) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (text "High Speed Serial" - (at 140.97 0 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin input line - (at 170.18 60.96 180) - (length 5.08) - (name "USB_OTG_ID" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "101" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 109.22 60.96 0) - (length 5.08) - (name "PCIe_nCLKREQ" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "102" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 170.18 58.42 180) - (length 5.08) - (name "USB2_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "103" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 109.22 58.42 0) - (length 5.08) - (name "PCIE_nWAKE" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "104" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 170.18 55.88 180) - (length 5.08) - (name "USB2_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "105" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 55.88 0) - (length 5.08) - (name "PCIE_PWR_EN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "106" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 53.34 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "107" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 53.34 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "108" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 50.8 180) - (length 5.08) - (name "PCIe_nRST" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "109" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 50.8 0) - (length 5.08) - (name "PCIe_CLK_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "110" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 48.26 180) - (length 5.08) - (name "VBUS_EN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "111" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 48.26 0) - (length 5.08) - (name "PCIe_CLK_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "112" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 45.72 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "113" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 45.72 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "114" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 43.18 180) - (length 5.08) - (name "MIPI0_D0_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "115" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 109.22 43.18 0) - (length 5.08) - (name "PCIe_RX_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "116" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 40.64 180) - (length 5.08) - (name "MIPI0_D0_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "117" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 109.22 40.64 0) - (length 5.08) - (name "PCIe_RX_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "118" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 38.1 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "119" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 38.1 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "120" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 35.56 180) - (length 5.08) - (name "MIPI0_D1_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "121" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 35.56 0) - (length 5.08) - (name "PCIe_TX_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "122" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 33.02 180) - (length 5.08) - (name "MIPI0_D1_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "123" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 33.02 0) - (length 5.08) - (name "PCIe_TX_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "124" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 30.48 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "125" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 30.48 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "126" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 27.94 180) - (length 5.08) - (name "MIPI0_C_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "127" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 109.22 27.94 0) - (length 5.08) - (name "USB3-0-RX_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "128" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 25.4 180) - (length 5.08) - (name "MIPI0_C_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "129" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 109.22 25.4 0) - (length 5.08) - (name "USB3-0-RX_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "130" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 22.86 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "131" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 22.86 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "132" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 20.32 180) - (length 5.08) - (name "MIPI0_D2_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "133" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 109.22 20.32 0) - (length 5.08) - (name "USB3-0-D_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "134" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 17.78 180) - (length 5.08) - (name "MIPI0_D2_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "135" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 109.22 17.78 0) - (length 5.08) - (name "USB3-0-D_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "136" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 15.24 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "137" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 15.24 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "138" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 12.7 180) - (length 5.08) - (name "MIPI0_D3_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "139" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 12.7 0) - (length 5.08) - (name "USB3-0-TX_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "140" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 10.16 180) - (length 5.08) - (name "MIPI0_D3_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "141" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 10.16 0) - (length 5.08) - (name "USB3-0-TX_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "142" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 7.62 180) - (length 5.08) - (name "HDMI1_HOTPLUG" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "143" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 7.62 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "144" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 170.18 5.08 180) - (length 5.08) - (name "HDMI1_SDA" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "145" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 5.08 0) - (length 5.08) - (name "HDMI1_TX2_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "146" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 170.18 2.54 180) - (length 5.08) - (name "HDMI1_SCL" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "147" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 2.54 0) - (length 5.08) - (name "HDMI1_TX2_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "148" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 170.18 0 180) - (length 5.08) - (name "HDMI1_CEC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "149" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 0 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "150" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 170.18 -2.54 180) - (length 5.08) - (name "HDMI0_CEC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "151" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -2.54 0) - (length 5.08) - (name "HDMI1_TX1_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "152" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 -5.08 180) - (length 5.08) - (name "HDMI0_HOTPLUG" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "153" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -5.08 0) - (length 5.08) - (name "HDMI1_TX1_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "154" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 -7.62 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "155" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 -7.62 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "156" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 -10.16 180) - (length 5.08) - (name "USB3-1-RX_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "157" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -10.16 0) - (length 5.08) - (name "HDMI1_TX0_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "158" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 170.18 -12.7 180) - (length 5.08) - (name "USB3-1-RX_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "159" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -12.7 0) - (length 5.08) - (name "HDMI1_TX0_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "160" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 -15.24 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "161" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 -15.24 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "162" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 170.18 -17.78 180) - (length 5.08) - (name "USB3-1-D_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "163" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -17.78 0) - (length 5.08) - (name "HDMI1_CLK_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "164" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 170.18 -20.32 180) - (length 5.08) - (name "USB3-1-D_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "165" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -20.32 0) - (length 5.08) - (name "HDMI1_CLK_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "166" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 -22.86 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "167" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 -22.86 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "168" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -25.4 180) - (length 5.08) - (name "USB3-1-TX_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "169" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -25.4 0) - (length 5.08) - (name "HDMI0_TX2_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "170" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -27.94 180) - (length 5.08) - (name "USB3-1-TX_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "171" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -27.94 0) - (length 5.08) - (name "HDMI0_TX2_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "172" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 -30.48 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "173" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 -30.48 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "174" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -33.02 180) - (length 5.08) - (name "MIPI1_D0_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "175" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -33.02 0) - (length 5.08) - (name "HDMI0_TX1_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "176" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -35.56 180) - (length 5.08) - (name "MIPI1_D0_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "177" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -35.56 0) - (length 5.08) - (name "HDMI0_TX1_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "178" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 -38.1 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "179" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 -38.1 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "180" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -40.64 180) - (length 5.08) - (name "MIPI1_D1_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "181" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -40.64 0) - (length 5.08) - (name "HDMI0_TX0_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "182" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -43.18 180) - (length 5.08) - (name "MIPI1_D1_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "183" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -43.18 0) - (length 5.08) - (name "HDMI0_TX0_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "184" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 -45.72 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "185" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 -45.72 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "186" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -48.26 180) - (length 5.08) - (name "MIPI1_C_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "187" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -48.26 0) - (length 5.08) - (name "HDMI0_CLK_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "188" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -50.8 180) - (length 5.08) - (name "MIPI1_C_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "189" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -50.8 0) - (length 5.08) - (name "HDMI0_CLK_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "190" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 -53.34 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "191" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 -53.34 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "192" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -55.88 180) - (length 5.08) - (name "MIPI1_D2_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "193" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -55.88 0) - (length 5.08) - (name "MIPI1_D3_N" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "194" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 170.18 -58.42 180) - (length 5.08) - (name "MIPI1_D2_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "195" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 109.22 -58.42 0) - (length 5.08) - (name "MIPI1_D3_P" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "196" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 170.18 -60.96 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "197" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 109.22 -60.96 0) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "198" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 170.18 -63.5 180) - (length 5.08) - (name "HDMI0_SDA" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "199" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 109.22 -63.5 0) - (length 5.08) - (name "HDMI0_SCL" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "200" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "HDMI_A_1.4" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "J" - (at -6.35 26.67 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "HDMI_A_1.4" - (at 10.16 26.67 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0.635 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://en.wikipedia.org/wiki/HDMI" - (at 0.635 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "HDMI 1.4+ type A connector" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "hdmi conn" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "HDMI*A*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "HDMI_A_1.4_0_0" - (polyline - (pts - (xy 8.128 16.51) (xy 8.128 18.034) - ) - (stroke - (width 0.635) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 16.51) (xy 0 18.034) (xy 0 17.272) (xy 1.905 17.272) (xy 1.905 18.034) (xy 1.905 16.51) - ) - (stroke - (width 0.635) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 2.667 18.034) (xy 4.318 18.034) (xy 4.572 17.78) (xy 4.572 16.764) (xy 4.318 16.51) (xy 2.667 16.51) - (xy 2.667 17.272) - ) - (stroke - (width 0.635) - (type default) - ) - (fill - (type none) - ) - ) - (pin passive line - (at 7.62 -27.94 90) - (length 2.54) - (name "SH" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "SH2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 7.62 -27.94 90) - (length 2.54) - (name "SH" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "SH3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 7.62 -27.94 90) - (length 2.54) - (name "SH" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "SH4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "HDMI_A_1.4_0_1" - (rectangle - (start -7.62 25.4) - (end 10.16 -25.4) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (polyline - (pts - (xy 2.54 8.89) (xy 3.81 8.89) (xy 5.08 6.35) (xy 5.08 -5.715) (xy 3.81 -8.255) (xy 2.54 -8.255) - (xy 2.54 8.89) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (polyline - (pts - (xy 5.334 16.51) (xy 5.334 18.034) (xy 6.35 18.034) (xy 6.35 16.51) (xy 6.35 18.034) (xy 7.112 18.034) - (xy 7.366 17.78) (xy 7.366 16.51) - ) - (stroke - (width 0.635) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 12.7) (xy 0 -12.7) (xy 3.81 -12.7) (xy 5.08 -10.16) (xy 7.62 -8.89) (xy 7.62 8.89) (xy 5.08 10.16) - (xy 3.81 12.7) (xy 0 12.7) - ) - (stroke - (width 0.635) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "HDMI_A_1.4_1_1" - (pin passive line - (at -10.16 20.32 0) - (length 2.54) - (name "D2+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 5.08 0) - (length 2.54) - (name "CK+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 -27.94 90) - (length 2.54) - (name "CKS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 2.54 0) - (length 2.54) - (name "CK-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -2.54 0) - (length 2.54) - (name "CEC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 -15.24 0) - (length 2.54) - (name "UTILITY/HEAC+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 -7.62 0) - (length 2.54) - (name "SCL" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -10.16 0) - (length 2.54) - (name "SDA" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 5.08 -27.94 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 27.94 270) - (length 2.54) - (name "+5V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 -17.78 0) - (length 2.54) - (name "HPD/HEAC-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -5.08 -27.94 90) - (length 2.54) - (name "D2S" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 17.78 0) - (length 2.54) - (name "D2-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 15.24 0) - (length 2.54) - (name "D1+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -2.54 -27.94 90) - (length 2.54) - (name "D1S" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 12.7 0) - (length 2.54) - (name "D1-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 10.16 0) - (length 2.54) - (name "D0+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 -27.94 90) - (length 2.54) - (name "D0S" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -10.16 7.62 0) - (length 2.54) - (name "D0-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 7.62 -27.94 90) - (length 2.54) - (name "SH" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "SH1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "M.2_Screw" - (pin_numbers hide) - (pin_names - (offset 0) hide) - (exclude_from_sim no) - (in_bom yes) - (on_board no) - (property "Reference" "M" - (at -0.254 -6.35 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "M.2 Screw" - (at 0.254 -8.636 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "M.2_Screw_0_1" - (polyline - (pts - (xy -5.08 0) (xy -5.08 -6.35) (xy -3.81 -6.35) (xy -3.81 -5.08) (xy -2.54 -5.08) (xy -2.54 -2.54) - (xy -1.27 -2.54) (xy -1.27 -5.08) (xy 0 -5.08) (xy 0 -2.54) (xy 1.27 -1.27) (xy 2.54 -2.54) (xy 3.81 -1.27) - (xy 5.08 -2.54) (xy 6.35 -1.27) (xy 6.35 1.27) (xy 5.08 2.54) (xy 3.81 1.27) (xy 2.54 2.54) (xy 1.27 1.27) - (xy 0 2.54) (xy 0 5.08) (xy -1.27 5.08) (xy -1.27 2.54) (xy -2.54 2.54) (xy -2.54 5.08) (xy -3.81 5.08) - (xy -3.81 6.35) (xy -5.08 6.35) (xy -5.08 0) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - ) - (symbol "MagJack-A70-112-331N126" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "MagJack-A70-112-331N126" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "MagJack-A70-112-331N126_0_1" - (polyline - (pts - (xy 1.27 40.64) (xy -5.08 40.64) (xy -5.08 48.26) (xy -2.54 48.26) (xy -5.08 48.26) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 60.96) (xy -5.08 60.96) (xy -5.08 68.58) (xy -2.54 68.58) (xy -5.08 68.58) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "MagJack-A70-112-331N126_1_1" - (rectangle - (start -17.78 1.27) - (end 12.7 74.93) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (arc - (start -2.54 42.545) - (mid -1.905 41.9127) - (end -1.27 42.545) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -2.54 50.165) - (mid -1.905 49.5327) - (end -1.27 50.165) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -2.54 62.865) - (mid -1.905 62.2327) - (end -1.27 62.865) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -2.54 70.485) - (mid -1.905 69.8527) - (end -1.27 70.485) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -1.27 38.735) - (mid -1.905 39.3673) - (end -2.54 38.735) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -1.27 42.545) - (mid -0.635 41.9127) - (end 0 42.545) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -1.27 46.355) - (mid -1.905 46.9873) - (end -2.54 46.355) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -1.27 50.165) - (mid -0.635 49.5327) - (end 0 50.165) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -1.27 59.055) - (mid -1.905 59.6873) - (end -2.54 59.055) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -1.27 62.865) - (mid -0.635 62.2327) - (end 0 62.865) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -1.27 66.675) - (mid -1.905 67.3073) - (end -2.54 66.675) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -1.27 70.485) - (mid -0.635 69.8527) - (end 0 70.485) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -12.7 27.94) (xy -10.16 27.94) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -12.7 30.48) (xy -10.16 30.48) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -12.7 33.02) (xy -10.16 33.02) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -10.16 33.02) (xy -10.16 34.29) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 13.335) (xy -7.62 13.335) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 18.415) (xy -7.62 18.415) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 48.26) (xy -5.08 60.96) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 31.75) (xy -3.175 33.02) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 48.26) (xy 1.27 48.26) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 68.58) (xy 1.27 68.58) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 38.735) (xy -10.795 38.735) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 42.545) (xy -10.795 42.545) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 46.355) (xy -10.795 46.355) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 50.165) (xy -10.795 50.165) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 59.055) (xy -10.795 59.055) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 62.865) (xy -10.795 62.865) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 66.675) (xy -10.795 66.675) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 70.485) (xy -10.795 70.485) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.905 33.02) (xy -1.905 31.75) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -0.635 33.02) (xy -0.635 31.75) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 33.02) (xy 0.635 31.75) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.905 33.02) (xy 1.905 31.75) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.175 33.02) (xy 3.175 31.75) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 38.1) (xy 5.08 38.1) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 40.64) (xy 5.08 40.64) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 43.18) (xy 5.08 43.18) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 45.72) (xy 5.08 45.72) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 48.26) (xy 5.08 48.26) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 50.8) (xy 5.08 50.8) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 58.42) (xy 5.08 58.42) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 60.96) (xy 5.08 60.96) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 63.5) (xy 5.08 63.5) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 66.04) (xy 5.08 66.04) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 68.58) (xy 5.08 68.58) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 71.12) (xy 5.08 71.12) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 4.445 31.75) (xy 4.445 33.02) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 5.08 40.64) (xy 8.89 40.64) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 5.08 48.26) (xy 8.89 48.26) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 5.08 60.96) (xy 8.89 60.96) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 5.715 31.75) (xy 5.715 33.02) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 7.62 18.415) (xy 10.16 18.415) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 7.62 19.05) (xy 10.16 19.05) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 8.89 15.24) (xy 8.89 17.78) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 8.89 19.05) (xy 8.89 34.29) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -10.16 33.02) (xy -10.16 25.4) (xy -12.7 25.4) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -8.636 12.7) (xy -6.35 12.7) (xy -6.35 13.335) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -8.636 15.24) (xy -6.35 15.24) (xy -6.35 14.605) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -8.636 20.32) (xy -6.35 20.32) (xy -6.35 19.685) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -6.35 18.415) (xy -6.35 17.78) (xy -8.636 17.78) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 38.735) (xy 0 38.1) (xy 1.27 38.1) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 46.355) (xy 0 45.72) (xy 1.27 45.72) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 59.055) (xy 0 58.42) (xy 1.27 58.42) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 66.675) (xy 0 66.04) (xy 1.27 66.04) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 43.18) (xy 0 43.18) (xy 0 42.545) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 50.8) (xy 0 50.8) (xy 0 50.165) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 63.5) (xy 0 63.5) (xy 0 62.865) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 71.12) (xy 0 71.12) (xy 0 70.485) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -11.43 53.34) (xy -5.08 53.34) (xy -5.08 55.88) (xy -11.43 55.88) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -10.16 34.29) (xy 8.89 34.29) (xy 8.89 68.58) (xy 5.08 68.58) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -7.62 19.685) (xy -5.08 19.685) (xy -6.35 18.415) (xy -7.62 19.685) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 14.605) (xy -7.62 14.605) (xy -6.35 13.335) (xy -5.08 14.605) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -10.16 5.08) (xy -8.89 5.08) (xy -8.89 7.62) (xy -10.16 7.62) (xy -8.89 7.62) (xy 8.89 7.62) - (xy 8.89 11.43) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -4.445 33.02) (xy 6.985 33.02) (xy 6.985 22.86) (xy 4.445 22.86) (xy 4.445 21.59) (xy 3.175 21.59) - (xy 3.175 20.32) (xy -0.635 20.32) (xy -0.635 21.59) (xy -1.905 21.59) (xy -1.905 22.86) (xy -4.445 22.86) - (xy -4.445 33.02) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 38.735) - (mid -0.635 39.3673) - (end -1.27 38.735) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 46.355) - (mid -0.635 46.9873) - (end -1.27 46.355) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 59.055) - (mid -0.635 59.6873) - (end -1.27 59.055) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 66.675) - (mid -0.635 67.3073) - (end -1.27 66.675) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 38.1) - (mid 1.9023 38.735) - (end 1.27 39.37) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 39.37) - (mid 1.9023 40.005) - (end 1.27 40.64) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 40.64) - (mid 1.9023 41.275) - (end 1.27 41.91) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 41.91) - (mid 1.9023 42.545) - (end 1.27 43.18) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 45.72) - (mid 1.9023 46.355) - (end 1.27 46.99) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 46.99) - (mid 1.9023 47.625) - (end 1.27 48.26) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 48.26) - (mid 1.9023 48.895) - (end 1.27 49.53) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 49.53) - (mid 1.9023 50.165) - (end 1.27 50.8) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 58.42) - (mid 1.9023 59.055) - (end 1.27 59.69) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 59.69) - (mid 1.9023 60.325) - (end 1.27 60.96) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 60.96) - (mid 1.9023 61.595) - (end 1.27 62.23) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 62.23) - (mid 1.9023 62.865) - (end 1.27 63.5) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 66.04) - (mid 1.9023 66.675) - (end 1.27 67.31) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 67.31) - (mid 1.9023 67.945) - (end 1.27 68.58) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 68.58) - (mid 1.9023 69.215) - (end 1.27 69.85) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 69.85) - (mid 1.9023 70.485) - (end 1.27 71.12) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 39.37) - (mid 3.1777 38.735) - (end 3.81 38.1) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 40.64) - (mid 3.1777 40.005) - (end 3.81 39.37) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 41.91) - (mid 3.1777 41.275) - (end 3.81 40.64) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 43.18) - (mid 3.1777 42.545) - (end 3.81 41.91) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 46.99) - (mid 3.1777 46.355) - (end 3.81 45.72) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 48.26) - (mid 3.1777 47.625) - (end 3.81 46.99) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 49.53) - (mid 3.1777 48.895) - (end 3.81 48.26) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 50.8) - (mid 3.1777 50.165) - (end 3.81 49.53) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 59.69) - (mid 3.1777 59.055) - (end 3.81 58.42) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 60.96) - (mid 3.1777 60.325) - (end 3.81 59.69) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 62.23) - (mid 3.1777 61.595) - (end 3.81 60.96) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 63.5) - (mid 3.1777 62.865) - (end 3.81 62.23) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 67.31) - (mid 3.1777 66.675) - (end 3.81 66.04) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 68.58) - (mid 3.1777 67.945) - (end 3.81 67.31) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 69.85) - (mid 3.1777 69.215) - (end 3.81 68.58) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 71.12) - (mid 3.1777 70.485) - (end 3.81 69.85) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 9.525 12.065) - (end 8.255 14.605) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (text "1000pF" - (at 6.35 17.399 0) - (effects - (font - (size 0.762 0.762) - ) - ) - ) - (text "75" - (at 8.89 13.335 900) - (effects - (font - (size 0.762 0.762) - ) - ) - ) - (text "C1" - (at 6.985 71.755 0) - (effects - (font - (size 0.889 0.889) - ) - ) - ) - (text "C2" - (at 6.985 66.675 0) - (effects - (font - (size 0.889 0.889) - ) - ) - ) - (text "C3" - (at 6.985 64.135 0) - (effects - (font - (size 0.889 0.889) - ) - ) - ) - (text "C4" - (at 6.985 51.435 0) - (effects - (font - (size 0.889 0.889) - ) - ) - ) - (text "C5" - (at 6.985 46.355 0) - (effects - (font - (size 0.889 0.889) - ) - ) - ) - (text "C6" - (at 6.985 59.055 0) - (effects - (font - (size 0.889 0.889) - ) - ) - ) - (text "C7" - (at 6.985 43.815 0) - (effects - (font - (size 0.889 0.889) - ) - ) - ) - (text "C8" - (at 6.985 38.735 0) - (effects - (font - (size 0.889 0.889) - ) - ) - ) - (text "GREEN" - (at -4.445 12.7 0) - (effects - (font - (size 0.762 0.762) - ) - (justify left) - ) - ) - (text "YELLOW" - (at -4.445 17.78 0) - (effects - (font - (size 0.762 0.762) - ) - (justify left) - ) - ) - (pin passive line - (at -21.59 71.12 0) - (length 3.81) - (name "TRD0+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 38.1 0) - (length 3.81) - (name "TRD3-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 33.02 0) - (length 3.81) - (name "VC1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 30.48 0) - (length 3.81) - (name "VC2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 27.94 0) - (length 3.81) - (name "VC3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 25.4 0) - (length 3.81) - (name "VC4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 20.32 0) - (length 3.81) - (name "LEDY_A" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 17.78 0) - (length 3.81) - (name "LEDY_K" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 15.24 0) - (length 3.81) - (name "LEDG_A" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 12.7 0) - (length 3.81) - (name "LEDG_K" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 7.62 0) - (length 3.81) - (name "SHIELD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 66.04 0) - (length 3.81) - (name "TRD0-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 5.08 0) - (length 3.81) - (name "SHIELD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 63.5 0) - (length 3.81) - (name "TRD1+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 55.88 0) - (length 3.81) - (name "CT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 53.34 0) - (length 3.81) - (name "CT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 58.42 0) - (length 3.81) - (name "TRD1-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 50.8 0) - (length 3.81) - (name "TRD2+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 45.72 0) - (length 3.81) - (name "TRD2-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -21.59 43.18 0) - (length 3.81) - (name "TRD3+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "RT9742GGJ5" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "RT9742GGJ5" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-00.pdf" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "1A load switch" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "RT9742GGJ5_0_0" - (pin power_out line - (at -8.89 10.16 0) - (length 2.54) - (name "OUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -8.89 7.62 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at -8.89 5.08 0) - (length 2.54) - (name "nFLG" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 6.35 5.08 180) - (length 2.54) - (name "EN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 6.35 10.16 180) - (length 2.54) - (name "IN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "RT9742GGJ5_0_1" - (rectangle - (start -6.35 12.7) - (end 3.81 2.54) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - ) - (symbol "RT9742SNGV" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at -2.54 7.62 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "RT9742SNGV" - (at 3.81 -5.08 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:TSOT-23_HandSoldering" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "500mA Load Switch" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "RT9742SNGV_0_1" - (rectangle - (start -2.54 6.35) - (end 7.62 -3.81) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "RT9742SNGV_1_1" - (pin power_in line - (at -5.08 3.81 0) - (length 2.54) - (name "IN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 10.16 3.81 180) - (length 2.54) - (name "OUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -5.08 -2.54 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "SolderNut" - (pin_numbers hide) - (pin_names - (offset 0) hide) - (exclude_from_sim yes) - (in_bom yes) - (on_board no) - (property "Reference" "M" - (at -6.35 -3.556 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "M.2 Solder Nut" - (at 0.254 -5.842 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "SolderNut_0_1" - (circle - (center 0 0) - (radius 2.8398) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 0 0) - (radius 4.0161) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - ) - (symbol "TPD4EUSB30" - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "U" - (at -0.635 8.89 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "TPD4EUSB30" - (at 8.89 -10.16 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_SON:USON-10_2.5x1.0mm_P0.5mm" - (at -24.13 -10.16 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "4-Channel ESD Protection for Super-Speed USB 3.0 Interface, USON-10" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "ESD protection USB 3.0" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_fp_filters" "USON*2.5x1.0mm*P0.5mm*" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "TPD4EUSB30_0_0" - (rectangle - (start -5.715 6.477) - (end 5.715 -6.604) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 -6.604) (xy -3.175 6.477) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 6.477) (xy 0 -6.604) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.175 6.477) (xy 3.175 -6.604) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "TPD4EUSB30_0_1" - (rectangle - (start -7.62 7.62) - (end 7.62 -7.62) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (circle - (center -5.715 -2.54) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center -3.175 -6.604) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center -3.175 2.54) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center -3.175 6.477) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center 0 -6.604) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (polyline - (pts - (xy -7.747 2.54) (xy -3.175 2.54) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -7.62 -2.54) (xy -5.715 -2.54) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 -3.81) (xy -6.35 -3.81) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 5.08) (xy -6.35 5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 -3.81) (xy -3.81 -3.81) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 5.08) (xy -3.81 5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -0.635 0.889) (xy -1.016 0.635) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 -6.604) (xy 0 -7.62) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 0.889) (xy -0.635 0.889) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 0.889) (xy 1.016 1.143) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 -3.81) (xy 2.54 -3.81) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 5.08) (xy 2.54 5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 6.35 -3.81) (xy 5.08 -3.81) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 6.35 5.08) (xy 5.08 5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 7.62 -2.54) (xy 3.175 -2.54) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 7.62 2.54) (xy 5.715 2.54) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 -5.08) (xy -6.35 -5.08) (xy -5.715 -3.81) (xy -5.08 -5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 3.81) (xy -6.35 3.81) (xy -5.715 5.08) (xy -5.08 3.81) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 -5.08) (xy -3.81 -5.08) (xy -3.175 -3.81) (xy -2.54 -5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 3.81) (xy -3.81 3.81) (xy -3.175 5.08) (xy -2.54 3.81) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 -0.381) (xy -0.635 -0.381) (xy 0 0.889) (xy 0.635 -0.381) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 -5.08) (xy 2.54 -5.08) (xy 3.175 -3.81) (xy 3.81 -5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 3.81 3.81) (xy 2.54 3.81) (xy 3.175 5.08) (xy 3.81 3.81) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 6.35 -5.08) (xy 5.08 -5.08) (xy 5.715 -3.81) (xy 6.35 -5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 6.35 3.81) (xy 5.08 3.81) (xy 5.715 5.08) (xy 6.35 3.81) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 0 6.477) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center 3.175 -6.604) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center 3.175 -2.54) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center 3.175 6.477) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - (circle - (center 5.715 2.54) - (radius 0.2794) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - ) - (symbol "TPD4EUSB30_1_1" - (pin passive line - (at -12.7 2.54 0) - (length 5.08) - (name "D1+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -12.7 2.54 0) - (length 5.08) hide - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -12.7 -2.54 0) - (length 5.08) - (name "D1-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 -12.7 90) - (length 5.08) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 12.7 2.54 180) - (length 5.08) - (name "D2+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 12.7 -2.54 180) - (length 5.08) - (name "D2-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 12.7 -2.54 180) - (length 5.08) hide - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 12.7 2.54 180) - (length 5.08) hide - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -12.7 90) - (length 5.08) hide - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -12.7 -2.54 0) - (length 5.08) hide - (name "~" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) - (symbol "USB3_A" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (property "Reference" "J" - (at -10.16 33.02 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "USB3_A" - (at 10.16 33.02 0) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "" - (at 3.81 20.32 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "~" - (at 3.81 20.32 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "USB 3.0 A connector" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "ki_keywords" "usb universal serial bus" - (at 0 0 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (symbol "USB3_A_1_1" - (rectangle - (start -8.89 4.064) - (end -7.874 3.556) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -8.89 6.604) - (end -7.874 6.096) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -8.89 11.684) - (end -7.874 11.176) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -8.89 14.224) - (end -7.874 13.716) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -8.89 19.304) - (end -7.874 18.796) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -8.89 21.844) - (end -7.874 21.336) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -8.89 26.924) - (end -7.874 26.416) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -7.62 -2.286) - (end -8.636 -2.794) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -7.62 0.254) - (end -8.636 -0.254) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -2.286 -11.176) - (end 10.16 -15.24) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -2.286 -4.826) - (end 10.16 -8.89) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -1.016 -12.446) - (end 8.636 -13.716) - (stroke - (width 0.508) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start -1.016 -6.096) - (end 8.636 -7.366) - (stroke - (width 0.508) - (type default) - ) - (fill - (type outline) - ) - ) - (polyline - (pts - (xy 4.572 6.35) (xy 4.572 15.24) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 4.572 7.62) (xy 7.112 10.16) (xy 7.112 11.43) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 4.572 8.89) (xy 2.032 11.43) (xy 2.032 12.7) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 5.842 15.24) (xy 4.572 17.78) (xy 3.302 15.24) (xy 5.842 15.24) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 1.016 -13.97) - (end 1.778 -14.224) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 1.016 -7.62) - (end 1.778 -7.874) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 2.667 12.7) - (end 1.397 13.97) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 2.794 -13.97) - (end 3.556 -14.224) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 2.794 -7.62) - (end 3.556 -7.874) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 4.572 -13.97) - (end 5.334 -14.224) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 4.572 -7.62) - (end 5.334 -7.874) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 6.35 -13.97) - (end 7.112 -14.224) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 6.35 -7.62) - (end 7.112 -7.874) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 7.112 12.065) - (radius 0.635) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 11.43 30.48) - (end -8.89 -39.37) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (text "SS" - (at 4.572 3.175 900) - (effects - (font - (size 5.08 5.08) - (bold yes) - (italic yes) - ) - ) - ) - (pin passive line - (at 13.97 -36.83 180) - (length 2.54) - (name "SHIELD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -11.43 26.67 0) - (length 2.54) - (name "VBUS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 19.05 0) - (length 2.54) - (name "D-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 21.59 0) - (length 2.54) - (name "D+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -11.43 0 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 11.43 0) - (length 2.54) - (name "SSRX-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 13.97 0) - (length 2.54) - (name "SSRX+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -11.43 -2.54 0) - (length 2.54) - (name "DRAIN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 3.81 0) - (length 2.54) - (name "SSTX-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 6.35 0) - (length 2.54) - (name "SSTX+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -11.43 -7.62 0) - (length 2.54) - (name "VBUS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 -15.24 0) - (length 2.54) - (name "D-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 -12.7 0) - (length 2.54) - (name "D+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -11.43 -34.29 0) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 -22.86 0) - (length 2.54) - (name "SSRX-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 -20.32 0) - (length 2.54) - (name "SSRX+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -11.43 -36.83 0) - (length 2.54) - (name "DRAIN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 -30.48 0) - (length 2.54) - (name "SSTX-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -11.43 -27.94 0) - (length 2.54) - (name "SSTX+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - ) -) +(kicad_symbol_lib + (version 20231120) + (generator "kicad_symbol_editor") + (generator_version "8.0") + (symbol "74LVC1G07_copy" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -2.54 3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "74LVC1G07_copy" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-353_SC-70-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single Buffer Gate w/ Open Drain, Low-Voltage CMOS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Single Gate Buff LVC CMOS Open Drain" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT* SG-*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "74LVC1G07_copy_0_1" + (polyline + (pts + (xy -2.54 -0.635) (xy -1.27 -0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.81 2.54) (xy -3.81 -2.54) (xy 2.54 0) (xy -3.81 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 0.635) (xy -2.54 0) (xy -1.905 -0.635) (xy -1.27 0) (xy -1.905 0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "74LVC1G07_copy_1_1" + (pin no_connect line + (at -6.35 -2.54 0) + (length 2.54) + (name "nc" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 0 0) + (length 3.81) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 0 -2.54 270) + (length 0) + (name "GND" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin open_collector line + (at 6.35 0 180) + (length 3.81) + (name "~" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at 0 2.54 90) + (length 0) + (name "VCC" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + ) + (symbol "AP2553W6" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP2553W6" + (at -3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP255x.pdf" + (at 3.81 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Digikey" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field5" "AP2553W6-7DICT-ND" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AP2553W6_0_0" + (pin power_in line + (at -8.89 2.54 0) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -8.89 0 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -8.89 -2.54 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 7.62 -2.54 180) + (length 2.54) + (name "nFault" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 2.54) + (name "ILIM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 2.54 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "AP2553W6_0_1" + (rectangle + (start -6.35 5.08) + (end 5.08 -5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "AP3441SHE-7B" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -6.35 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP3441SHE-7B" + (at 0 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_DFN_QFN:DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm" + (at 1.27 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP3441-L.pdf" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AP3441SHE-7B_0_1" + (rectangle + (start -6.35 6.35) + (end 6.35 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "AP3441SHE-7B_1_1" + (pin passive line + (at -8.89 5.08 0) + (length 2.54) + (name "FB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at -8.89 2.54 0) + (length 2.54) + (name "PG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 0 0) + (length 2.54) + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 -2.54 0) + (length 2.54) + (name "PGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 8.89 -2.54 180) + (length 2.54) + (name "nc" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 8.89 0 180) + (length 2.54) + (name "LX" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 8.89 2.54 180) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 5.08 180) + (length 2.54) + (name "SGND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 1.27 -6.35 90) + (length 2.54) + (name "PAD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "ASEK-32.768KHZ-L-R-T" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -5.08 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ASEK-32.768KHZ-L-R-T" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm" + (at 1.27 -8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://abracon.com/Oscillators/ASEK.pdf" + (at 0 -11.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ASEK-32.768KHZ-L-R-T_0_1" + (rectangle + (start -6.35 5.08) + (end 6.35 -5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "ASEK-32.768KHZ-L-R-T_1_1" + (pin input line + (at -8.89 3.81 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 -3.81 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 8.89 -3.81 180) + (length 2.54) + (name "Out" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 3.81 180) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Bus_M.2_Socket_M" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -22.86 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Bus_M.2_Socket_M" + (at 30.988 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "M.2 Socket 3 Mechanical Key M" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "M2 NGNF PCI-E" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "*M*2*M*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Bus_M.2_Socket_M_0_1" + (rectangle + (start -22.86 45.72) + (end 22.86 -45.72) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "Bus_M.2_Socket_M_1_1" + (pin power_in line + (at -20.32 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 25.4 -10.16 180) + (length 2.54) + (name "DAS/~{DSS}/~{LED1}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 0 0) + (length 2.54) + (name "PERn3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -3.81 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 2.54 0) + (length 2.54) + (name "PERp3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -1.27 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -12.7 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 1.27 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 5.08 0) + (length 2.54) + (name "PETn2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 3.81 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 7.62 0) + (length 2.54) + (name "PETp2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 2.54 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -10.16 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 5.08 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 10.16 0) + (length 2.54) + (name "PERn2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 7.62 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 12.7 0) + (length 2.54) + (name "PERp2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 10.16 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -7.62 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 12.7 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 15.24 0) + (length 2.54) + (name "PETn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -17.78 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 15.24 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 17.78 0) + (length 2.54) + (name "PETp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 17.78 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 20.32 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 20.32 0) + (length 2.54) + (name "PERn1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 22.86 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 22.86 0) + (length 2.54) + (name "PERp1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -22.86 0) + (length 2.54) + (name "DEVSLP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -6.35 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 25.4 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 25.4 0) + (length 2.54) + (name "PETn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 27.94 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 27.94 0) + (length 2.54) + (name "PETp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 30.48 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 33.02 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 30.48 0) + (length 2.54) + (name "PERn0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 35.56 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 33.02 0) + (length 2.54) + (name "PERp0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -5.08 0) + (length 2.54) + (name "PETn3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 43.18 0) + (length 2.54) + (name "~{PERST}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 40.64 0) + (length 2.54) + (name "~{CLKREQ}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -38.1 0) + (length 2.54) + (name "REFCLKn" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -25.4 38.1 0) + (length 2.54) + (name "~{PEWAKE}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -25.4 -35.56 0) + (length 2.54) + (name "REFCLKp" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 38.1 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 5.08 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 40.64 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 -2.54 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 -5.08 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 25.4 -27.94 180) + (length 2.54) + (name "SUSCLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -20.32 180) + (length 2.54) + (name "PEDET" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "69" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -25.4 -2.54 0) + (length 2.54) + (name "PETp3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 6.35 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "70" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 7.62 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "71" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 8.89 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "72" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 10.16 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "73" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 11.43 48.26 270) + (length 2.54) + (name "3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "74" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 12.7 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "75" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 22.86 0 180) + (length 2.54) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -15.24 -48.26 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -39.37 180) + (length 2.54) + (name "GND2230" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -36.83 180) + (length 2.54) + (name "GND2242" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -34.29 180) + (length 2.54) + (name "GND2260" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -31.75 180) + (length 2.54) + (name "GND2280" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "M4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -41.91 180) + (length 2.54) + (name "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 25.4 -44.45 180) + (length 2.54) + (name "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Module" + (at 113.03 -68.58 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ComputeModule5-CM5" + (at 140.97 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "CM5IO:Raspberry-Pi-5-Compute-Module" + (at 142.24 -26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 142.24 -26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RaspberryPi Compute module 5 " + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "Amphenol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field5" "2x 10164227-1001A1RLF" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "ComputeModule5-CM5_1_0" + (text "GPIO" + (at 0 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5_1_1" + (rectangle + (start -30.48 -71.12) + (end 25.4 58.42) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "600mA Max" + (at -8.89 -53.34 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "600mA Max" + (at -8.89 -48.26 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "NB SD signals are only available" + (at -1.27 -27.94 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (text "on modules without eMMC" + (at -1.27 -30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin power_in line + (at 27.94 55.88 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 45.72 0) + (length 2.54) + (name "Ethernet_Pair0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -68.58 0) + (length 2.54) + (name "CAM_GPIO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "100" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 43.18 180) + (length 2.54) + (name "Ethernet_Pair2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 43.18 0) + (length 2.54) + (name "Ethernet_Pair0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 40.64 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 40.64 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 38.1 180) + (length 2.54) + (name "Ethernet_nLED3(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -33.02 38.1 0) + (length 2.54) + (name "FAN_TACHO" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 35.56 180) + (length 2.54) + (name "Ethernet_nLED2(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -33.02 35.56 0) + (length 2.54) + (name "Ethernet_SYNC_OUT(3.3v)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 33.02 180) + (length 2.54) + (name "FAN_PWM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 55.88 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 33.02 0) + (length 2.54) + (name "EEPROM_nWP" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 27.94 30.48 180) + (length 2.54) + (name "LED_nACT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 30.48 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 27.94 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 27.94 0) + (length 2.54) + (name "GPIO26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 25.4 180) + (length 2.54) + (name "GPIO21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 25.4 0) + (length 2.54) + (name "GPIO19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 22.86 180) + (length 2.54) + (name "GPIO20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 22.86 0) + (length 2.54) + (name "GPIO13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 20.32 180) + (length 2.54) + (name "GPIO16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 53.34 180) + (length 2.54) + (name "Ethernet_Pair3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 20.32 0) + (length 2.54) + (name "GPIO6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 17.78 180) + (length 2.54) + (name "GPIO12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 17.78 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 15.24 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 15.24 0) + (length 2.54) + (name "GPIO5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 12.7 180) + (length 2.54) + (name "ID_SC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 12.7 0) + (length 2.54) + (name "ID_SD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 10.16 180) + (length 2.54) + (name "GPIO7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 10.16 0) + (length 2.54) + (name "GPIO11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 7.62 180) + (length 2.54) + (name "GPIO8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 53.34 0) + (length 2.54) + (name "Ethernet_Pair1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 7.62 0) + (length 2.54) + (name "GPIO9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 5.08 180) + (length 2.54) + (name "GPIO25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 5.08 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 2.54 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 2.54 0) + (length 2.54) + (name "GPIO10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 0 180) + (length 2.54) + (name "GPIO24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 0 0) + (length 2.54) + (name "GPIO22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -2.54 180) + (length 2.54) + (name "GPIO23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -2.54 0) + (length 2.54) + (name "GPIO27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -5.08 180) + (length 2.54) + (name "GPIO18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 50.8 180) + (length 2.54) + (name "Ethernet_Pair3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -5.08 0) + (length 2.54) + (name "GPIO17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -7.62 180) + (length 2.54) + (name "GPIO15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -7.62 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -10.16 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -10.16 0) + (length 2.54) + (name "GPIO4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -12.7 180) + (length 2.54) + (name "GPIO14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -12.7 0) + (length 2.54) + (name "GPIO3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -15.24 180) + (length 2.54) + (name "SD_CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -15.24 0) + (length 2.54) + (name "GPIO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -17.78 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "59" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 50.8 0) + (length 2.54) + (name "Ethernet_Pair1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -17.78 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "60" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -20.32 180) + (length 2.54) + (name "SD_DAT3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "61" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -20.32 0) + (length 2.54) + (name "SD_CMD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "62" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -22.86 180) + (length 2.54) + (name "SD_DAT0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "63" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -22.86 0) + (length 2.54) + (name "SD_DAT5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "64" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -25.4 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "65" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -25.4 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "66" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -27.94 180) + (length 2.54) + (name "SD_DAT1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "67" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -27.94 0) + (length 2.54) + (name "SD_DAT4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "68" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -30.48 180) + (length 2.54) + (name "SD_DAT2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "69" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 48.26 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -30.48 0) + (length 2.54) + (name "SD_DAT7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "70" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -33.02 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "71" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -33.02 0) + (length 2.54) + (name "SD_DAT6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "72" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -35.56 180) + (length 2.54) + (name "SD_VDD_Override" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "73" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -35.56 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "74" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 -38.1 180) + (length 2.54) + (name "SD_PWR_ON" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "75" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -38.1 0) + (length 2.54) + (name "VBAT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "76" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -40.64 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "77" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -40.64 0) + (length 2.54) + (name "GPIO_VREF(1.8v/3.3v_Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "78" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -43.18 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "79" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 48.26 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -43.18 0) + (length 2.54) + (name "SCL0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "80" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -45.72 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "81" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -45.72 0) + (length 2.54) + (name "SDA0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "82" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -48.26 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "83" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -33.02 -48.26 0) + (length 2.54) + (name "+3.3v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "84" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -50.8 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "85" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -50.8 0) + (length 2.54) + (name "+3.3v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "86" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 27.94 -53.34 180) + (length 2.54) + (name "+5v_(Input)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "87" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at -33.02 -53.34 0) + (length 2.54) + (name "+1.8v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "88" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -55.88 180) + (length 2.54) + (name "WiFi_nDisable" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "89" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 45.72 180) + (length 2.54) + (name "Ethernet_Pair2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -55.88 0) + (length 2.54) + (name "+1.8v_(Output)" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "90" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -58.42 180) + (length 2.54) + (name "BT_nDisable" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "91" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -58.42 0) + (length 2.54) + (name "PWR_BUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "92" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -60.96 180) + (length 2.54) + (name "nRPIBOOT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "93" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -60.96 0) + (length 2.54) + (name "CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "94" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 27.94 -63.5 180) + (length 2.54) + (name "LED_nPWR" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "95" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -33.02 -63.5 0) + (length 2.54) + (name "CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "96" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 27.94 -66.04 180) + (length 2.54) + (name "CAM_GPIO0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "97" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -33.02 -66.04 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "98" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 27.94 -68.58 180) + (length 2.54) + (name "PMIC_ENABLE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "99" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "ComputeModule5-CM5_2_1" + (rectangle + (start 114.3 -66.04) + (end 165.1 63.5) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "High Speed Serial" + (at 140.97 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin input line + (at 170.18 60.96 180) + (length 5.08) + (name "USB_OTG_ID" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "101" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 60.96 0) + (length 5.08) + (name "PCIe_nCLKREQ" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "102" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 58.42 180) + (length 5.08) + (name "USB2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "103" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 58.42 0) + (length 5.08) + (name "PCIE_nWAKE" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "104" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 55.88 180) + (length 5.08) + (name "USB2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "105" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 55.88 0) + (length 5.08) + (name "PCIE_PWR_EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "106" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 53.34 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "107" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 53.34 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "108" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 50.8 180) + (length 5.08) + (name "PCIe_nRST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "109" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 50.8 0) + (length 5.08) + (name "PCIe_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "110" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 48.26 180) + (length 5.08) + (name "VBUS_EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "111" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 48.26 0) + (length 5.08) + (name "PCIe_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "112" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 45.72 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "113" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 45.72 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "114" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 43.18 180) + (length 5.08) + (name "MIPI0_D0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "115" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 43.18 0) + (length 5.08) + (name "PCIe_RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "116" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 40.64 180) + (length 5.08) + (name "MIPI0_D0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "117" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 40.64 0) + (length 5.08) + (name "PCIe_RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "118" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 38.1 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "119" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 38.1 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "120" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 35.56 180) + (length 5.08) + (name "MIPI0_D1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "121" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 35.56 0) + (length 5.08) + (name "PCIe_TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "122" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 33.02 180) + (length 5.08) + (name "MIPI0_D1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "123" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 33.02 0) + (length 5.08) + (name "PCIe_TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "124" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "125" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 30.48 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "126" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 27.94 180) + (length 5.08) + (name "MIPI0_C_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "127" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 27.94 0) + (length 5.08) + (name "USB3-0-RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "128" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 25.4 180) + (length 5.08) + (name "MIPI0_C_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "129" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 109.22 25.4 0) + (length 5.08) + (name "USB3-0-RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "130" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 22.86 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "131" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 22.86 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "132" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 20.32 180) + (length 5.08) + (name "MIPI0_D2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "133" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 109.22 20.32 0) + (length 5.08) + (name "USB3-0-D_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "134" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 17.78 180) + (length 5.08) + (name "MIPI0_D2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "135" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 109.22 17.78 0) + (length 5.08) + (name "USB3-0-D_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "136" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 15.24 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "137" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 15.24 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "138" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 12.7 180) + (length 5.08) + (name "MIPI0_D3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "139" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 12.7 0) + (length 5.08) + (name "USB3-0-TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "140" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 10.16 180) + (length 5.08) + (name "MIPI0_D3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "141" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 10.16 0) + (length 5.08) + (name "USB3-0-TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "142" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 7.62 180) + (length 5.08) + (name "HDMI1_HOTPLUG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "143" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 7.62 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "144" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 170.18 5.08 180) + (length 5.08) + (name "HDMI1_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "145" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 5.08 0) + (length 5.08) + (name "HDMI1_TX2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "146" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 2.54 180) + (length 5.08) + (name "HDMI1_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "147" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 2.54 0) + (length 5.08) + (name "HDMI1_TX2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "148" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 0 180) + (length 5.08) + (name "HDMI1_CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "149" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 0 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "150" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 170.18 -2.54 180) + (length 5.08) + (name "HDMI0_CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "151" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -2.54 0) + (length 5.08) + (name "HDMI1_TX1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "152" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -5.08 180) + (length 5.08) + (name "HDMI0_HOTPLUG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "153" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -5.08 0) + (length 5.08) + (name "HDMI1_TX1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "154" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -7.62 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "155" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -7.62 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "156" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -10.16 180) + (length 5.08) + (name "USB3-1-RX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "157" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -10.16 0) + (length 5.08) + (name "HDMI1_TX0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "158" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 170.18 -12.7 180) + (length 5.08) + (name "USB3-1-RX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "159" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -12.7 0) + (length 5.08) + (name "HDMI1_TX0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "160" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -15.24 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "161" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -15.24 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "162" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 -17.78 180) + (length 5.08) + (name "USB3-1-D_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "163" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -17.78 0) + (length 5.08) + (name "HDMI1_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "164" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 170.18 -20.32 180) + (length 5.08) + (name "USB3-1-D_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "165" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -20.32 0) + (length 5.08) + (name "HDMI1_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "166" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -22.86 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "167" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -22.86 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "168" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -25.4 180) + (length 5.08) + (name "USB3-1-TX_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "169" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -25.4 0) + (length 5.08) + (name "HDMI0_TX2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "170" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -27.94 180) + (length 5.08) + (name "USB3-1-TX_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "171" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -27.94 0) + (length 5.08) + (name "HDMI0_TX2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "172" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -30.48 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "173" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -30.48 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "174" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -33.02 180) + (length 5.08) + (name "MIPI1_D0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "175" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -33.02 0) + (length 5.08) + (name "HDMI0_TX1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "176" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -35.56 180) + (length 5.08) + (name "MIPI1_D0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "177" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -35.56 0) + (length 5.08) + (name "HDMI0_TX1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "178" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -38.1 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "179" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -38.1 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "180" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -40.64 180) + (length 5.08) + (name "MIPI1_D1_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "181" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -40.64 0) + (length 5.08) + (name "HDMI0_TX0_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "182" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -43.18 180) + (length 5.08) + (name "MIPI1_D1_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "183" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -43.18 0) + (length 5.08) + (name "HDMI0_TX0_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "184" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -45.72 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "185" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -45.72 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "186" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -48.26 180) + (length 5.08) + (name "MIPI1_C_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "187" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -48.26 0) + (length 5.08) + (name "HDMI0_CLK_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "188" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -50.8 180) + (length 5.08) + (name "MIPI1_C_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "189" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -50.8 0) + (length 5.08) + (name "HDMI0_CLK_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "190" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -53.34 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "191" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -53.34 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "192" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -55.88 180) + (length 5.08) + (name "MIPI1_D2_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "193" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -55.88 0) + (length 5.08) + (name "MIPI1_D3_N" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "194" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 170.18 -58.42 180) + (length 5.08) + (name "MIPI1_D2_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "195" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 109.22 -58.42 0) + (length 5.08) + (name "MIPI1_D3_P" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "196" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 170.18 -60.96 180) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "197" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 109.22 -60.96 0) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "198" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 170.18 -63.5 180) + (length 5.08) + (name "HDMI0_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "199" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 109.22 -63.5 0) + (length 5.08) + (name "HDMI0_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "200" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "HDMI_A_1.4" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -6.35 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "HDMI_A_1.4" + (at 10.16 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0.635 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://en.wikipedia.org/wiki/HDMI" + (at 0.635 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "HDMI 1.4+ type A connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "hdmi conn" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "HDMI*A*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "HDMI_A_1.4_0_0" + (polyline + (pts + (xy 8.128 16.51) (xy 8.128 18.034) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 16.51) (xy 0 18.034) (xy 0 17.272) (xy 1.905 17.272) (xy 1.905 18.034) (xy 1.905 16.51) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.667 18.034) (xy 4.318 18.034) (xy 4.572 17.78) (xy 4.572 16.764) (xy 4.318 16.51) (xy 2.667 16.51) + (xy 2.667 17.272) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "HDMI_A_1.4_0_1" + (rectangle + (start -7.62 25.4) + (end 10.16 -25.4) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 2.54 8.89) (xy 3.81 8.89) (xy 5.08 6.35) (xy 5.08 -5.715) (xy 3.81 -8.255) (xy 2.54 -8.255) + (xy 2.54 8.89) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 5.334 16.51) (xy 5.334 18.034) (xy 6.35 18.034) (xy 6.35 16.51) (xy 6.35 18.034) (xy 7.112 18.034) + (xy 7.366 17.78) (xy 7.366 16.51) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 12.7) (xy 0 -12.7) (xy 3.81 -12.7) (xy 5.08 -10.16) (xy 7.62 -8.89) (xy 7.62 8.89) (xy 5.08 10.16) + (xy 3.81 12.7) (xy 0 12.7) + ) + (stroke + (width 0.635) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "HDMI_A_1.4_1_1" + (pin passive line + (at -10.16 20.32 0) + (length 2.54) + (name "D2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 5.08 0) + (length 2.54) + (name "CK+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -27.94 90) + (length 2.54) + (name "CKS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 2.54 0) + (length 2.54) + (name "CK-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -10.16 -2.54 0) + (length 2.54) + (name "CEC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -15.24 0) + (length 2.54) + (name "UTILITY/HEAC+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -7.62 0) + (length 2.54) + (name "SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -10.16 -10.16 0) + (length 2.54) + (name "SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 5.08 -27.94 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 27.94 270) + (length 2.54) + (name "+5V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -17.78 0) + (length 2.54) + (name "HPD/HEAC-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -27.94 90) + (length 2.54) + (name "D2S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 17.78 0) + (length 2.54) + (name "D2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 15.24 0) + (length 2.54) + (name "D1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 -27.94 90) + (length 2.54) + (name "D1S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 12.7 0) + (length 2.54) + (name "D1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 10.16 0) + (length 2.54) + (name "D0+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -27.94 90) + (length 2.54) + (name "D0S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 7.62 0) + (length 2.54) + (name "D0-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 90) + (length 2.54) + (name "SH" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "SH1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "M.2_Screw" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board no) + (property "Reference" "M" + (at -0.254 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "M.2 Screw" + (at 0.254 -8.636 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "M.2_Screw_0_1" + (polyline + (pts + (xy -5.08 0) (xy -5.08 -6.35) (xy -3.81 -6.35) (xy -3.81 -5.08) (xy -2.54 -5.08) (xy -2.54 -2.54) + (xy -1.27 -2.54) (xy -1.27 -5.08) (xy 0 -5.08) (xy 0 -2.54) (xy 1.27 -1.27) (xy 2.54 -2.54) (xy 3.81 -1.27) + (xy 5.08 -2.54) (xy 6.35 -1.27) (xy 6.35 1.27) (xy 5.08 2.54) (xy 3.81 1.27) (xy 2.54 2.54) (xy 1.27 1.27) + (xy 0 2.54) (xy 0 5.08) (xy -1.27 5.08) (xy -1.27 2.54) (xy -2.54 2.54) (xy -2.54 5.08) (xy -3.81 5.08) + (xy -3.81 6.35) (xy -5.08 6.35) (xy -5.08 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "MagJack-A70-112-331N126" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "MagJack-A70-112-331N126" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MagJack-A70-112-331N126_0_1" + (polyline + (pts + (xy 1.27 40.64) (xy -5.08 40.64) (xy -5.08 48.26) (xy -2.54 48.26) (xy -5.08 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 60.96) (xy -5.08 60.96) (xy -5.08 68.58) (xy -2.54 68.58) (xy -5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "MagJack-A70-112-331N126_1_1" + (rectangle + (start -17.78 1.27) + (end 12.7 74.93) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (arc + (start -2.54 42.545) + (mid -1.905 41.9127) + (end -1.27 42.545) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 50.165) + (mid -1.905 49.5327) + (end -1.27 50.165) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 62.865) + (mid -1.905 62.2327) + (end -1.27 62.865) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 70.485) + (mid -1.905 69.8527) + (end -1.27 70.485) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 38.735) + (mid -1.905 39.3673) + (end -2.54 38.735) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 42.545) + (mid -0.635 41.9127) + (end 0 42.545) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 46.355) + (mid -1.905 46.9873) + (end -2.54 46.355) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 50.165) + (mid -0.635 49.5327) + (end 0 50.165) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 59.055) + (mid -1.905 59.6873) + (end -2.54 59.055) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 62.865) + (mid -0.635 62.2327) + (end 0 62.865) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 66.675) + (mid -1.905 67.3073) + (end -2.54 66.675) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -1.27 70.485) + (mid -0.635 69.8527) + (end 0 70.485) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 27.94) (xy -10.16 27.94) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 30.48) (xy -10.16 30.48) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 33.02) (xy -10.16 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 33.02) (xy -10.16 34.29) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 13.335) (xy -7.62 13.335) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 18.415) (xy -7.62 18.415) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 48.26) (xy -5.08 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 31.75) (xy -3.175 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 48.26) (xy 1.27 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 68.58) (xy 1.27 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 38.735) (xy -10.795 38.735) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 42.545) (xy -10.795 42.545) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 46.355) (xy -10.795 46.355) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 50.165) (xy -10.795 50.165) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 59.055) (xy -10.795 59.055) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 62.865) (xy -10.795 62.865) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 66.675) (xy -10.795 66.675) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 70.485) (xy -10.795 70.485) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 33.02) (xy -1.905 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.635 33.02) (xy -0.635 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 33.02) (xy 0.635 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.905 33.02) (xy 1.905 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.175 33.02) (xy 3.175 31.75) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 38.1) (xy 5.08 38.1) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 40.64) (xy 5.08 40.64) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 43.18) (xy 5.08 43.18) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 45.72) (xy 5.08 45.72) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 48.26) (xy 5.08 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 50.8) (xy 5.08 50.8) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 58.42) (xy 5.08 58.42) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 60.96) (xy 5.08 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 63.5) (xy 5.08 63.5) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 66.04) (xy 5.08 66.04) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 68.58) (xy 5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 71.12) (xy 5.08 71.12) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.445 31.75) (xy 4.445 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 40.64) (xy 8.89 40.64) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 48.26) (xy 8.89 48.26) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 60.96) (xy 8.89 60.96) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.715 31.75) (xy 5.715 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 18.415) (xy 10.16 18.415) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 19.05) (xy 10.16 19.05) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 8.89 15.24) (xy 8.89 17.78) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 8.89 19.05) (xy 8.89 34.29) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 33.02) (xy -10.16 25.4) (xy -12.7 25.4) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 12.7) (xy -6.35 12.7) (xy -6.35 13.335) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 15.24) (xy -6.35 15.24) (xy -6.35 14.605) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.636 20.32) (xy -6.35 20.32) (xy -6.35 19.685) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -6.35 18.415) (xy -6.35 17.78) (xy -8.636 17.78) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 38.735) (xy 0 38.1) (xy 1.27 38.1) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 46.355) (xy 0 45.72) (xy 1.27 45.72) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 59.055) (xy 0 58.42) (xy 1.27 58.42) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 66.675) (xy 0 66.04) (xy 1.27 66.04) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 43.18) (xy 0 43.18) (xy 0 42.545) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 50.8) (xy 0 50.8) (xy 0 50.165) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 63.5) (xy 0 63.5) (xy 0 62.865) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 71.12) (xy 0 71.12) (xy 0 70.485) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 53.34) (xy -5.08 53.34) (xy -5.08 55.88) (xy -11.43 55.88) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 34.29) (xy 8.89 34.29) (xy 8.89 68.58) (xy 5.08 68.58) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 19.685) (xy -5.08 19.685) (xy -6.35 18.415) (xy -7.62 19.685) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 14.605) (xy -7.62 14.605) (xy -6.35 13.335) (xy -5.08 14.605) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 5.08) (xy -8.89 5.08) (xy -8.89 7.62) (xy -10.16 7.62) (xy -8.89 7.62) (xy 8.89 7.62) + (xy 8.89 11.43) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -4.445 33.02) (xy 6.985 33.02) (xy 6.985 22.86) (xy 4.445 22.86) (xy 4.445 21.59) (xy 3.175 21.59) + (xy 3.175 20.32) (xy -0.635 20.32) (xy -0.635 21.59) (xy -1.905 21.59) (xy -1.905 22.86) (xy -4.445 22.86) + (xy -4.445 33.02) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 38.735) + (mid -0.635 39.3673) + (end -1.27 38.735) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 46.355) + (mid -0.635 46.9873) + (end -1.27 46.355) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 59.055) + (mid -0.635 59.6873) + (end -1.27 59.055) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 66.675) + (mid -0.635 67.3073) + (end -1.27 66.675) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 38.1) + (mid 1.9023 38.735) + (end 1.27 39.37) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 39.37) + (mid 1.9023 40.005) + (end 1.27 40.64) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 40.64) + (mid 1.9023 41.275) + (end 1.27 41.91) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 41.91) + (mid 1.9023 42.545) + (end 1.27 43.18) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 45.72) + (mid 1.9023 46.355) + (end 1.27 46.99) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 46.99) + (mid 1.9023 47.625) + (end 1.27 48.26) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 48.26) + (mid 1.9023 48.895) + (end 1.27 49.53) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 49.53) + (mid 1.9023 50.165) + (end 1.27 50.8) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 58.42) + (mid 1.9023 59.055) + (end 1.27 59.69) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 59.69) + (mid 1.9023 60.325) + (end 1.27 60.96) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 60.96) + (mid 1.9023 61.595) + (end 1.27 62.23) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 62.23) + (mid 1.9023 62.865) + (end 1.27 63.5) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 66.04) + (mid 1.9023 66.675) + (end 1.27 67.31) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 67.31) + (mid 1.9023 67.945) + (end 1.27 68.58) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 68.58) + (mid 1.9023 69.215) + (end 1.27 69.85) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 69.85) + (mid 1.9023 70.485) + (end 1.27 71.12) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 39.37) + (mid 3.1777 38.735) + (end 3.81 38.1) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 40.64) + (mid 3.1777 40.005) + (end 3.81 39.37) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 41.91) + (mid 3.1777 41.275) + (end 3.81 40.64) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 43.18) + (mid 3.1777 42.545) + (end 3.81 41.91) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 46.99) + (mid 3.1777 46.355) + (end 3.81 45.72) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 48.26) + (mid 3.1777 47.625) + (end 3.81 46.99) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 49.53) + (mid 3.1777 48.895) + (end 3.81 48.26) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 50.8) + (mid 3.1777 50.165) + (end 3.81 49.53) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 59.69) + (mid 3.1777 59.055) + (end 3.81 58.42) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 60.96) + (mid 3.1777 60.325) + (end 3.81 59.69) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 62.23) + (mid 3.1777 61.595) + (end 3.81 60.96) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 63.5) + (mid 3.1777 62.865) + (end 3.81 62.23) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 67.31) + (mid 3.1777 66.675) + (end 3.81 66.04) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 68.58) + (mid 3.1777 67.945) + (end 3.81 67.31) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 69.85) + (mid 3.1777 69.215) + (end 3.81 68.58) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 71.12) + (mid 3.1777 70.485) + (end 3.81 69.85) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 9.525 12.065) + (end 8.255 14.605) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (text "1000pF" + (at 6.35 17.399 0) + (effects + (font + (size 0.762 0.762) + ) + ) + ) + (text "75" + (at 8.89 13.335 900) + (effects + (font + (size 0.762 0.762) + ) + ) + ) + (text "C1" + (at 6.985 71.755 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C2" + (at 6.985 66.675 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C3" + (at 6.985 64.135 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C4" + (at 6.985 51.435 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C5" + (at 6.985 46.355 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C6" + (at 6.985 59.055 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C7" + (at 6.985 43.815 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "C8" + (at 6.985 38.735 0) + (effects + (font + (size 0.889 0.889) + ) + ) + ) + (text "GREEN" + (at -4.445 12.7 0) + (effects + (font + (size 0.762 0.762) + ) + (justify left) + ) + ) + (text "YELLOW" + (at -4.445 17.78 0) + (effects + (font + (size 0.762 0.762) + ) + (justify left) + ) + ) + (pin passive line + (at -21.59 71.12 0) + (length 3.81) + (name "TRD0+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 38.1 0) + (length 3.81) + (name "TRD3-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 33.02 0) + (length 3.81) + (name "VC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 30.48 0) + (length 3.81) + (name "VC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 27.94 0) + (length 3.81) + (name "VC3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 25.4 0) + (length 3.81) + (name "VC4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 20.32 0) + (length 3.81) + (name "LEDY_A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 17.78 0) + (length 3.81) + (name "LEDY_K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 15.24 0) + (length 3.81) + (name "LEDG_A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 12.7 0) + (length 3.81) + (name "LEDG_K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 7.62 0) + (length 3.81) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 66.04 0) + (length 3.81) + (name "TRD0-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 5.08 0) + (length 3.81) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 63.5 0) + (length 3.81) + (name "TRD1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 55.88 0) + (length 3.81) + (name "CT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 53.34 0) + (length 3.81) + (name "CT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 58.42 0) + (length 3.81) + (name "TRD1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 50.8 0) + (length 3.81) + (name "TRD2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 45.72 0) + (length 3.81) + (name "TRD2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -21.59 43.18 0) + (length 3.81) + (name "TRD3+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "RT9742GGJ5" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RT9742GGJ5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-00.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "1A load switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RT9742GGJ5_0_0" + (pin power_out line + (at -8.89 10.16 0) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -8.89 7.62 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at -8.89 5.08 0) + (length 2.54) + (name "nFLG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 6.35 5.08 180) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 6.35 10.16 180) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "RT9742GGJ5_0_1" + (rectangle + (start -6.35 12.7) + (end 3.81 2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "RT9742SNGV" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -2.54 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RT9742SNGV" + (at 3.81 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:TSOT-23_HandSoldering" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "500mA Load Switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RT9742SNGV_0_1" + (rectangle + (start -2.54 6.35) + (end 7.62 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "RT9742SNGV_1_1" + (pin power_in line + (at -5.08 3.81 0) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 10.16 3.81 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -2.54 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "SolderNut" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim yes) + (in_bom yes) + (on_board no) + (property "Reference" "M" + (at -6.35 -3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "M.2 Solder Nut" + (at 0.254 -5.842 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SolderNut_0_1" + (circle + (center 0 0) + (radius 2.8398) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0) + (radius 4.0161) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + ) + (symbol "TPD4EUSB30" + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -0.635 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TPD4EUSB30" + (at 8.89 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_SON:USON-10_2.5x1.0mm_P0.5mm" + (at -24.13 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tpd2eusb30a.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "4-Channel ESD Protection for Super-Speed USB 3.0 Interface, USON-10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "ESD protection USB 3.0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "USON*2.5x1.0mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TPD4EUSB30_0_0" + (rectangle + (start -5.715 6.477) + (end 5.715 -6.604) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 -6.604) (xy -3.175 6.477) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 6.477) (xy 0 -6.604) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.175 6.477) (xy 3.175 -6.604) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TPD4EUSB30_0_1" + (rectangle + (start -7.62 7.62) + (end 7.62 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (circle + (center -5.715 -2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center -3.175 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 0 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -7.747 2.54) (xy -3.175 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 -2.54) (xy -5.715 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -3.81) (xy -6.35 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 5.08) (xy -6.35 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -3.81) (xy -3.81 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 5.08) (xy -3.81 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.635 0.889) (xy -1.016 0.635) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -6.604) (xy 0 -7.62) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.889) (xy -0.635 0.889) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 0.889) (xy 1.016 1.143) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -3.81) (xy 2.54 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 5.08) (xy 2.54 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -3.81) (xy 5.08 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 5.08) (xy 5.08 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 -2.54) (xy 3.175 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 7.62 2.54) (xy 5.715 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -5.08) (xy -6.35 -5.08) (xy -5.715 -3.81) (xy -5.08 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 3.81) (xy -6.35 3.81) (xy -5.715 5.08) (xy -5.08 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -5.08) (xy -3.81 -5.08) (xy -3.175 -3.81) (xy -2.54 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 3.81) (xy -3.81 3.81) (xy -3.175 5.08) (xy -2.54 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -0.381) (xy -0.635 -0.381) (xy 0 0.889) (xy 0.635 -0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 -5.08) (xy 2.54 -5.08) (xy 3.175 -3.81) (xy 3.81 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.81 3.81) (xy 2.54 3.81) (xy 3.175 5.08) (xy 3.81 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -5.08) (xy 5.08 -5.08) (xy 5.715 -3.81) (xy 6.35 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 3.81) (xy 5.08 3.81) (xy 5.715 5.08) (xy 6.35 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 -6.604) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 -2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 3.175 6.477) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 5.715 2.54) + (radius 0.2794) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "TPD4EUSB30_1_1" + (pin passive line + (at -12.7 2.54 0) + (length 5.08) + (name "D1+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 2.54 0) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 -2.54 0) + (length 5.08) + (name "D1-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -12.7 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 2.54 180) + (length 5.08) + (name "D2+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 -2.54 180) + (length 5.08) + (name "D2-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 -2.54 180) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 2.54 180) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -12.7 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 -2.54 0) + (length 5.08) hide + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "USB3_A" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at -10.16 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "USB3_A" + (at 10.16 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 3.81 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 3.81 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB 3.0 A connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "usb universal serial bus" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "USB3_A_1_1" + (rectangle + (start -8.89 4.064) + (end -7.874 3.556) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 6.604) + (end -7.874 6.096) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 11.684) + (end -7.874 11.176) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 14.224) + (end -7.874 13.716) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 19.304) + (end -7.874 18.796) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 21.844) + (end -7.874 21.336) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -8.89 26.924) + (end -7.874 26.416) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -7.62 -2.286) + (end -8.636 -2.794) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -7.62 0.254) + (end -8.636 -0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -2.286 -11.176) + (end 10.16 -15.24) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -2.286 -4.826) + (end 10.16 -8.89) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.016 -12.446) + (end 8.636 -13.716) + (stroke + (width 0.508) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -1.016 -6.096) + (end 8.636 -7.366) + (stroke + (width 0.508) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 4.572 6.35) (xy 4.572 15.24) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.572 7.62) (xy 7.112 10.16) (xy 7.112 11.43) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 4.572 8.89) (xy 2.032 11.43) (xy 2.032 12.7) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.842 15.24) (xy 4.572 17.78) (xy 3.302 15.24) (xy 5.842 15.24) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 1.016 -13.97) + (end 1.778 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 1.016 -7.62) + (end 1.778 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.667 12.7) + (end 1.397 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 2.794 -13.97) + (end 3.556 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 2.794 -7.62) + (end 3.556 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 4.572 -13.97) + (end 5.334 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 4.572 -7.62) + (end 5.334 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 6.35 -13.97) + (end 7.112 -14.224) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 6.35 -7.62) + (end 7.112 -7.874) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 7.112 12.065) + (radius 0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 11.43 30.48) + (end -8.89 -39.37) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (text "SS" + (at 4.572 3.175 900) + (effects + (font + (size 5.08 5.08) + (bold yes) + (italic yes) + ) + ) + ) + (pin passive line + (at 13.97 -36.83 180) + (length 2.54) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 26.67 0) + (length 2.54) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 19.05 0) + (length 2.54) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 21.59 0) + (length 2.54) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 0 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 11.43 0) + (length 2.54) + (name "SSRX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 13.97 0) + (length 2.54) + (name "SSRX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -2.54 0) + (length 2.54) + (name "DRAIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 3.81 0) + (length 2.54) + (name "SSTX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 6.35 0) + (length 2.54) + (name "SSTX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -7.62 0) + (length 2.54) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -15.24 0) + (length 2.54) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -12.7 0) + (length 2.54) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -34.29 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -22.86 0) + (length 2.54) + (name "SSRX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -20.32 0) + (length 2.54) + (name "SSRX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -11.43 -36.83 0) + (length 2.54) + (name "DRAIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -30.48 0) + (length 2.54) + (name "SSTX-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -11.43 -27.94 0) + (length 2.54) + (name "SSTX+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "LM61460-Q1" + (pin_names (offset 1.016)) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" (at 0 22.86 0) (effects (font (size 1.27 1.27)))) + (property "Value" "LM61460-Q1" (at 0 -26.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm61460-q1.pdf" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes))) + (symbol "LM61460-Q1_0_1" + (rectangle (start -12.7 20.32) (end 12.7 -20.32) (stroke (width 0.254) (type default)) (fill (type background))) + ) + (symbol "LM61460-Q1_1_1" + (pin power_in line (at -16.51 15.24 0) (length 3.81) + (name "VIN1" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -16.51 12.7 0) (length 3.81) + (name "VIN2" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -16.51 5.08 0) (length 3.81) + (name "EN/SYNC" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -16.51 0 0) (length 3.81) + (name "BIAS" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -16.51 -7.62 0) (length 3.81) + (name "RT" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 15.24 180) (length 3.81) + (name "SW" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 16.51 12.7 180) (length 3.81) + (name "CBOOT" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 16.51 10.16 180) (length 3.81) + (name "RBOOT" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 16.51 5.08 180) (length 3.81) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 16.51 -2.54 180) (length 3.81) + (name "FB" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin open_collector line (at 16.51 -7.62 180) (length 3.81) + (name "PGOOD" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -7.62 -21.59 90) (length 3.81) + (name "PGND1" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 -21.59 90) (length 3.81) + (name "PGND2" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 2.54 -21.59 90) (length 3.81) + (name "AGND" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 7.62 -21.59 90) (length 3.81) + (name "EP" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + ) + ) +) diff --git a/carrier/Power.kicad_sch b/carrier/Power.kicad_sch index 8fa7792..524815a 100644 --- a/carrier/Power.kicad_sch +++ b/carrier/Power.kicad_sch @@ -521,6 +521,259 @@ ) ) ) +(symbol "Device:L" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "L" + (at -1.27 0 90) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "L" + (at 1.905 0 90) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Inductor" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "inductor choke coil reactor magnetic" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "L_0_1" + (arc + (start 0 2.54) + (mid 0.6323 1.905) + (end 0 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 1.27) + (mid 0.6323 0.635) + (end 0 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0) + (mid 0.6323 -0.635) + (end 0 -1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -1.27) + (mid 0.6323 -1.905) + (end 0 -2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "L_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "CM5IO:LM61460-Q1" + (pin_names (offset 1.016)) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" (at 0 22.86 0) (effects (font (size 1.27 1.27)))) + (property "Value" "LM61460-Q1" (at 0 -26.67 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm61460-q1.pdf" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes))) + (symbol "LM61460-Q1_0_1" + (rectangle (start -12.7 20.32) (end 12.7 -20.32) (stroke (width 0.254) (type default)) (fill (type background))) + ) + (symbol "LM61460-Q1_1_1" + (pin power_in line (at -16.51 15.24 0) (length 3.81) + (name "VIN1" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -16.51 12.7 0) (length 3.81) + (name "VIN2" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -16.51 5.08 0) (length 3.81) + (name "EN/SYNC" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -16.51 0 0) (length 3.81) + (name "BIAS" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -16.51 -7.62 0) (length 3.81) + (name "RT" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 16.51 15.24 180) (length 3.81) + (name "SW" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 16.51 12.7 180) (length 3.81) + (name "CBOOT" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 16.51 10.16 180) (length 3.81) + (name "RBOOT" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 16.51 5.08 180) (length 3.81) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 16.51 -2.54 180) (length 3.81) + (name "FB" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin open_collector line (at 16.51 -7.62 180) (length 3.81) + (name "PGOOD" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -7.62 -21.59 90) (length 3.81) + (name "PGND1" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 -21.59 90) (length 3.81) + (name "PGND2" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 2.54 -21.59 90) (length 3.81) + (name "AGND" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 7.62 -21.59 90) (length 3.81) + (name "EP" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + ) + ) (symbol "power:PWR_FLAG" (power global) (pin_numbers @@ -1795,6 +2048,516 @@ (pin "1" (uuid "fcebb774-28ce-5368-b1fb-89af26485295")) (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGVINP") (unit 1)))) ) + (symbol + (lib_id "CM5IO:LM61460-Q1") + (at 110.49 149.86 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "bb2028e6-2c58-5430-aaae-8e72e5e31b90") + (property "Reference" "U_BUCK5" (at 113.03 148.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "LM61460-Q1" (at 113.03 150.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias" (at 110.49 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 110.49 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 110.49 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "5239932e-df34-5fbf-b925-0469a4c89f71")) + (pin "2" (uuid "1a5c9d11-7b2c-5de0-b987-362553d2fb16")) + (pin "3" (uuid "6c47cdb6-b989-5078-ab39-ba94b1685630")) + (pin "4" (uuid "b3bd3dff-0d34-5cb0-a8f3-55a934f611ad")) + (pin "5" (uuid "a986b9fd-080d-52d8-ad28-90f9374b6d63")) + (pin "6" (uuid "574091be-9c57-5457-9ab8-69f6715769eb")) + (pin "7" (uuid "b671b106-4b0f-5334-bac6-b606e399f97c")) + (pin "8" (uuid "d6a55035-a60a-5299-b161-3b97832e7626")) + (pin "9" (uuid "b982bb71-0e04-5369-a1ec-09128d56f49c")) + (pin "10" (uuid "571862ab-0687-554a-86ad-56f132f2d902")) + (pin "11" (uuid "ab84323f-4fac-5bc5-8ede-dec2e741dcf1")) + (pin "12" (uuid "5a33f126-8516-5aea-87d9-77cd75d27c6b")) + (pin "13" (uuid "a2afc0ca-3370-5d6a-b014-1ae234f38c23")) + (pin "14" (uuid "c48e9711-5d69-5a77-9a89-426175c100e0")) + (pin "15" (uuid "01723686-3706-5a3a-ac3e-85f2bf30df79")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "U_BUCK5") (unit 1)))) + ) + (label "VIN_PROT" + (at 93.98 134.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "8552dba6-2abc-52ee-95ef-5f68b9d8e390") + ) + (label "VIN_PROT" + (at 93.98 137.16 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "fad02cd2-46a0-58e2-b9de-efb4c43ffe9e") + ) + (label "VIN_PROT" + (at 93.98 144.78 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "85d238f8-2cb7-5b6f-8d22-411a3acae9ce") + ) + (hierarchical_label "+5v" + (shape passive) + (at 93.98 149.86 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "e66063df-2487-5544-8095-10d8ac526478") + ) + (label "VCC5" + (at 127.0 144.78 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "012da113-06e2-5cc5-a7f9-d7c3a7a815de") + ) + (label "RT5" + (at 93.98 157.48 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "a319b3dc-f54d-523e-b723-78ba0cda5c66") + ) + (label "PG5" + (at 127.0 157.48 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "15279314-bfe1-5b52-9c62-df4d0a8e5cb9") + ) + (label "FB5" + (at 127.0 152.4 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "fc4606fa-c40d-5790-9f6c-a32dc69e9869") + ) + (label "SW5" + (at 127.0 134.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "14a12767-212a-50e9-8b62-aeac23d6ec35") + ) + (label "BOOT5" + (at 127.0 137.16 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "cbf18081-fa40-526e-ac37-488b0d6a7a16") + ) + (label "RBOOT5" + (at 127.0 139.7 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "cebdf5c7-1f75-5c07-85ec-66300a8f2361") + ) + (symbol + (lib_id "power:GND") + (at 102.87 171.45 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "c1f76cf8-673f-5481-8bcb-773097fb4c9e") + (property "Reference" "#PWRU_BUCK59" (at 102.87 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 102.87 173.45 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 102.87 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 102.87 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "bdc4129b-750b-5f45-a677-8bd7e391830a")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK59") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 107.95 171.45 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "464a3795-577c-5b55-9041-bd424b9541e7") + (property "Reference" "#PWRU_BUCK511" (at 107.95 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 107.95 173.45 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 107.95 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 107.95 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "f634b675-0ab3-5fd3-933e-d9fbefbc2296")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK511") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 113.03 171.45 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "12f79183-6ff0-54e5-a999-631b6bfd9a9c") + (property "Reference" "#PWRU_BUCK53" (at 113.03 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 113.03 173.45 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 113.03 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 113.03 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "ac2c5e43-8e9d-50e2-b587-33217ee830ba")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK53") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 118.11 171.45 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "59e61dbd-1406-5293-abfc-8ad5705edd35") + (property "Reference" "#PWRU_BUCK515" (at 118.11 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 118.11 173.45 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 118.11 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 118.11 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "529570d7-8d54-5ab8-b2b1-c1eaa93cdd0e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK515") (unit 1)))) + ) + (symbol + (lib_id "Device:L") + (at 149.86 138.43 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "13282749-5e95-58ee-9231-8b8614cdab40") + (property "Reference" "L5" (at 152.4 137.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "4.7uH/7A" (at 152.4 139.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Inductor_SMD:L_Bourns_SRP1245A" (at 149.86 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 149.86 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 149.86 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "063ccb0b-89be-5318-b102-48c5ce80f8e5")) + (pin "2" (uuid "ebca8fe3-694c-5dc9-8ea6-4b81213601bc")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "L5") (unit 1)))) + ) + (label "SW5" + (at 149.86 134.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "9d680344-a4ef-58da-9ab8-62696cb7d4dc") + ) + (hierarchical_label "+5v" + (shape passive) + (at 149.86 142.24 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "739b3dbd-ec63-575c-bad8-93ec618907d0") + ) + (symbol + (lib_id "Device:C") + (at 139.7 132.08 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "5ca205c3-81a0-509d-a41f-c0505043aa0c") + (property "Reference" "C_BOOT5" (at 142.23999999999998 131.08 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100n" (at 142.23999999999998 133.08 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 139.7 132.08 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 139.7 132.08 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 139.7 132.08 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "505fc365-776c-5b28-87f2-ed0acaa92a11")) + (pin "2" (uuid "126c6d6d-669e-521f-bc9b-502988f1f2e3")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_BOOT5") (unit 1)))) + ) + (label "SW5" + (at 139.7 128.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "1bbac075-c7a4-501f-8d16-f29401764cc6") + ) + (label "BOOT5" + (at 139.7 135.89 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "fe9791eb-1873-5fdf-8323-e566a370fd64") + ) + (symbol + (lib_id "Device:R") + (at 144.78 128.27 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f32bc9d8-764a-599c-be5a-897cf5c1ca90") + (property "Reference" "R_BOOT5" (at 147.32 127.27000000000001 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "4.7" (at 147.32 129.27 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 144.78 128.27 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 144.78 128.27 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 144.78 128.27 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "78cc6fe5-104f-5d3b-85c1-35e61dff3aa4")) + (pin "2" (uuid "d045044c-1ccc-5f93-9eb8-780762b17e3c")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_BOOT5") (unit 1)))) + ) + (label "RBOOT5" + (at 144.78 124.46 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "873aa8be-1894-50b5-9a83-d15a746059ae") + ) + (label "BOOT5" + (at 144.78 132.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "ef858d60-15bb-5b14-a7c0-34d1d2450dcb") + ) + (symbol + (lib_id "Device:R") + (at 90.17 157.48 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "d31a7408-0a40-5ef7-9a72-d285f03680ff") + (property "Reference" "R_RT5" (at 92.71000000000001 156.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "31.6k" (at 92.71000000000001 158.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 90.17 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 90.17 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 90.17 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "07762d6e-21f7-59cd-b9a6-5acc18abfd84")) + (pin "2" (uuid "fd6c7911-c2ec-576d-85ee-7105ba2cb959")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_RT5") (unit 1)))) + ) + (label "RT5" + (at 90.17 153.67 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "7e772c61-29e5-522f-846a-ba397444434b") + ) + (symbol + (lib_id "power:GND") + (at 90.17 161.29 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "6a64c6a5-4ff8-5c60-a8a1-01437b3b6818") + (property "Reference" "#PWRR_RT52" (at 90.17 164.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 90.17 163.29 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 90.17 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 90.17 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "7bb6dcc1-179c-55c9-a3f8-48bfdd9395bd")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_RT52") (unit 1)))) + ) + (symbol + (lib_id "Device:R") + (at 134.62 143.51 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "1386a9e4-ce9f-5c71-942a-dce2746e422c") + (property "Reference" "R_PG5" (at 137.16 142.51 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100k" (at 137.16 144.51 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 134.62 143.51 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 134.62 143.51 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 134.62 143.51 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "ada11072-303a-53b3-b720-b33e782b576f")) + (pin "2" (uuid "d9cc0243-755f-548d-a201-8119bf4d72a6")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_PG5") (unit 1)))) + ) + (label "PG5" + (at 134.62 139.7 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "2bfc8c96-2091-54ad-a452-63d45f6a9d48") + ) + (hierarchical_label "+5v" + (shape passive) + (at 134.62 147.32 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "3d4739f2-7956-5811-b5fb-3369b947cc5e") + ) + (symbol + (lib_id "Device:R") + (at 165.1 149.86 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "ff8e143a-f781-5ce0-9b4c-7e3aa74e76c7") + (property "Reference" "R_FBT5" (at 167.64 148.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "40.2k" (at 167.64 150.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 165.1 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 165.1 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 165.1 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "a8747d82-6386-50a6-80f2-710dcd830d83")) + (pin "2" (uuid "4f9fcfd4-d31d-56f4-9d63-c5de216e324d")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBT5") (unit 1)))) + ) + (hierarchical_label "+5v" + (shape passive) + (at 165.1 146.05 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "9fd53965-8f0d-5d9d-976e-b6c82050366b") + ) + (label "FB5" + (at 165.1 153.67 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "7bd1cede-3268-510f-aa19-60cf1d775806") + ) + (symbol + (lib_id "Device:R") + (at 165.1 157.48 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "8a1f173e-c8b4-5192-b453-134c5f5b6aec") + (property "Reference" "R_FBB5" (at 167.64 156.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10.0k" (at 167.64 158.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 165.1 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 165.1 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 165.1 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "cef9c95d-eca6-5fd4-9b83-19134e313e23")) + (pin "2" (uuid "c8413f89-ae6a-578c-94a2-45ed7c8044ec")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBB5") (unit 1)))) + ) + (label "FB5" + (at 165.1 153.67 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "7bd1cede-3268-510f-aa19-60cf1d775806") + ) + (symbol + (lib_id "power:GND") + (at 165.1 161.29 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f5aebc32-789b-5308-871c-97fbb01397f3") + (property "Reference" "#PWRR_FBB52" (at 165.1 164.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 165.1 163.29 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 165.1 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 165.1 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "e72df74d-103a-556b-b3dd-5cdcb6f9e274")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_FBB52") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 100.33 157.48 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "b0c4a74d-ca82-5493-8537-d69e94d8d861") + (property "Reference" "C_VCC5" (at 102.87 156.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "1u" (at 102.87 158.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 100.33 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 100.33 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 100.33 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "bbff54b9-5ced-55bc-b9d3-0098e4a768c2")) + (pin "2" (uuid "36367da5-b7da-5553-96d4-3c889ea92266")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_VCC5") (unit 1)))) + ) + (label "VCC5" + (at 100.33 153.67 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "2af2c2ac-2064-5ffb-ab35-597477fb6077") + ) + (symbol + (lib_id "power:GND") + (at 100.33 161.29 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "7ad4889b-2560-568c-aff3-5bbe7a4c1ca7") + (property "Reference" "#PWRC_VCC52" (at 100.33 164.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 100.33 163.29 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 100.33 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 100.33 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "004582db-706a-5a26-bc74-5ff28c5bab1c")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_VCC52") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 95.25 144.78 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "cb788cd9-b27d-59f0-8f3c-78ae097be890") + (property "Reference" "C_IN5a" (at 97.79 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10u/50V" (at 97.79 145.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 95.25 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 95.25 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 95.25 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "2c8313c1-74d4-58aa-8123-1a255a1d3d92")) + (pin "2" (uuid "0239ef31-8bf8-5e3f-bf07-4dbdec86e3f0")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN5a") (unit 1)))) + ) + (label "VIN_PROT" + (at 95.25 140.97 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "1f8f7633-7ccb-5169-ae05-303647391cba") + ) + (symbol + (lib_id "power:GND") + (at 95.25 148.59 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "c8953dbb-d6ee-5b90-98ea-51420e0daa46") + (property "Reference" "#PWRC_IN5a2" (at 95.25 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 95.25 150.59 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 95.25 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 95.25 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "46cedf4f-023b-5db9-b6be-f93e80607683")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN5a2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 100.33 144.78 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "238c20f2-87e3-5eb2-bca4-9c10da2bdfef") + (property "Reference" "C_IN5b" (at 102.87 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10u/50V" (at 102.87 145.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 100.33 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 100.33 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 100.33 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "0d9fab8e-36ce-585c-b603-de13fb820eb3")) + (pin "2" (uuid "7be21ee0-7f10-5b13-aae2-a442bc625bee")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN5b") (unit 1)))) + ) + (label "VIN_PROT" + (at 100.33 140.97 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "be91b263-8ae5-501a-ae20-c67df882ae18") + ) + (symbol + (lib_id "power:GND") + (at 100.33 148.59 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "6cf0cfe4-51a6-50c7-8b1f-846c52e4cb13") + (property "Reference" "#PWRC_IN5b2" (at 100.33 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 100.33 150.59 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 100.33 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 100.33 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "411d98e4-f020-55af-b3d6-6960ce47e7dc")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN5b2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 175.26 138.43 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "8593b239-c9b1-598f-b0d2-8b84204149ee") + (property "Reference" "C_OUT5a" (at 177.79999999999998 137.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "47u/16V" (at 177.79999999999998 139.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 175.26 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 175.26 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 175.26 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "98a691a6-cfb6-5f28-8297-fc4c607f17dd")) + (pin "2" (uuid "a8b3e983-a1fa-5da7-807b-e7b7677ddaaa")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT5a") (unit 1)))) + ) + (hierarchical_label "+5v" + (shape passive) + (at 175.26 134.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f666b22b-d9d2-555f-8f1b-5f0e1d98a144") + ) + (symbol + (lib_id "power:GND") + (at 175.26 142.24 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "b9361e54-0737-51f4-9f0d-3a1fe5b256b7") + (property "Reference" "#PWRC_OUT5a2" (at 175.26 145.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 175.26 144.24 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 175.26 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 175.26 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "e7490cc1-8a64-5ef2-97f8-a36a33982ae3")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT5a2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 180.34 138.43 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "56b8cdc4-efb6-5bed-8edd-3547eae2ffdf") + (property "Reference" "C_OUT5b" (at 182.88 137.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "47u/16V" (at 182.88 139.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 180.34 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 180.34 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 180.34 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "939b4e50-1889-5cc1-bcf1-330755205961")) + (pin "2" (uuid "b80e94ed-02de-555f-992d-5d77ef3b8d39")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT5b") (unit 1)))) + ) + (hierarchical_label "+5v" + (shape passive) + (at 180.34 134.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "1bba7444-06e4-5ffd-9751-660874caadac") + ) + (symbol + (lib_id "power:GND") + (at 180.34 142.24 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "2b318152-7c85-558b-a008-2421e50766b8") + (property "Reference" "#PWRC_OUT5b2" (at 180.34 145.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 180.34 144.24 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 180.34 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 180.34 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "191c0e1c-9ee5-5262-a248-5b53330a02b6")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT5b2") (unit 1)))) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 149.86 142.24 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "9fc034bc-7e4a-56da-aae8-b4dab1533968") + (property "Reference" "#FLGP5V" (at 149.86 139.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "PWR_FLAG" (at 149.86 140.24 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 149.86 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 149.86 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "27e0e6b7-4281-5c4d-b9d6-26200e20eae9")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP5V") (unit 1)))) + ) (sheet_instances (path "/" (page "5") diff --git a/tools/build_power.py b/tools/build_power.py index e95a9f6..7d89b1b 100644 --- a/tools/build_power.py +++ b/tools/build_power.py @@ -67,6 +67,42 @@ def add_from(lib_id, srctext, srcname=None): # reuse R/C/C_Polarized/GND verbatim from the carrier (guaranteed compatible) for lid in ["Device:R", "Device:C", "Device:C_Polarized", "power:GND"]: add_from(lid, carrier_hs) +add_from("Device:L", open(f"{KSS}/Device.kicad_sym").read(), "L") + +def register_lm61460(): + """Hand-authored lib_symbol for LM61460-Q1 (14-pin HTSSOP-1EP + EP=15), + built from the datasheet pin table (SNVSB70F). VREF(FB)=1.0V, VIN abs-max 42V. + Pin types picked for cross-sheet ERC: VIN/PGND/AGND/BIAS/EP power_in, VCC power_out, + SW output, FB/EN input, RT/CBOOT/RBOOT passive, PGOOD open_collector.""" + P = [('8','VIN1','power_in',-16.51,15.24,0), ('12','VIN2','power_in',-16.51,12.7,0), + ('7','EN/SYNC','input',-16.51,5.08,0), ('1','BIAS','power_in',-16.51,0,0), + ('6','RT','passive',-16.51,-7.62,0), + ('10','SW','output',16.51,15.24,180), ('14','CBOOT','passive',16.51,12.7,180), + ('13','RBOOT','passive',16.51,10.16,180), ('2','VCC','power_out',16.51,5.08,180), + ('4','FB','passive',16.51,-2.54,180), ('5','PGOOD','open_collector',16.51,-7.62,180), + ('9','PGND1','power_in',-7.62,-21.59,90), ('11','PGND2','power_in',-2.54,-21.59,90), + ('3','AGND','power_in',2.54,-21.59,90), ('15','EP','power_in',7.62,-21.59,90)] + pt = "" + for num, name, ty, lx, ly, ang in P: + pt += (f'\t\t\t(pin {ty} line (at {lx} {ly} {ang}) (length 3.81)\n' + f'\t\t\t\t(name "{name}" (effects (font (size 1.27 1.27))))\n' + f'\t\t\t\t(number "{num}" (effects (font (size 1.27 1.27))))\n\t\t\t)\n') + blk = ('\t(symbol "CM5IO:LM61460-Q1"\n\t\t(pin_names (offset 1.016))\n' + '\t\t(exclude_from_sim no)\n\t\t(in_bom yes)\n\t\t(on_board yes)\n' + '\t\t(property "Reference" "U" (at 0 22.86 0) (effects (font (size 1.27 1.27))))\n' + '\t\t(property "Value" "LM61460-Q1" (at 0 -26.67 0) (effects (font (size 1.27 1.27))))\n' + '\t\t(property "Footprint" "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + '\t\t(property "Datasheet" "https://www.ti.com/lit/ds/symlink/lm61460-q1.pdf" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + '\t\t(symbol "LM61460-Q1_0_1"\n' + '\t\t\t(rectangle (start -12.7 20.32) (end 12.7 -20.32) (stroke (width 0.254) (type default)) (fill (type background)))\n\t\t)\n' + f'\t\t(symbol "LM61460-Q1_1_1"\n{pt}\t\t)\n\t)') + LIBS["CM5IO:LM61460-Q1"] = (blk, lib_pins(blk)) +register_lm61460() +# +5v pre-exists in the carrier as a HIERARCHICAL net (local + hierarchical labels on the CM5 +# sheets) -> expose it hierarchically here (a global label collides: same_local_global_label). +# +3V3_RF/+3V3_AUX are new nets introduced by this port -> global is fine. +GLOBAL_NETS = {"+3V3_RF", "+3V3_AUX"} +HIER_NETS = {"+5v"} # from KiCad libs (renamed to full lib_id) add_from("power:PWR_FLAG", open(f"{KSS}/power.kicad_sym").read(), "PWR_FLAG") add_from("Power_Management:LM74700", open(f"{KSS}/Power_Management.kicad_sym").read(), "LM74700") @@ -82,6 +118,9 @@ def emit_label(net, x, y, ang=0): def emit_glabel(net, x, y, ang=0): body.append(f'\t(global_label "{net}"\n\t\t(shape input)\n\t\t(at {x} {y} {ang})\n' f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("gl-"+net+f"-{x}-{y}")}")\n\t)\n') +def emit_hlabel(net, x, y, ang=0): + body.append(f'\t(hierarchical_label "{net}"\n\t\t(shape passive)\n\t\t(at {x} {y} {ang})\n' + f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("hl-"+net+f"-{x}-{y}")}")\n\t)\n') def emit_gnd(x, y, tag): body.append(f'\t(symbol\n\t\t(lib_id "power:GND")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("gnd-"+tag)}")\n' @@ -121,6 +160,8 @@ def place(lib_id, ref, value, footprint, ox, oy, pin_nets): lx, ly, _ = pins[num]; px, py = round(ox + lx, 2), round(oy - ly, 2) if net == ('gnd',): emit_gnd(px, py, ref + num) elif isinstance(net, tuple) and net[0] == 'global': emit_glabel(net[1], px, py) + elif net in GLOBAL_NETS: emit_glabel(net, px, py) + elif net in HIER_NETS: emit_hlabel(net, px, py) else: emit_label(net, px, py) return ox, oy @@ -144,6 +185,28 @@ def pin_abs(origin, lib_id, num): fx, fy = pin_abs(drev, "Power_Management:LM74700", "6"); emit_flag(fx, fy, "15IN") vx, vy = pin_abs(tvs, "Device:D_TVS", "1"); emit_flag(vx, vy, "VINP") +# ---- STAGE 2: U_BUCK5 15V -> +5v 5A (LM61460-Q1, sync, 42V absmax) -------------- +# FB divider: Vout = VREF*(1+Rfbt/Rfbb), VREF=1.0V -> Rfbt/Rfbb=4 -> 40.2k/10.0k = 5.02V. +# fsw ~= 400kHz (RT 31.6k); L=4.7uH; Cout 2x47u/16V; Cin 2x10u/50V; Cboot 100n; BIAS->+5v. +place("CM5IO:LM61460-Q1", "U_BUCK5", "LM61460-Q1", "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias", + 110, 150, {'8': 'VIN_PROT', '12': 'VIN_PROT', '7': 'VIN_PROT', '1': '+5v', '2': 'VCC5', + '6': 'RT5', '5': 'PG5', '4': 'FB5', '10': 'SW5', '14': 'BOOT5', '13': 'RBOOT5', + '9': GND, '11': GND, '3': GND, '15': GND}) +l5 = place("Device:L", "L5", "4.7uH/7A", "Inductor_SMD:L_Bourns_SRP1245A", 150, 138, {'1': 'SW5', '2': '+5v'}) +place("Device:C", "C_BOOT5", "100n", "Capacitor_SMD:C_0402_1005Metric", 140, 132, {'1': 'SW5', '2': 'BOOT5'}) +place("Device:R", "R_BOOT5", "4.7", "Resistor_SMD:R_0402_1005Metric", 145, 128, {'1': 'RBOOT5', '2': 'BOOT5'}) +place("Device:R", "R_RT5", "31.6k", "Resistor_SMD:R_0402_1005Metric", 90, 158, {'1': 'RT5', '2': GND}) +place("Device:R", "R_PG5", "100k", "Resistor_SMD:R_0402_1005Metric", 135, 143, {'1': 'PG5', '2': '+5v'}) +place("Device:R", "R_FBT5", "40.2k", "Resistor_SMD:R_0402_1005Metric", 165, 150, {'1': '+5v', '2': 'FB5'}) +place("Device:R", "R_FBB5", "10.0k", "Resistor_SMD:R_0402_1005Metric", 165, 158, {'1': 'FB5', '2': GND}) +place("Device:C", "C_VCC5", "1u", "Capacitor_SMD:C_0402_1005Metric", 100, 158, {'1': 'VCC5', '2': GND}) +place("Device:C", "C_IN5a", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 95, 145, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_IN5b", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 100, 145, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_OUT5a", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 175, 138, {'1': '+5v', '2': GND}) +place("Device:C", "C_OUT5b", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 180, 138, {'1': '+5v', '2': GND}) +# +5v is now sourced by this buck -> PWR_FLAG co-located on L5 pin2 (+5v) +p5x, p5y = pin_abs(l5, "Device:L", "2"); emit_flag(p5x, p5y, "P5V") + # ---- file scaffold ---------------------------------------------------------------- libsyms = "\n".join(blk for blk, _ in LIBS.values()) sheet = ('(kicad_sch\n\t(version 20231120)\n\t(generator "eeschema")\n\t(generator_version "8.0")\n' From d72f3a4bd87d8c773f93aafdb209d4dca0cb6972 Mon Sep 17 00:00:00 2001 From: noise Date: Wed, 1 Jul 2026 20:28:30 -0400 Subject: [PATCH 06/16] docs: add session-handoff RESUME header to PORT_STATUS Explicit resume pointer for a fresh session: current state (HEAD, sheets, ERC=133 baseline), the exact next action (Power Stage 3 U_BUCK33R +3V3_RF with FB divider + E-key PWR_FLAG removal + PCIE_PWR_EN/EN wiring), and the build/verify commands + gotchas. Co-Authored-By: Claude Opus 4.8 (1M context) --- PORT_STATUS.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/PORT_STATUS.md b/PORT_STATUS.md index e4a24c7..7fdea73 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -4,6 +4,40 @@ > `.claude/skills/kicad-port/SKILL.md` (the mandatory workflow/verify-loop), then > `CM5_Carrier_Design.md` (frozen rev-A spec). +## ▶ RESUME HERE (session handoff, 2026-07-01) + +**State:** branch `port/strip-phase`, HEAD `fd627f5`, working tree clean (only unrelated +`refs/.history` submodule blip). Sheets in `carrier/`: root `CM5IO`, `CM5_GPIO`, `CM5_HighSpeed` +(reference, stripped), `M2_Ekey` (E-key, done), `Power` (stages 1–2 done). Baseline anchor: +`analysis/baseline/carrier_stripped.json`. + +**Done:** strip phase (microSD/HDMI/MIPI/PCIe-M2); M.2 E-key sheet (PCIe ×1 to CM5); Power +stage 1 (LM74700 ideal-diode input protection → `VIN_PROT`); Power stage 2 (LM61460-Q1 +15→`+5v` 5 A sync buck, SPICE-verified 5.02 V). Current whole-design **ERC = 133** (all +pre-existing types; a good edit adds **zero new**). + +**NEXT ACTION → Power Stage 3: `U_BUCK33R` 15→`+3V3_RF` 4 A.** Edit `tools/build_power.py`, +append a Stage-3 block (copy the Stage-2 pattern): reuse the `CM5IO:LM61460-Q1` symbol; FB +divider for 3.3 V → ratio 2.3 → `R_FBT 23.2k / R_FBB 10.0k` (SPICE-verify vfb=1.0 V @ 3.32 V); +same L/Cin/Cout/boot/RT support. Then **(a)** delete the E-key temp `PWR_FLAG` on `+3V3_RF` +(`#FLG33RF` in `carrier/M2_Ekey.kicad_sch` via build_ekey — the buck is the real driver now), +and **(b)** wire the buck `EN` ← CM5 `PCIE_PWR_EN` (Module1 pin 106, currently NC on +`CM5_HighSpeed`) for SW radio-power control. `+3V3_RF` is a NEW net → keep it a **global** label +(no `same_local_global_label` risk, unlike `+5v`). Then Stage 4 (`+3V3_AUX`, TPS54202 28 V), +then the GPS + PPS sheet. + +**How to build/verify (every change):** +- Sheets are generated wholesale — edit `tools/build_ekey.py` / `tools/build_power.py`, then + `python3 tools/build_power.py --apply`. Custom IC symbols go in `carrier/CM5IO.kicad_sym` + (bare name) AND embed in the sheet as `CM5IO:` — else ERC `lib_symbol_issues`. +- Verify loop (judge by the **integrated root** run, not standalone sub-sheets): + `kicad-cli sch erc --format json -o /tmp/e.json carrier/CM5IO.kicad_sch` (track delta vs 133, + zero new types) → `analyze_schematic.py carrier/CM5IO.kicad_sch` + `diff_analysis.py + analysis/baseline/carrier_stripped.json …` (zero regressions) → for bucks, `simulate_subcircuits.py`. +- Gotchas (full list in memory `port-progress`): grid-snap all coords to 1.27 mm or labels don't + bind; PWR_FLAG/GND must sit on a real pin coord; pre-existing `+5v` is hierarchical (not global); + type feedback pins `passive`; connector/module pin types may need remodeling for cross-part ERC. + ## What this repo is Two intertwined goals: From 261bf48bb44d60291e5c858ed7340bbbab33fc39 Mon Sep 17 00:00:00 2001 From: noise Date: Wed, 1 Jul 2026 22:11:24 -0400 Subject: [PATCH 07/16] Power stage 3: LM61460-Q1 15V->+3V3_RF 4A buck; EN from CM5 PCIE_PWR_EN - Second LM61460-Q1 (U_BUCK33R), FB 23.2k/10.0k -> 3.32V (SPICE: vfb 0.994V, inrush settles 3.32V); shared BOM with stage 2 (L 4.7uH/7A, RT 31.6k ~420kHz) - BIAS -> +3V3_RF (datasheet-valid >=3.1V, falls back to VIN below) - EN <- PCIE_PWR_EN: Module1 pin 106 NC swapped for a global label on CM5_HighSpeed + 100k pull-down (mirrors reference R14) so the Wi-Fi rail stays off until CM5 asserts it; netlist-verified 3-node net - Removed the E-key temp PWR_FLAG (#FLG33RF); buck PWR_FLAG on L33.2 is now the sole +3V3_RF driver - Verify: ERC 133->133 zero new; analyzer +49/-0 zero regressions; SPICE 17 pass / 2 benign warn / 0 fail Co-Authored-By: Claude Fable 5 --- PORT_STATUS.md | 31 +- carrier/CM5_HighSpeed.kicad_sch | 8 +- carrier/M2_Ekey.kicad_sch | 13 - carrier/Power.kicad_sch | 545 ++++++++++++++++++++++++++++++++ tools/build_ekey.py | 10 +- tools/build_power.py | 28 +- 6 files changed, 594 insertions(+), 41 deletions(-) diff --git a/PORT_STATUS.md b/PORT_STATUS.md index 7fdea73..78efabf 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -6,25 +6,23 @@ ## ▶ RESUME HERE (session handoff, 2026-07-01) -**State:** branch `port/strip-phase`, HEAD `fd627f5`, working tree clean (only unrelated -`refs/.history` submodule blip). Sheets in `carrier/`: root `CM5IO`, `CM5_GPIO`, `CM5_HighSpeed` -(reference, stripped), `M2_Ekey` (E-key, done), `Power` (stages 1–2 done). Baseline anchor: -`analysis/baseline/carrier_stripped.json`. +**State:** branch `port/strip-phase`. Sheets in `carrier/`: root `CM5IO`, `CM5_GPIO`, +`CM5_HighSpeed` (reference, stripped), `M2_Ekey` (E-key, done), `Power` (stages 1–3 done). +Baseline anchor: `analysis/baseline/carrier_stripped.json`. **Done:** strip phase (microSD/HDMI/MIPI/PCIe-M2); M.2 E-key sheet (PCIe ×1 to CM5); Power stage 1 (LM74700 ideal-diode input protection → `VIN_PROT`); Power stage 2 (LM61460-Q1 -15→`+5v` 5 A sync buck, SPICE-verified 5.02 V). Current whole-design **ERC = 133** (all -pre-existing types; a good edit adds **zero new**). +15→`+5v` 5 A sync buck, SPICE-verified 5.02 V); Power stage 3 (LM61460-Q1 15→`+3V3_RF` 4 A, +SPICE-verified 3.32 V; EN ← CM5 `PCIE_PWR_EN`/106 + 100k pull-down like reference R14; E-key +temp PWR_FLAG removed — buck is the sole `+3V3_RF` driver). Current whole-design **ERC = 133** +(all pre-existing types; a good edit adds **zero new**). -**NEXT ACTION → Power Stage 3: `U_BUCK33R` 15→`+3V3_RF` 4 A.** Edit `tools/build_power.py`, -append a Stage-3 block (copy the Stage-2 pattern): reuse the `CM5IO:LM61460-Q1` symbol; FB -divider for 3.3 V → ratio 2.3 → `R_FBT 23.2k / R_FBB 10.0k` (SPICE-verify vfb=1.0 V @ 3.32 V); -same L/Cin/Cout/boot/RT support. Then **(a)** delete the E-key temp `PWR_FLAG` on `+3V3_RF` -(`#FLG33RF` in `carrier/M2_Ekey.kicad_sch` via build_ekey — the buck is the real driver now), -and **(b)** wire the buck `EN` ← CM5 `PCIE_PWR_EN` (Module1 pin 106, currently NC on -`CM5_HighSpeed`) for SW radio-power control. `+3V3_RF` is a NEW net → keep it a **global** label -(no `same_local_global_label` risk, unlike `+5v`). Then Stage 4 (`+3V3_AUX`, TPS54202 28 V), -then the GPS + PPS sheet. +**NEXT ACTION → Power Stage 4: `U_BUCK33A` 15→`+3V3_AUX` ~1 A.** Candidate part TPS54202 +(28 V sync) — datasheet-verify first (KiCad has `Regulator_Switching:TPS54202DDC`). One check +that MUST pass: the SMBJ18A clamp (~29 V at rated Ipp) vs the part's VIN abs-max — if the +datasheet says <30 V abs-max, pick a 36 V-class sync part instead (LMR51430/TPS54360-class) +or justify why the surge case is acceptable. FB divider per that part's VREF; SPICE-verify. +`+3V3_AUX` is a NEW net → **global** label. Then the GPS + PPS sheet, then power-budget review. **How to build/verify (every change):** - Sheets are generated wholesale — edit `tools/build_ekey.py` / `tools/build_power.py`, then @@ -134,7 +132,8 @@ Notes that bit us (don't re-learn the hard way): 4. **Power sheet** (`carrier/Power.kicad_sch`, generated by `tools/build_power.py`) — staged, **sync + datasheet-built parts** (user choice). **Spec rating fix:** the spec's buck candidates miss its own ≥20V-Vin rule (TPS54424=17V, TPS54560=async) — selecting synchronous ≥30V parts instead (LM61460-class 6A for +5V & +3V3_RF/4A; TPS54202 28V for +3V3_AUX), each verified vs datasheet before commit. - **Stage 1 — input protection ✅ DONE.** J_PWR(15V) → D_REV `LM74700-Q1` ideal-diode + Q_REV N-FET (reverse-polarity/-current) → `VIN_PROT`; `SMBJ18A` TVS + 100µF/25V ∥ 10µF/50V bulk; C_VCAP charge-pump cap. Netlist-verified topology; ERC 133→133 (zero new); analyzer 0 regressions. **Confirm vs LM74700-Q1 datasheet:** C_VCAP value, EN-to-+15V_IN, FET pick (Vds≥30V, SOA/inrush) + optional gate R. - **Stage 2 — U_BUCK5 15→`+5v` 5A ✅ DONE.** `LM61460-Q1` (6A, 42V absmax sync; **custom symbol built from the datasheet** → `carrier/CM5IO.kicad_sym` as `CM5IO:LM61460-Q1`, fp `Package_SO:Texas_HTSSOP-14-1EP…ThermalVias`). VREF=1.0V → FB divider R_FBT5 40.2k / R_FBB5 10.0k = **5.02V (SPICE-confirmed vfb=1.0V)**. L5 4.7µH, Cout 2×47µF/16V, Cin 2×10µF/50V, Cboot 100n+Rboot 4.7Ω, RT 31.6k(~400kHz), BIAS→+5v, EN→VIN_PROT, PGOOD 100k→+5v. **`+5v` kept HIERARCHICAL** (pre-existing carrier net; global would collide `same_local_global_label`) — Power sheet exposes a `+5v` sheet pin, tied into the root `+5v` net; netlist-verified it drives Module1 + GPIO + USB. ERC 133→133 (zero new); analyzer +32 added **0 regressions**; SPICE 12/13 pass, 1 benign warn (L5/Cboot mis-detected as LC filter). **Confirm vs datasheet:** RT freq, L sat ≥7A, EP=pad15, optional EN UVLO divider. - - **Stage 3** U_BUCK33R 15→3.3V 4A → `+3V3_RF` (then REMOVE the E-key temp PWR_FLAG; wire buck EN ← CM5 `PCIE_PWR_EN`/106). **Stage 4** U_BUCK33A 15→3.3V 1A → `+3V3_AUX`. SPICE-validate each feedback divider. + - **Stage 3 — U_BUCK33R 15→`+3V3_RF` 4A ✅ DONE.** Second `LM61460-Q1` (shared BOM with stage 2: L 4.7µH/7A ripple ~1.3A=33%, Cin 2×10µ/50V, Cout 2×47µ/16V, RT 31.6k ~420kHz, Cboot 100n+Rboot 4.7). FB divider R_FBT33 23.2k / R_FBB33 10.0k = **3.32V (SPICE: vfb 0.994V, inrush settles 3.32V)**. BIAS→`+3V3_RF` (datasheet: valid ≥3.1V, auto-falls back to VIN below). **EN ← CM5 `PCIE_PWR_EN`** (Module1 pin 106: NC swapped for a global label on `CM5_HighSpeed`) + **R_EN33 100k pull-down** (mirrors reference R14 — netlist-verified `Module1.106 + U_BUCK33R.7 + R_EN33.1`) so the Wi-Fi rail is OFF until the CM5 asserts it. **E-key temp `#FLG33RF` PWR_FLAG removed** (build_ekey); the buck's PWR_FLAG on L33.2 is now the sole `+3V3_RF` driver — netlist shows buck + all 4 J_E power pins + pull-ups + decoupling on one net. Verify: ERC 133→133 zero new; analyzer +49 added **0 regressions**; SPICE 17 pass / 2 benign warn (the L/C_BOOT "LC filter" mis-detect, once per buck) / 0 fail. (Note: `kicad-cli` netlist export prints a pre-existing "annotation errors" warning — un-numbered generated refdeses like `J_E`/`J_PWR`; present at fd627f5 too, cosmetic.) + - **Stage 4** U_BUCK33A 15→3.3V ~1A → `+3V3_AUX`. SPICE-validate the feedback divider (see NEXT ACTION above for the part-selection gate). 5. **GPS + PPS distribution**: GPS connector (PPS+UART+3V3+GND); PPS → TVS → Schmitt (LVC1G17) → fan-out: CM5 `Ethernet_SYNC_OUT` (J2 pin-6 net, 3.3V, no translator) + 2 header taps. SPICE/timing check. diff --git a/carrier/CM5_HighSpeed.kicad_sch b/carrier/CM5_HighSpeed.kicad_sch index b5449f8..3e7ab23 100644 --- a/carrier/CM5_HighSpeed.kicad_sch +++ b/carrier/CM5_HighSpeed.kicad_sch @@ -12684,9 +12684,11 @@ (at 38.1 144.78) (uuid "3e94757c-62b4-5b7d-9eb9-0bce1d18da64") ) - (no_connect - (at 38.1 30.48) - (uuid "22043a85-7370-5a2b-9195-7034c3f95e65") + (global_label "PCIE_PWR_EN" + (shape input) + (at 38.1 30.48 180) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid "ec1f5dd4-69da-5539-9a4f-28c69e37960f") ) (global_label "PCIE_nCLKREQ" (shape input) diff --git a/carrier/M2_Ekey.kicad_sch b/carrier/M2_Ekey.kicad_sch index 3893b18..361a872 100644 --- a/carrier/M2_Ekey.kicad_sch +++ b/carrier/M2_Ekey.kicad_sch @@ -2298,19 +2298,6 @@ (pin "1" (uuid "4b6d8ed9-33cb-576b-b25a-4d7450c86b69")) (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E3g") (unit 1)))) ) - (symbol - (lib_id "power:PWR_FLAG") - (at 214.63 106.68 0) - (unit 1) - (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "57cb1e76-9a59-5707-bae8-cb2acbf83bcd") - (property "Reference" "#FLG33RF" (at 214.63 103.68 0) (effects (font (size 1.27 1.27)) (hide yes))) - (property "Value" "PWR_FLAG" (at 214.63 104.68 0) (effects (font (size 1.27 1.27)))) - (property "Footprint" "" (at 214.63 106.68 0) (effects (font (size 1.27 1.27)) (hide yes))) - (property "Datasheet" "" (at 214.63 106.68 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "63df115b-4a9f-5dd3-b381-99eea593a368")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#FLG33RF") (unit 1)))) - ) (sheet_instances (path "/" (page "4") diff --git a/carrier/Power.kicad_sch b/carrier/Power.kicad_sch index 524815a..d083f93 100644 --- a/carrier/Power.kicad_sch +++ b/carrier/Power.kicad_sch @@ -2558,6 +2558,551 @@ (pin "1" (uuid "27e0e6b7-4281-5c4d-b9d6-26200e20eae9")) (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP5V") (unit 1)))) ) + (symbol + (lib_id "CM5IO:LM61460-Q1") + (at 229.87 149.86 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "046070ba-66fb-59cc-98a8-53761c19a7e1") + (property "Reference" "U_BUCK33R" (at 232.41 148.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "LM61460-Q1" (at 232.41 150.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias" (at 229.87 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 229.87 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 229.87 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "da577313-4e1a-5f91-b7d8-960d0fb4836c")) + (pin "2" (uuid "249cfe65-2f70-5264-9499-3fe669a6c397")) + (pin "3" (uuid "22366cf7-2a57-5569-81ad-575461026da7")) + (pin "4" (uuid "f1fb0dfb-2df7-5bec-8838-65e99bc490cf")) + (pin "5" (uuid "716461bc-0a8d-53e3-9ace-71cb12ba83c7")) + (pin "6" (uuid "e269d70e-36d7-59bc-a043-b45077f572bf")) + (pin "7" (uuid "193ab7bf-5ef1-572e-bbf2-3b6404692c97")) + (pin "8" (uuid "1d89675f-9645-5665-a653-b5f422027dd2")) + (pin "9" (uuid "d2fe1512-c325-591b-bda8-e94c89b51063")) + (pin "10" (uuid "8c4ef216-239c-5b67-b0d9-cb0c26426dd3")) + (pin "11" (uuid "34382b88-a790-587f-b390-6555f56d93c0")) + (pin "12" (uuid "c4877149-42e0-5804-aa78-a0be3c4cb486")) + (pin "13" (uuid "a2b26205-9cce-59bf-80b5-4955f0a1a421")) + (pin "14" (uuid "36ab0c65-d586-5540-b3d0-5b3ae11a7ac9")) + (pin "15" (uuid "8b01e30f-5e3f-58b5-92e1-510de24ac156")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "U_BUCK33R") (unit 1)))) + ) + (label "VIN_PROT" + (at 213.36 134.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "6d1a869f-83b6-5d9b-bb1a-39e259569002") + ) + (label "VIN_PROT" + (at 213.36 137.16 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "df0ee602-1c0a-5b3b-92be-6469e4bef8ce") + ) + (global_label "PCIE_PWR_EN" + (shape input) + (at 213.36 144.78 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "622e6d6b-d59a-53d0-ad41-28fadcd5c400") + ) + (global_label "+3V3_RF" + (shape input) + (at 213.36 149.86 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "cddde45f-c05b-59fc-ba4d-fb1e1a49fcfb") + ) + (label "VCC33" + (at 246.38 144.78 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "124ab7bf-426a-591d-8a01-5a50db38d15d") + ) + (label "RT33" + (at 213.36 157.48 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "c1dd8202-ba6d-571f-9786-61495b78c725") + ) + (label "PG33" + (at 246.38 157.48 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "0d80eae2-44d9-5828-8bf4-a366c63f4152") + ) + (label "FB33" + (at 246.38 152.4 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "c32765c2-b72b-5a57-93b6-5df4253f9abb") + ) + (label "SW33" + (at 246.38 134.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "ee50e65f-5394-5a2c-9b5e-dc257ace40fc") + ) + (label "BOOT33" + (at 246.38 137.16 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "312a27fc-7bca-522d-a20e-792911337f21") + ) + (label "RBOOT33" + (at 246.38 139.7 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "893daf8e-4520-562e-82bf-93935c4fcf10") + ) + (symbol + (lib_id "power:GND") + (at 222.25 171.45 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "4ebe1cbb-72aa-5e10-9d5c-e576b0fe6f6a") + (property "Reference" "#PWRU_BUCK33R9" (at 222.25 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 222.25 173.45 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 222.25 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 222.25 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "cca34353-a27f-52e2-8311-fd46bd209b07")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R9") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 227.33 171.45 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "0d05abc2-e5be-5ff0-949b-eef3c8f7602f") + (property "Reference" "#PWRU_BUCK33R11" (at 227.33 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 227.33 173.45 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 227.33 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 227.33 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "3f7fd57b-f01b-5f95-9404-e387ca54de28")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R11") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 232.41 171.45 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "4ca5195d-104e-533d-86f5-56588188f871") + (property "Reference" "#PWRU_BUCK33R3" (at 232.41 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 232.41 173.45 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 232.41 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 232.41 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "0676173c-01c9-5a0b-884a-a3314980e9aa")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R3") (unit 1)))) + ) + (symbol + (lib_id "power:GND") + (at 237.49 171.45 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f3770f03-efc9-52f8-9cca-ed26a6270536") + (property "Reference" "#PWRU_BUCK33R15" (at 237.49 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 237.49 173.45 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 237.49 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 237.49 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "7a121dd3-1db2-51d3-91fb-614b51559b7a")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R15") (unit 1)))) + ) + (symbol + (lib_id "Device:L") + (at 270.51 138.43 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "548ab669-271c-546a-885b-d00fb09a6d6e") + (property "Reference" "L33" (at 273.05 137.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "4.7uH/7A" (at 273.05 139.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Inductor_SMD:L_Bourns_SRP1245A" (at 270.51 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 270.51 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 270.51 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "8c902e04-22cd-5c0e-b938-7261c984501c")) + (pin "2" (uuid "4533aebb-227d-522c-b4fe-1cbdd3dbda8e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "L33") (unit 1)))) + ) + (label "SW33" + (at 270.51 134.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "01fc79e5-bc43-54d5-af68-9c35bd8175e4") + ) + (global_label "+3V3_RF" + (shape input) + (at 270.51 142.24 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "0a00aa2b-6f62-5dcb-97ff-d7f7d3a365c4") + ) + (symbol + (lib_id "Device:C") + (at 260.35 132.08 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "fb082a22-bf66-5564-bc62-d5be06cafd29") + (property "Reference" "C_BOOT33" (at 262.89000000000004 131.08 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100n" (at 262.89000000000004 133.08 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 260.35 132.08 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 260.35 132.08 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 260.35 132.08 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "5874c0fc-9d03-5399-9cc1-5d0b40cd1431")) + (pin "2" (uuid "d2f32b50-e8d7-59b7-b8bb-11bce6e22dc4")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_BOOT33") (unit 1)))) + ) + (label "SW33" + (at 260.35 128.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "18055666-e2d8-5853-bc0b-1210fc9c90b0") + ) + (label "BOOT33" + (at 260.35 135.89 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "83133f38-374f-5147-8831-c5ab50d027e1") + ) + (symbol + (lib_id "Device:R") + (at 265.43 128.27 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "d9dff93d-6f51-5eaf-95b7-5925f952bbb2") + (property "Reference" "R_BOOT33" (at 267.97 127.27000000000001 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "4.7" (at 267.97 129.27 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 265.43 128.27 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 265.43 128.27 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 265.43 128.27 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "14d7d165-8503-5927-8cf2-aa28b8d32fd1")) + (pin "2" (uuid "788c9366-a88d-55c8-960d-f303e167c290")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_BOOT33") (unit 1)))) + ) + (label "RBOOT33" + (at 265.43 124.46 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "59979bef-8452-509a-b399-4ef57f9b3dcb") + ) + (label "BOOT33" + (at 265.43 132.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "e18cb68a-ee2f-52e0-b2f5-ec671b34d1b1") + ) + (symbol + (lib_id "Device:R") + (at 209.55 157.48 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "25033426-b2a0-5e0c-861d-e9409acb30b8") + (property "Reference" "R_RT33" (at 212.09 156.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "31.6k" (at 212.09 158.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 209.55 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 209.55 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 209.55 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "db59efc9-3b99-5bfe-974e-8dc1bd42e1ec")) + (pin "2" (uuid "d58c6c84-d4c0-5b49-b1b6-c722eef81cf9")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_RT33") (unit 1)))) + ) + (label "RT33" + (at 209.55 153.67 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "e2fa1248-243b-54e4-b2a4-386818606b1d") + ) + (symbol + (lib_id "power:GND") + (at 209.55 161.29 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "fa112b66-f1b6-5b4c-9d31-480485179b78") + (property "Reference" "#PWRR_RT332" (at 209.55 164.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 209.55 163.29 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 209.55 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 209.55 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "c3971eb5-571d-5683-b3fc-4ebf28196496")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_RT332") (unit 1)))) + ) + (symbol + (lib_id "Device:R") + (at 255.27 143.51 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "9e0eea14-ba6c-5cfb-9ea9-7650b846b83d") + (property "Reference" "R_PG33" (at 257.81 142.51 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100k" (at 257.81 144.51 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 255.27 143.51 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 255.27 143.51 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 255.27 143.51 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "5395006e-4802-552a-9d93-53d50096d67d")) + (pin "2" (uuid "1472a6f9-13ba-59a6-be76-8ed0f9254ccb")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_PG33") (unit 1)))) + ) + (label "PG33" + (at 255.27 139.7 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "905e1140-32e8-588c-be05-eb55365403d8") + ) + (global_label "+3V3_RF" + (shape input) + (at 255.27 147.32 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "fbaa8e2d-3401-5eab-a1c1-12834789cc58") + ) + (symbol + (lib_id "Device:R") + (at 284.48 149.86 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "81c1fc33-8638-5c80-8fbf-d460c5a2534f") + (property "Reference" "R_FBT33" (at 287.02000000000004 148.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "23.2k" (at 287.02000000000004 150.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 284.48 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 284.48 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 284.48 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "c19c4f8a-17cc-5c24-b5ab-4c8abcb58624")) + (pin "2" (uuid "4f37f83a-7b0c-5e4b-918e-ceea467758e1")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBT33") (unit 1)))) + ) + (global_label "+3V3_RF" + (shape input) + (at 284.48 146.05 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "49922e91-10b8-5934-8e1e-8ae317de6bdf") + ) + (label "FB33" + (at 284.48 153.67 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "2690fa51-b405-5805-9e78-595882d495e2") + ) + (symbol + (lib_id "Device:R") + (at 284.48 157.48 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "facdd0ad-98a8-5b62-b1b2-bd210f545c64") + (property "Reference" "R_FBB33" (at 287.02000000000004 156.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10.0k" (at 287.02000000000004 158.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 284.48 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 284.48 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 284.48 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "f5a0b4b6-ca26-5b3c-a2eb-0f45c583daf7")) + (pin "2" (uuid "dca1e500-abbf-524a-b39d-ab6aa76c0ed5")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBB33") (unit 1)))) + ) + (label "FB33" + (at 284.48 153.67 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "2690fa51-b405-5805-9e78-595882d495e2") + ) + (symbol + (lib_id "power:GND") + (at 284.48 161.29 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "3337c0e1-6d1e-5708-92c8-47e189ab33a4") + (property "Reference" "#PWRR_FBB332" (at 284.48 164.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 284.48 163.29 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 284.48 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 284.48 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "fa6d0b99-1164-5f25-b2e2-a1bc8ea8c802")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_FBB332") (unit 1)))) + ) + (symbol + (lib_id "Device:R") + (at 199.39 165.1 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "cee36846-ecf0-5a25-a7fa-72b2bc8f56aa") + (property "Reference" "R_EN33" (at 201.92999999999998 164.1 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100k" (at 201.92999999999998 166.1 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 199.39 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 199.39 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 199.39 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "e9c4b4ac-5995-5e11-902e-f1987fdfc4aa")) + (pin "2" (uuid "4558846e-7122-5731-8a0a-a44a9de05b40")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_EN33") (unit 1)))) + ) + (global_label "PCIE_PWR_EN" + (shape input) + (at 199.39 161.29 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "371b7031-905d-5cb2-bd74-bd2e1f1f30b8") + ) + (symbol + (lib_id "power:GND") + (at 199.39 168.91 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "0f7076d5-b8e3-524c-a06e-6ac5f581a9ef") + (property "Reference" "#PWRR_EN332" (at 199.39 171.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 199.39 170.91 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 199.39 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 199.39 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "c575a7fb-fcb7-547b-9e3d-189c9983a383")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_EN332") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 219.71 157.48 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "ce2e465b-af5e-5255-a721-25602212c869") + (property "Reference" "C_VCC33" (at 222.25 156.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "1u" (at 222.25 158.48 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 219.71 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 219.71 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 219.71 157.48 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "f4a6ae09-4190-50bc-b55c-33b56f33036f")) + (pin "2" (uuid "bbc3b878-0fcc-55e1-9a73-1e2b56821df9")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_VCC33") (unit 1)))) + ) + (label "VCC33" + (at 219.71 153.67 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "2284645d-68d3-56fa-b8ca-30ec4157b250") + ) + (symbol + (lib_id "power:GND") + (at 219.71 161.29 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "fe5daebf-adfc-51c1-9b50-d9597b33dc6c") + (property "Reference" "#PWRC_VCC332" (at 219.71 164.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 219.71 163.29 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 219.71 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 219.71 161.29 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "69e5f2a2-9914-5809-ae79-8ffbd24d130a")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_VCC332") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 214.63 144.78 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "94b3b847-d50c-502e-845f-383389f88654") + (property "Reference" "C_IN33a" (at 217.17 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10u/50V" (at 217.17 145.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 214.63 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 214.63 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 214.63 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "7c8f0e89-cf6a-5015-8305-f125efacf607")) + (pin "2" (uuid "eb0f42eb-d29f-5c56-b051-900bcf0e105f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33a") (unit 1)))) + ) + (label "VIN_PROT" + (at 214.63 140.97 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "ca4f6e2e-8d93-5cd5-b337-5d1cbf6e6a68") + ) + (symbol + (lib_id "power:GND") + (at 214.63 148.59 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "b74a41c4-abe7-5465-8dfd-4786c07f29c8") + (property "Reference" "#PWRC_IN33a2" (at 214.63 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 214.63 150.59 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 214.63 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 214.63 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "02dcb4d5-2ee7-5711-8b87-a08e74a6903e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33a2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 219.71 144.78 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "616110ea-0dde-54b6-a215-f54b853fc149") + (property "Reference" "C_IN33b" (at 222.25 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10u/50V" (at 222.25 145.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 219.71 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 219.71 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 219.71 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "d50ea177-80fa-5e4b-824f-d8e5cb8e447d")) + (pin "2" (uuid "866526b8-2ac6-5581-9547-b8c127e41db2")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33b") (unit 1)))) + ) + (label "VIN_PROT" + (at 219.71 140.97 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "72c8abf2-edf2-5006-a9ad-809645574f62") + ) + (symbol + (lib_id "power:GND") + (at 219.71 148.59 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "b643f755-ad2f-5ae8-a86a-f44a4863f881") + (property "Reference" "#PWRC_IN33b2" (at 219.71 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 219.71 150.59 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 219.71 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 219.71 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "14703df6-1676-5d8a-90fa-e985a19b1086")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33b2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 240.03 165.1 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "fdc94bd4-09de-5bea-8175-a52557ba0f5b") + (property "Reference" "C_OUT33a" (at 242.57 164.1 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "47u/16V" (at 242.57 166.1 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 240.03 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 240.03 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 240.03 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "84c5524c-0ff9-5213-a7c4-74c7d8feef43")) + (pin "2" (uuid "8faa8290-45a3-5c91-befe-20653856b15f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33a") (unit 1)))) + ) + (global_label "+3V3_RF" + (shape input) + (at 240.03 161.29 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f825efc6-a599-5293-8ad7-bb35d2f7ff37") + ) + (symbol + (lib_id "power:GND") + (at 240.03 168.91 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "ec20a721-8c6a-571e-9f3e-d1ca8b41f544") + (property "Reference" "#PWRC_OUT33a2" (at 240.03 171.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 240.03 170.91 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 240.03 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 240.03 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "3bad6947-dcca-5592-9aec-ffcc8a7fddeb")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33a2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 245.11 165.1 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "445475c3-e364-5c31-ad95-90047644c5b9") + (property "Reference" "C_OUT33b" (at 247.65 164.1 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "47u/16V" (at 247.65 166.1 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 245.11 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 245.11 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 245.11 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "7aa57847-73b5-5c05-b767-bb62ce89d618")) + (pin "2" (uuid "69d9a762-5886-5ab1-b7ed-06843f7d57e4")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33b") (unit 1)))) + ) + (global_label "+3V3_RF" + (shape input) + (at 245.11 161.29 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "9433b865-be13-549a-bfd7-1a6d376c760f") + ) + (symbol + (lib_id "power:GND") + (at 245.11 168.91 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "af36ee75-239f-5915-a82d-a734af60520e") + (property "Reference" "#PWRC_OUT33b2" (at 245.11 171.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 245.11 170.91 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 245.11 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 245.11 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "a80d941d-9847-5500-bc99-f819ef1b4111")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33b2") (unit 1)))) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 270.51 142.24 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "1303478c-fb2d-5112-9517-fee0895b93f1") + (property "Reference" "#FLGP33R" (at 270.51 139.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "PWR_FLAG" (at 270.51 140.24 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 270.51 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 270.51 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "0e8e4211-812c-5f32-b112-8a33a94d41da")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP33R") (unit 1)))) + ) (sheet_instances (path "/" (page "5") diff --git a/tools/build_ekey.py b/tools/build_ekey.py index 4f0d08c..7989786 100644 --- a/tools/build_ekey.py +++ b/tools/build_ekey.py @@ -211,19 +211,13 @@ place_rc("Device:R", "R_E1", "10k", "Resistor_SMD:R_0402_1005Metric", g(215.0), place_rc("Device:R", "R_E2", "10k", "Resistor_SMD:R_0402_1005Metric", g(225.0), g(80.0), loc_label, "WIFI_DISABLE2#", "+3V3_RF") # decoupling caps: pin1 -> +3V3_RF ; pin2 -> GND -c_e1_pin1 = None for i, (ref, val) in enumerate([("C_E1", "10u"), ("C_E2", "100n"), ("C_E3", "100n")]): cx = g(215.0 + i * 7.62); cy = g(110.0) body.append(passive("Device:C", ref, val, "Capacitor_SMD:C_0402_1005Metric", cx, cy, ref)) - p1 = (cx, round(cy - 3.81, 2)) - body.append(glob_label("+3V3_RF", p1[0], p1[1], 90)) # pin1 + body.append(glob_label("+3V3_RF", cx, round(cy - 3.81, 2), 90)) # pin1 body.append(gnd_sym(cx, round(cy + 3.81, 2), ref + "g")) # pin2 -> GND symbol - if ref == "C_E1": c_e1_pin1 = p1 -# one PWR_FLAG to drive +3V3_RF until the power-sheet buck exists. -# Co-locate its pin directly on an existing +3V3_RF node (C_E1 pin1) so it binds. -# REMOVE this flag once the power sheet's buck drives +3V3_RF (else dual-driver ERC). -body.append(pwr_flag(c_e1_pin1[0], c_e1_pin1[1], "33RF")) +# +3V3_RF is driven by the Power sheet's U_BUCK33R (PWR_FLAG lives there). # ---- file scaffold ----------------------------------------------------------------- libsyms = "\n".join([DEV_R, DEV_C, PWR_GND, pflag, sock]) diff --git a/tools/build_power.py b/tools/build_power.py index 7d89b1b..41fa790 100644 --- a/tools/build_power.py +++ b/tools/build_power.py @@ -101,7 +101,7 @@ register_lm61460() # +5v pre-exists in the carrier as a HIERARCHICAL net (local + hierarchical labels on the CM5 # sheets) -> expose it hierarchically here (a global label collides: same_local_global_label). # +3V3_RF/+3V3_AUX are new nets introduced by this port -> global is fine. -GLOBAL_NETS = {"+3V3_RF", "+3V3_AUX"} +GLOBAL_NETS = {"+3V3_RF", "+3V3_AUX", "PCIE_PWR_EN"} HIER_NETS = {"+5v"} # from KiCad libs (renamed to full lib_id) add_from("power:PWR_FLAG", open(f"{KSS}/power.kicad_sym").read(), "PWR_FLAG") @@ -207,6 +207,32 @@ place("Device:C", "C_OUT5b", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 180, # +5v is now sourced by this buck -> PWR_FLAG co-located on L5 pin2 (+5v) p5x, p5y = pin_abs(l5, "Device:L", "2"); emit_flag(p5x, p5y, "P5V") +# ---- STAGE 3: U_BUCK33R 15V -> +3V3_RF 4A (LM61460-Q1, sync) -------------------- +# FB divider: VREF=1.0V -> Rfbt/Rfbb=2.32 -> 23.2k/10.0k = 3.32V. +# Same support set as stage 2 (RT 31.6k ~420kHz, L 4.7uH/7A: ripple ~1.3A = 33% of 4A). +# BIAS -> +3V3_RF (datasheet: BIAS>=3.1V uses output LDO path; falls back to VIN below). +# EN <- PCIE_PWR_EN (CM5 Module1 pin 106, global net) + 100k pull-down (= reference R14) +# so the Wi-Fi rail stays OFF until the CM5 asserts it. +place("CM5IO:LM61460-Q1", "U_BUCK33R", "LM61460-Q1", "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias", + 230, 150, {'8': 'VIN_PROT', '12': 'VIN_PROT', '7': 'PCIE_PWR_EN', '1': '+3V3_RF', '2': 'VCC33', + '6': 'RT33', '5': 'PG33', '4': 'FB33', '10': 'SW33', '14': 'BOOT33', '13': 'RBOOT33', + '9': GND, '11': GND, '3': GND, '15': GND}) +l33 = place("Device:L", "L33", "4.7uH/7A", "Inductor_SMD:L_Bourns_SRP1245A", 270, 138, {'1': 'SW33', '2': '+3V3_RF'}) +place("Device:C", "C_BOOT33", "100n", "Capacitor_SMD:C_0402_1005Metric", 260, 132, {'1': 'SW33', '2': 'BOOT33'}) +place("Device:R", "R_BOOT33", "4.7", "Resistor_SMD:R_0402_1005Metric", 265, 128, {'1': 'RBOOT33', '2': 'BOOT33'}) +place("Device:R", "R_RT33", "31.6k", "Resistor_SMD:R_0402_1005Metric", 210, 158, {'1': 'RT33', '2': GND}) +place("Device:R", "R_PG33", "100k", "Resistor_SMD:R_0402_1005Metric", 255, 143, {'1': 'PG33', '2': '+3V3_RF'}) +place("Device:R", "R_FBT33", "23.2k", "Resistor_SMD:R_0402_1005Metric", 285, 150, {'1': '+3V3_RF', '2': 'FB33'}) +place("Device:R", "R_FBB33", "10.0k", "Resistor_SMD:R_0402_1005Metric", 285, 158, {'1': 'FB33', '2': GND}) +place("Device:R", "R_EN33", "100k", "Resistor_SMD:R_0402_1005Metric", 200, 165, {'1': 'PCIE_PWR_EN', '2': GND}) +place("Device:C", "C_VCC33", "1u", "Capacitor_SMD:C_0402_1005Metric", 220, 158, {'1': 'VCC33', '2': GND}) +place("Device:C", "C_IN33a", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 215, 145, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_IN33b", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 220, 145, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_OUT33a", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 240, 165, {'1': '+3V3_RF', '2': GND}) +place("Device:C", "C_OUT33b", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 245, 165, {'1': '+3V3_RF', '2': GND}) +# +3V3_RF is now sourced by this buck -> PWR_FLAG on L33 pin2 (replaces the E-key temp flag) +p33x, p33y = pin_abs(l33, "Device:L", "2"); emit_flag(p33x, p33y, "P33R") + # ---- file scaffold ---------------------------------------------------------------- libsyms = "\n".join(blk for blk, _ in LIBS.values()) sheet = ('(kicad_sch\n\t(version 20231120)\n\t(generator "eeschema")\n\t(generator_version "8.0")\n' From 13496b302ccb5612ad3873ca96b7e407fa742408 Mon Sep 17 00:00:00 2001 From: noise Date: Thu, 2 Jul 2026 07:03:31 -0400 Subject: [PATCH 08/16] Power stage 4: TPS54202 15V->+3V3_AUX 1A quiet-rail buck (power sheet complete) - TPS54202 SOT-23-6 sync, fixed 500kHz; custom symbol CM5IO:TPS54202 (KiCad lib symbol extends TPS54302 with no own pins, cannot embed standalone) - Abs-max gate: VIN 30V vs SMBJ18A clamp <=29.2V at rated surge (0.8V margin, transient-only) - documented, passed - FB 100k/22.1k + 56pF Cff per TI 3.3V table -> 3.29V (SPICE: vfb 0.597V, inrush settles 3.315V); L 10uH, Cout 2x22uF/16V - EN abs-max 7V -> UVLO divider 866k/110k from VIN_PROT (start 10.13V / stop 8.61V, EN ~1.9V at 15V); no direct VIN tie - Renamed input cap C_IN33A -> C_IN33Aa: SPICE names are case-insensitive and collided with stage-3 C_IN33a, silently skipping the VIN_PROT decoupling sim - Verify: ERC 133->133 zero new; analyzer +65/-0 zero regressions; SPICE 23 pass / 2 benign warn / 0 fail / 0 skip Co-Authored-By: Claude Fable 5 --- PORT_STATUS.md | 27 +-- carrier/CM5IO.kicad_sym | 39 ++++ carrier/Power.kicad_sch | 437 ++++++++++++++++++++++++++++++++++++++++ tools/build_power.py | 53 +++++ 4 files changed, 543 insertions(+), 13 deletions(-) diff --git a/PORT_STATUS.md b/PORT_STATUS.md index 78efabf..eca8cfb 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -7,22 +7,23 @@ ## ▶ RESUME HERE (session handoff, 2026-07-01) **State:** branch `port/strip-phase`. Sheets in `carrier/`: root `CM5IO`, `CM5_GPIO`, -`CM5_HighSpeed` (reference, stripped), `M2_Ekey` (E-key, done), `Power` (stages 1–3 done). -Baseline anchor: `analysis/baseline/carrier_stripped.json`. +`CM5_HighSpeed` (reference, stripped), `M2_Ekey` (E-key, done), `Power` (**stages 1–4 done — +power sheet complete**). Baseline anchor: `analysis/baseline/carrier_stripped.json`. **Done:** strip phase (microSD/HDMI/MIPI/PCIe-M2); M.2 E-key sheet (PCIe ×1 to CM5); Power stage 1 (LM74700 ideal-diode input protection → `VIN_PROT`); Power stage 2 (LM61460-Q1 -15→`+5v` 5 A sync buck, SPICE-verified 5.02 V); Power stage 3 (LM61460-Q1 15→`+3V3_RF` 4 A, -SPICE-verified 3.32 V; EN ← CM5 `PCIE_PWR_EN`/106 + 100k pull-down like reference R14; E-key -temp PWR_FLAG removed — buck is the sole `+3V3_RF` driver). Current whole-design **ERC = 133** -(all pre-existing types; a good edit adds **zero new**). +15→`+5v` 5 A, SPICE 5.02 V); Power stage 3 (LM61460-Q1 15→`+3V3_RF` 4 A, SPICE 3.32 V; EN ← +CM5 `PCIE_PWR_EN`/106 + 100k pull-down); Power stage 4 (TPS54202 15→`+3V3_AUX` ~1 A, SPICE +3.315 V; UVLO divider start 10.1 V / stop 8.6 V). Current whole-design **ERC = 133** (all +pre-existing types; a good edit adds **zero new**). -**NEXT ACTION → Power Stage 4: `U_BUCK33A` 15→`+3V3_AUX` ~1 A.** Candidate part TPS54202 -(28 V sync) — datasheet-verify first (KiCad has `Regulator_Switching:TPS54202DDC`). One check -that MUST pass: the SMBJ18A clamp (~29 V at rated Ipp) vs the part's VIN abs-max — if the -datasheet says <30 V abs-max, pick a 36 V-class sync part instead (LMR51430/TPS54360-class) -or justify why the surge case is acceptable. FB divider per that part's VREF; SPICE-verify. -`+3V3_AUX` is a NEW net → **global** label. Then the GPS + PPS sheet, then power-budget review. +**NEXT ACTION → GPS + PPS distribution sheet** (last new block, see step 5 below): GPS +connector (PPS + UART + 3V3 + GND, powered from `+3V3_AUX`); PPS → TVS → Schmitt buffer +(LVC1G17 @ 3.3 V) → fan-out: CM5 `Ethernet_SYNC_OUT` (J2 pin-6 net, no translator) + 2 header +taps. Reuse the build_*.py generator pattern (new `tools/build_gps.py` or extend build_power). +UART: decide which CM5 UART pins to use (check `CM5_GPIO` — reserve/label; datasheet is the +authority). After that: whole-power-tree budget review, then hygiene pass (title blocks, refdes +numbering — note generated refs like `J_E`/`J_PWR` trip kicad-cli's "annotation errors" warning). **How to build/verify (every change):** - Sheets are generated wholesale — edit `tools/build_ekey.py` / `tools/build_power.py`, then @@ -133,7 +134,7 @@ Notes that bit us (don't re-learn the hard way): - **Stage 1 — input protection ✅ DONE.** J_PWR(15V) → D_REV `LM74700-Q1` ideal-diode + Q_REV N-FET (reverse-polarity/-current) → `VIN_PROT`; `SMBJ18A` TVS + 100µF/25V ∥ 10µF/50V bulk; C_VCAP charge-pump cap. Netlist-verified topology; ERC 133→133 (zero new); analyzer 0 regressions. **Confirm vs LM74700-Q1 datasheet:** C_VCAP value, EN-to-+15V_IN, FET pick (Vds≥30V, SOA/inrush) + optional gate R. - **Stage 2 — U_BUCK5 15→`+5v` 5A ✅ DONE.** `LM61460-Q1` (6A, 42V absmax sync; **custom symbol built from the datasheet** → `carrier/CM5IO.kicad_sym` as `CM5IO:LM61460-Q1`, fp `Package_SO:Texas_HTSSOP-14-1EP…ThermalVias`). VREF=1.0V → FB divider R_FBT5 40.2k / R_FBB5 10.0k = **5.02V (SPICE-confirmed vfb=1.0V)**. L5 4.7µH, Cout 2×47µF/16V, Cin 2×10µF/50V, Cboot 100n+Rboot 4.7Ω, RT 31.6k(~400kHz), BIAS→+5v, EN→VIN_PROT, PGOOD 100k→+5v. **`+5v` kept HIERARCHICAL** (pre-existing carrier net; global would collide `same_local_global_label`) — Power sheet exposes a `+5v` sheet pin, tied into the root `+5v` net; netlist-verified it drives Module1 + GPIO + USB. ERC 133→133 (zero new); analyzer +32 added **0 regressions**; SPICE 12/13 pass, 1 benign warn (L5/Cboot mis-detected as LC filter). **Confirm vs datasheet:** RT freq, L sat ≥7A, EP=pad15, optional EN UVLO divider. - **Stage 3 — U_BUCK33R 15→`+3V3_RF` 4A ✅ DONE.** Second `LM61460-Q1` (shared BOM with stage 2: L 4.7µH/7A ripple ~1.3A=33%, Cin 2×10µ/50V, Cout 2×47µ/16V, RT 31.6k ~420kHz, Cboot 100n+Rboot 4.7). FB divider R_FBT33 23.2k / R_FBB33 10.0k = **3.32V (SPICE: vfb 0.994V, inrush settles 3.32V)**. BIAS→`+3V3_RF` (datasheet: valid ≥3.1V, auto-falls back to VIN below). **EN ← CM5 `PCIE_PWR_EN`** (Module1 pin 106: NC swapped for a global label on `CM5_HighSpeed`) + **R_EN33 100k pull-down** (mirrors reference R14 — netlist-verified `Module1.106 + U_BUCK33R.7 + R_EN33.1`) so the Wi-Fi rail is OFF until the CM5 asserts it. **E-key temp `#FLG33RF` PWR_FLAG removed** (build_ekey); the buck's PWR_FLAG on L33.2 is now the sole `+3V3_RF` driver — netlist shows buck + all 4 J_E power pins + pull-ups + decoupling on one net. Verify: ERC 133→133 zero new; analyzer +49 added **0 regressions**; SPICE 17 pass / 2 benign warn (the L/C_BOOT "LC filter" mis-detect, once per buck) / 0 fail. (Note: `kicad-cli` netlist export prints a pre-existing "annotation errors" warning — un-numbered generated refdeses like `J_E`/`J_PWR`; present at fd627f5 too, cosmetic.) - - **Stage 4** U_BUCK33A 15→3.3V ~1A → `+3V3_AUX`. SPICE-validate the feedback divider (see NEXT ACTION above for the part-selection gate). + - **Stage 4 — U_BUCK33A 15→`+3V3_AUX` ~1A ✅ DONE (power sheet complete).** `TPS54202` (SOT-23-6, sync, fixed 500kHz, VFB=0.596V). **Abs-max gate PASSED but thin:** VIN abs-max **30V** vs SMBJ18A clamp ≤29.2V at full rated 600W surge → 0.8V transient margin (operating max 28V is not the surge number). Custom symbol `CM5IO:TPS54202` (the KiCad lib symbol `extends TPS54302` — no own pins, can't embed standalone) + bare copy in `carrier/CM5IO.kicad_sym`. FB per TI's 3.3V table row: **100k/22.1k + Cff 56pF → 3.29V (SPICE: vfb 0.597V, inrush settles 3.315V)**. L 10µH/2.5A (ΔI~0.52A), Cout 2×22µF/16V, Cboot 100n, Cin 10µF/50V+100n. **EN abs-max is only 7V → NO direct VIN tie** (unlike LM61460): UVLO divider **866k/110k** (solved from Ip=0.7µA/Ih=1.55µA, VEN 1.21/1.19V) → **start 10.13V / stop 8.61V**, EN ~1.9V at 15V in (~3.5V at 29V clamp — safe). FB+EN pins typed `passive` (divider-only nets). Verify: ERC 133→133 zero new; analyzer +65/−0 zero regressions (warn/error set identical to stage 3); SPICE 23 pass / 2 benign warn / 0 fail / 0 skip. **New tooling gap found:** `simulate_subcircuits.py` lowercases refdeses into SPICE names — `C_IN33A` vs stage-3 `C_IN33a` collided ("device already exists") and silently SKIPPED the whole VIN_PROT decoupling group → renamed to `C_IN33Aa`. Rule: **never create refdeses differing only by case.** 5. **GPS + PPS distribution**: GPS connector (PPS+UART+3V3+GND); PPS → TVS → Schmitt (LVC1G17) → fan-out: CM5 `Ethernet_SYNC_OUT` (J2 pin-6 net, 3.3V, no translator) + 2 header taps. SPICE/timing check. diff --git a/carrier/CM5IO.kicad_sym b/carrier/CM5IO.kicad_sym index ced9c27..877d44f 100644 --- a/carrier/CM5IO.kicad_sym +++ b/carrier/CM5IO.kicad_sym @@ -10292,4 +10292,43 @@ ) ) ) + (symbol "TPS54202" + (pin_names (offset 1.016)) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" (at 0 12.7 0) (effects (font (size 1.27 1.27)))) + (property "Value" "TPS54202" (at 0 -16.51 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/tps54202.pdf" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes))) + (symbol "TPS54202_0_1" + (rectangle (start -10.16 10.16) (end 10.16 -10.16) (stroke (width 0.254) (type default)) (fill (type background))) + ) + (symbol "TPS54202_1_1" + (pin power_in line (at -13.97 5.08 0) (length 3.81) + (name "VIN" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -13.97 0 0) (length 3.81) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 13.97 5.08 180) (length 3.81) + (name "BOOT" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 3.81) + (name "SW" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 13.97 -2.54 180) (length 3.81) + (name "FB" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -13.97 90) (length 3.81) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) ) diff --git a/carrier/Power.kicad_sch b/carrier/Power.kicad_sch index d083f93..f29c18e 100644 --- a/carrier/Power.kicad_sch +++ b/carrier/Power.kicad_sch @@ -774,6 +774,45 @@ ) ) ) + (symbol "CM5IO:TPS54202" + (pin_names (offset 1.016)) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" (at 0 12.7 0) (effects (font (size 1.27 1.27)))) + (property "Value" "TPS54202" (at 0 -16.51 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/tps54202.pdf" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes))) + (symbol "TPS54202_0_1" + (rectangle (start -10.16 10.16) (end 10.16 -10.16) (stroke (width 0.254) (type default)) (fill (type background))) + ) + (symbol "TPS54202_1_1" + (pin power_in line (at -13.97 5.08 0) (length 3.81) + (name "VIN" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -13.97 0 0) (length 3.81) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 13.97 5.08 180) (length 3.81) + (name "BOOT" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 13.97 2.54 180) (length 3.81) + (name "SW" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 13.97 -2.54 180) (length 3.81) + (name "FB" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -13.97 90) (length 3.81) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) (symbol "power:PWR_FLAG" (power global) (pin_numbers @@ -3103,6 +3142,404 @@ (pin "1" (uuid "0e8e4211-812c-5f32-b112-8a33a94d41da")) (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP33R") (unit 1)))) ) + (symbol + (lib_id "CM5IO:TPS54202") + (at 229.87 95.25 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "bcb1bcf7-ac31-569a-a674-9f94c9703dac") + (property "Reference" "U_BUCK33A" (at 232.41 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "TPS54202" (at 232.41 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 229.87 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 229.87 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 229.87 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "48b67060-c84f-512b-8bc0-14cfad59f4c7")) + (pin "2" (uuid "429d637b-8f51-5c8f-8ece-e592cede69e9")) + (pin "3" (uuid "6ff5cf48-ac5c-5483-9247-8a2927de9f12")) + (pin "4" (uuid "7a1e657a-8fb4-5ff3-a034-96f317805e7b")) + (pin "5" (uuid "69e77574-0386-5150-85ec-b01af04dca2c")) + (pin "6" (uuid "ed54c0cd-d592-5fec-b4a7-bf98d42de04f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "U_BUCK33A") (unit 1)))) + ) + (label "VIN_PROT" + (at 215.9 90.17 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "106a8439-e939-5f4c-b4da-3f45fcf59653") + ) + (label "EN33A" + (at 215.9 95.25 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "e2b22c33-cf3c-5a45-bbe0-20fd5aa71f87") + ) + (label "BOOT33A" + (at 243.84 90.17 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "c2778836-623f-5272-822f-fc533622f9d4") + ) + (label "SW33A" + (at 243.84 92.71 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "da41e65b-9775-5280-a4fc-56c11fa196f9") + ) + (label "FB33A" + (at 243.84 97.79 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "89ecd1c1-4867-59af-9771-60398b4ad22a") + ) + (symbol + (lib_id "power:GND") + (at 229.87 109.22 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "06f6e904-1d8a-5f79-9ddf-b429d3801b9a") + (property "Reference" "#PWRU_BUCK33A1" (at 229.87 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 229.87 111.22 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 229.87 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 229.87 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "5008652d-fac9-53a4-a3ed-22eb21255794")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33A1") (unit 1)))) + ) + (symbol + (lib_id "Device:L") + (at 260.35 85.09 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f145f0a8-96ff-5d91-883b-79805273a99f") + (property "Reference" "L33A" (at 262.89000000000004 84.09 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10uH/2.5A" (at 262.89000000000004 86.09 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Inductor_SMD:L_1210_3225Metric" (at 260.35 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 260.35 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 260.35 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "c2275773-6b08-5868-bc6e-856ff131c4ec")) + (pin "2" (uuid "463c9eeb-cb05-56c6-8b5d-a60f0f5bf1f1")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "L33A") (unit 1)))) + ) + (label "SW33A" + (at 260.35 81.28 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f46d0320-58ab-5449-b457-784cab3c4844") + ) + (global_label "+3V3_AUX" + (shape input) + (at 260.35 88.9 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "1ff25529-a837-5bc5-9040-9491a9a78ec6") + ) + (symbol + (lib_id "Device:C") + (at 250.19 77.47 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "b775dbe7-0211-5d68-9b5e-675d69679f9a") + (property "Reference" "C_BOOT33A" (at 252.73 76.47 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100n" (at 252.73 78.47 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 250.19 77.47 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 250.19 77.47 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 250.19 77.47 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "0cf25043-1b43-5565-845b-bc9feb2831fe")) + (pin "2" (uuid "a0d47fd1-35dc-5342-b9cb-ddbed0659264")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_BOOT33A") (unit 1)))) + ) + (label "SW33A" + (at 250.19 73.66 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "d4937d6f-9fe8-5bfa-8cbf-12979786bd7e") + ) + (label "BOOT33A" + (at 250.19 81.28 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f0108a4a-7cad-5f3a-b73b-8299e132f327") + ) + (symbol + (lib_id "Device:R") + (at 204.47 85.09 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "653bb11e-6db2-52cb-bc14-22a3d4b19724") + (property "Reference" "R_UVT33A" (at 207.01 84.09 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "866k" (at 207.01 86.09 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 204.47 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 204.47 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 204.47 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "057d8e09-c60c-5fde-8bfb-ac12fe39d80f")) + (pin "2" (uuid "1c5f8e9b-8f01-50b1-b224-e34a8ec7681d")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_UVT33A") (unit 1)))) + ) + (label "VIN_PROT" + (at 204.47 81.28 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "b42de72a-aa08-59ff-90ef-bd3135e6d56c") + ) + (label "EN33A" + (at 204.47 88.9 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "f18d2e7a-81c7-5d0e-b64f-5ff4c8185abd") + ) + (symbol + (lib_id "Device:R") + (at 204.47 95.25 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f0af6e3e-e764-5d27-9d5f-eb46bc52f550") + (property "Reference" "R_UVB33A" (at 207.01 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "110k" (at 207.01 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 204.47 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 204.47 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 204.47 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "a737be2a-0156-5b3a-b011-38e04802e6fe")) + (pin "2" (uuid "568a2a77-880d-5429-9968-2049a51a61fc")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_UVB33A") (unit 1)))) + ) + (label "EN33A" + (at 204.47 91.44 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "13c055a7-4fb3-5d8b-8813-51ac86c4b0ba") + ) + (symbol + (lib_id "power:GND") + (at 204.47 99.06 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f3ffe656-ee72-51a3-b52d-4649627d30a6") + (property "Reference" "#PWRR_UVB33A2" (at 204.47 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 204.47 101.06 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 204.47 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 204.47 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "d3500078-563d-5e81-ae3c-f121c1712c29")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_UVB33A2") (unit 1)))) + ) + (symbol + (lib_id "Device:R") + (at 279.4 95.25 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "d226f3ff-0bda-51a1-8304-81f3a113bcf4") + (property "Reference" "R_FBT33A" (at 281.94 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100k" (at 281.94 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 279.4 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 279.4 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 279.4 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "dc27bb37-64d5-568e-9495-e78f26f46302")) + (pin "2" (uuid "0fab2b92-3738-5a17-825e-5c551d23c289")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBT33A") (unit 1)))) + ) + (global_label "+3V3_AUX" + (shape input) + (at 279.4 91.44 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "ca638867-65fb-529b-aa0e-9ef0aaf7e883") + ) + (label "FB33A" + (at 279.4 99.06 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "4e6da2af-7dd8-57d0-bb20-2e167c03e2bc") + ) + (symbol + (lib_id "Device:C") + (at 288.29 95.25 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "d37665e2-9e2e-5713-b75a-1b3f241ac9f8") + (property "Reference" "C_FF33A" (at 290.83000000000004 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "56p" (at 290.83000000000004 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 288.29 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 288.29 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 288.29 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "fe9a059f-792a-5538-bb79-c55fbbf287d2")) + (pin "2" (uuid "c0ce8bbd-6036-54ac-9d0a-86d0b0394d1e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_FF33A") (unit 1)))) + ) + (global_label "+3V3_AUX" + (shape input) + (at 288.29 91.44 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "531bfd8d-a987-5726-ba7a-853952078d49") + ) + (label "FB33A" + (at 288.29 99.06 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "243a3d12-3e39-55fc-8793-25704efd4e8f") + ) + (symbol + (lib_id "Device:R") + (at 279.4 105.41 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "30655460-5ace-56a7-98f3-a0402bce8c0e") + (property "Reference" "R_FBB33A" (at 281.94 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "22.1k" (at 281.94 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 279.4 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 279.4 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 279.4 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "87e0af16-a234-5736-ba4a-177539ce422a")) + (pin "2" (uuid "a3ce5bad-e658-518d-baf3-3f3ee902dfb7")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBB33A") (unit 1)))) + ) + (label "FB33A" + (at 279.4 101.6 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "5af1a4d8-d777-5cad-a754-81b913cf5774") + ) + (symbol + (lib_id "power:GND") + (at 279.4 109.22 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "7ccfc617-9b0b-57c5-a6e1-1ea51a95b0af") + (property "Reference" "#PWRR_FBB33A2" (at 279.4 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 279.4 111.22 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 279.4 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 279.4 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "8752f2e1-7d1e-5561-9928-39069c815725")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_FBB33A2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 214.63 105.41 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "a5d2300d-429d-59a4-824d-a80eea87eb87") + (property "Reference" "C_IN33Aa" (at 217.17 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10u/50V" (at 217.17 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 214.63 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 214.63 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 214.63 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "ba18bf80-f23f-530a-9b35-14d5be1afde0")) + (pin "2" (uuid "bf6948d6-6798-50c3-a335-37b32c17eb3e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33Aa") (unit 1)))) + ) + (label "VIN_PROT" + (at 214.63 101.6 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "d599db3b-6a76-54bb-bb7c-fc4259dfa5b8") + ) + (symbol + (lib_id "power:GND") + (at 214.63 109.22 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "79d7b6a7-03ee-5ce2-8242-3a404d6a504f") + (property "Reference" "#PWRC_IN33Aa2" (at 214.63 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 214.63 111.22 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 214.63 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 214.63 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "adad279f-adb9-542c-a0f9-78ad1a954249")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33Aa2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 219.71 105.41 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "4f75026e-b0a4-5b98-8717-697ba30ed6b4") + (property "Reference" "C_INHF33A" (at 222.25 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100n" (at 222.25 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 219.71 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 219.71 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 219.71 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "eee9b3ec-4a3b-552d-83c6-a69a13396f8a")) + (pin "2" (uuid "d5ecad15-2ed8-567d-9a53-2cb3e3684b81")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_INHF33A") (unit 1)))) + ) + (label "VIN_PROT" + (at 219.71 101.6 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "9a36164f-a12f-5865-b9d7-c990118f23c7") + ) + (symbol + (lib_id "power:GND") + (at 219.71 109.22 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "bb7dea24-fa6b-5327-bcbb-e7721a193c47") + (property "Reference" "#PWRC_INHF33A2" (at 219.71 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 219.71 111.22 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 219.71 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 219.71 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "0f8a141f-2c65-5eaf-8581-c76ab630fc05")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_INHF33A2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 265.43 105.41 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "61dfa960-f395-5e8b-ae5e-9d2c280a2cdb") + (property "Reference" "C_OUT33Aa" (at 267.97 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "22u/16V" (at 267.97 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 265.43 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 265.43 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 265.43 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "cc2ef03f-b586-58e5-96f8-c349200d1d14")) + (pin "2" (uuid "8e32f7a8-5e8e-5afd-b5c9-84c7355729e5")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33Aa") (unit 1)))) + ) + (global_label "+3V3_AUX" + (shape input) + (at 265.43 101.6 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "9fb84ef9-4830-5128-b9fa-3052bd7774b6") + ) + (symbol + (lib_id "power:GND") + (at 265.43 109.22 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "66ef2035-91f7-5153-b1e7-0ec188ad13ee") + (property "Reference" "#PWRC_OUT33Aa2" (at 265.43 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 265.43 111.22 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 265.43 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 265.43 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "dca83d7d-4de6-5ce9-9722-1d9c90275163")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33Aa2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 270.51 105.41 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "9c2a60f9-60b4-5330-9ffd-584ba7f0984c") + (property "Reference" "C_OUT33Ab" (at 273.05 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "22u/16V" (at 273.05 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 270.51 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 270.51 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 270.51 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "d06dc6ef-ce25-5bae-9cbb-bdfb92346bc0")) + (pin "2" (uuid "7e96e8b3-399e-5df6-8b21-48a4d49919e2")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33Ab") (unit 1)))) + ) + (global_label "+3V3_AUX" + (shape input) + (at 270.51 101.6 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "0b1a1624-fe39-57f2-bcbd-162834df2890") + ) + (symbol + (lib_id "power:GND") + (at 270.51 109.22 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "1d95991b-c59e-55d2-9f60-d5e94f765c6d") + (property "Reference" "#PWRC_OUT33Ab2" (at 270.51 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 270.51 111.22 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 270.51 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 270.51 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "3f30ab32-afb1-5085-964a-aed0fc3c9f3f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33Ab2") (unit 1)))) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 260.35 88.9 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "5d652b25-0204-5896-8eaa-7e5679be844a") + (property "Reference" "#FLGP33A" (at 260.35 85.9 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "PWR_FLAG" (at 260.35 86.9 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 260.35 88.9 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 260.35 88.9 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "cc889646-749d-5056-b5d8-bfe173b0f46e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP33A") (unit 1)))) + ) (sheet_instances (path "/" (page "5") diff --git a/tools/build_power.py b/tools/build_power.py index 41fa790..47b8fa8 100644 --- a/tools/build_power.py +++ b/tools/build_power.py @@ -98,6 +98,32 @@ def register_lm61460(): f'\t\t(symbol "LM61460-Q1_1_1"\n{pt}\t\t)\n\t)') LIBS["CM5IO:LM61460-Q1"] = (blk, lib_pins(blk)) register_lm61460() + +def register_tps54202(): + """Hand-authored lib_symbol for TPS54202 (SOT-23-6), from the datasheet pin table + (SLVSD26C): GND=1, SW=2, VIN=3, FB=4, EN=5, BOOT=6. VFB=0.596V, VIN abs-max 30V, + fixed 500kHz. The KiCad lib symbol extends TPS54302 (no own pins) so it can't be + embedded standalone. FB/EN typed passive: both are high-Z sense pins on + resistor-divider-only nets (else ERC/analyzer flag no_driver).""" + P = [('3','VIN','power_in',-13.97,5.08,0), ('5','EN','passive',-13.97,0,0), + ('6','BOOT','passive',13.97,5.08,180), ('2','SW','output',13.97,2.54,180), + ('4','FB','passive',13.97,-2.54,180), ('1','GND','power_in',0,-13.97,90)] + pt = "" + for num, name, ty, lx, ly, ang in P: + pt += (f'\t\t\t(pin {ty} line (at {lx} {ly} {ang}) (length 3.81)\n' + f'\t\t\t\t(name "{name}" (effects (font (size 1.27 1.27))))\n' + f'\t\t\t\t(number "{num}" (effects (font (size 1.27 1.27))))\n\t\t\t)\n') + blk = ('\t(symbol "CM5IO:TPS54202"\n\t\t(pin_names (offset 1.016))\n' + '\t\t(exclude_from_sim no)\n\t\t(in_bom yes)\n\t\t(on_board yes)\n' + '\t\t(property "Reference" "U" (at 0 12.7 0) (effects (font (size 1.27 1.27))))\n' + '\t\t(property "Value" "TPS54202" (at 0 -16.51 0) (effects (font (size 1.27 1.27))))\n' + '\t\t(property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + '\t\t(property "Datasheet" "https://www.ti.com/lit/ds/symlink/tps54202.pdf" (at 0 0 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + '\t\t(symbol "TPS54202_0_1"\n' + '\t\t\t(rectangle (start -10.16 10.16) (end 10.16 -10.16) (stroke (width 0.254) (type default)) (fill (type background)))\n\t\t)\n' + f'\t\t(symbol "TPS54202_1_1"\n{pt}\t\t)\n\t)') + LIBS["CM5IO:TPS54202"] = (blk, lib_pins(blk)) +register_tps54202() # +5v pre-exists in the carrier as a HIERARCHICAL net (local + hierarchical labels on the CM5 # sheets) -> expose it hierarchically here (a global label collides: same_local_global_label). # +3V3_RF/+3V3_AUX are new nets introduced by this port -> global is fine. @@ -233,6 +259,33 @@ place("Device:C", "C_OUT33b", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 245, # +3V3_RF is now sourced by this buck -> PWR_FLAG on L33 pin2 (replaces the E-key temp flag) p33x, p33y = pin_abs(l33, "Device:L", "2"); emit_flag(p33x, p33y, "P33R") +# ---- STAGE 4: U_BUCK33A 15V -> +3V3_AUX ~1A (TPS54202, sync, 500kHz fixed) ------ +# Quiet rail: GPS + PPS Schmitt buffer + IO pull-ups + RTC domain (design doc ~1A). +# Abs-max gate PASSED (thin): VIN abs-max 30V vs SMBJ18A clamp <=29.2V at full rated +# 600W surge (0.8V margin, transient-only; 28V operating max is not the surge number). +# FB per TI's 3.3V table row: R2=100k/R3=22.1k + Cff 56pF -> 0.596*(1+100/22.1)=3.29V. +# L=10uH (dI~0.52A, Ipk~1.26A), Cout 2x22uF. EN abs-max is 7V -> NO direct VIN tie; +# UVLO divider 866k/110k (Ip=0.7uA/Ih=1.55uA, Ven 1.21/1.19V) -> start 10.1V/stop 8.6V, +# EN sits ~1.9V at 15V in (~3.5V at 29V surge clamp, still < 7V abs-max). +place("CM5IO:TPS54202", "U_BUCK33A", "TPS54202", "Package_TO_SOT_SMD:SOT-23-6", + 230, 95, {'3': 'VIN_PROT', '5': 'EN33A', '6': 'BOOT33A', '2': 'SW33A', + '4': 'FB33A', '1': GND}) +l33a = place("Device:L", "L33A", "10uH/2.5A", "Inductor_SMD:L_1210_3225Metric", 260, 85, {'1': 'SW33A', '2': '+3V3_AUX'}) +place("Device:C", "C_BOOT33A", "100n", "Capacitor_SMD:C_0402_1005Metric", 250, 78, {'1': 'SW33A', '2': 'BOOT33A'}) +place("Device:R", "R_UVT33A", "866k", "Resistor_SMD:R_0402_1005Metric", 205, 85, {'1': 'VIN_PROT', '2': 'EN33A'}) +place("Device:R", "R_UVB33A", "110k", "Resistor_SMD:R_0402_1005Metric", 205, 95, {'1': 'EN33A', '2': GND}) +place("Device:R", "R_FBT33A", "100k", "Resistor_SMD:R_0402_1005Metric", 280, 95, {'1': '+3V3_AUX', '2': 'FB33A'}) +place("Device:C", "C_FF33A", "56p", "Capacitor_SMD:C_0402_1005Metric", 288, 95, {'1': '+3V3_AUX', '2': 'FB33A'}) +place("Device:R", "R_FBB33A", "22.1k", "Resistor_SMD:R_0402_1005Metric", 280, 105, {'1': 'FB33A', '2': GND}) +# NB refdes must not differ from stage-3's C_IN33a by case alone — SPICE names are +# case-insensitive and the simulate_subcircuits testbench collides ("device already exists"). +place("Device:C", "C_IN33Aa", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 215, 105, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_INHF33A", "100n", "Capacitor_SMD:C_0402_1005Metric", 220, 105, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_OUT33Aa", "22u/16V", "Capacitor_SMD:C_1210_3225Metric", 265, 105, {'1': '+3V3_AUX', '2': GND}) +place("Device:C", "C_OUT33Ab", "22u/16V", "Capacitor_SMD:C_1210_3225Metric", 270, 105, {'1': '+3V3_AUX', '2': GND}) +# +3V3_AUX sourced here -> PWR_FLAG on L33A pin2 +p33ax, p33ay = pin_abs(l33a, "Device:L", "2"); emit_flag(p33ax, p33ay, "P33A") + # ---- file scaffold ---------------------------------------------------------------- libsyms = "\n".join(blk for blk, _ in LIBS.values()) sheet = ('(kicad_sch\n\t(version 20231120)\n\t(generator "eeschema")\n\t(generator_version "8.0")\n' From fb19caa95dc3450d86a579435f6ada2b567b7fef Mon Sep 17 00:00:00 2001 From: noise Date: Thu, 2 Jul 2026 07:22:16 -0400 Subject: [PATCH 09/16] Add GPS + PPS distribution sheet (all rev-A blocks captured) - New carrier/GPS_PPS.kicad_sch via tools/build_gps.py: J_GPS 5-pin (PPS + UART2 NMEA + 3V3_AUX + GND) per Pinout_BOM section 6 - PPS chain: GPS_PPS_RAW -> PESD3V3L1BA TVS -> 74LVC1G17 Schmitt (+3V3_AUX) -> PPS_CLEAN -> 33R series -> SYNC_OUT (CM5 pin 18 + J2.6), plus J_PPS1 (UWB) / J_PPS2 (scope) 2-pin taps; board is PPS sink only - NMEA on UART2 (GPIO4/GPIO5) per correction C2; debug console keeps UART0 - Converted SYNC_OUT/GPIO4/GPIO5 local labels on CM5_GPIO to global (names unchanged) to reach the new sheet; root sheet-symbol needs no pins - J_GPS pins 1/2 typed output (GPS drives PPS/TX) for driver-aware checks - Verify: ERC 133->133 zero new; analyzer +73/-0 zero regressions; netlist confirms all cross-sheet nets; SPICE 24 pass / 2 benign warn / 0 fail Co-Authored-By: Claude Fable 5 --- PORT_STATUS.md | 49 +- carrier/CM5IO.kicad_pro | 4 + carrier/CM5IO.kicad_sch | 10 + carrier/CM5_GPIO.kicad_sch | 18 +- carrier/GPS_PPS.kicad_sch | 1453 ++++++++++++++++++++++++++++++++++++ tools/build_gps.py | 166 ++++ 6 files changed, 1677 insertions(+), 23 deletions(-) create mode 100644 carrier/GPS_PPS.kicad_sch create mode 100644 tools/build_gps.py diff --git a/PORT_STATUS.md b/PORT_STATUS.md index eca8cfb..3b0b0f2 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -7,23 +7,28 @@ ## ▶ RESUME HERE (session handoff, 2026-07-01) **State:** branch `port/strip-phase`. Sheets in `carrier/`: root `CM5IO`, `CM5_GPIO`, -`CM5_HighSpeed` (reference, stripped), `M2_Ekey` (E-key, done), `Power` (**stages 1–4 done — -power sheet complete**). Baseline anchor: `analysis/baseline/carrier_stripped.json`. +`CM5_HighSpeed` (reference, stripped), `M2_Ekey`, `Power` (stages 1–4), `GPS_PPS`. **ALL +rev-A circuit blocks are now captured.** Baseline anchor: `analysis/baseline/carrier_stripped.json`. -**Done:** strip phase (microSD/HDMI/MIPI/PCIe-M2); M.2 E-key sheet (PCIe ×1 to CM5); Power -stage 1 (LM74700 ideal-diode input protection → `VIN_PROT`); Power stage 2 (LM61460-Q1 -15→`+5v` 5 A, SPICE 5.02 V); Power stage 3 (LM61460-Q1 15→`+3V3_RF` 4 A, SPICE 3.32 V; EN ← -CM5 `PCIE_PWR_EN`/106 + 100k pull-down); Power stage 4 (TPS54202 15→`+3V3_AUX` ~1 A, SPICE -3.315 V; UVLO divider start 10.1 V / stop 8.6 V). Current whole-design **ERC = 133** (all -pre-existing types; a good edit adds **zero new**). +**Done:** strip phase (microSD/HDMI/MIPI/PCIe-M2); M.2 E-key sheet (PCIe ×1); Power stage 1 +(LM74700 → `VIN_PROT`), stage 2 (LM61460-Q1 → `+5v` 5 A, SPICE 5.02 V), stage 3 (LM61460-Q1 → +`+3V3_RF` 4 A, SPICE 3.32 V, EN ← `PCIE_PWR_EN`), stage 4 (TPS54202 → `+3V3_AUX` ~1 A, SPICE +3.315 V); **GPS + PPS sheet** (`carrier/GPS_PPS.kicad_sch` via `tools/build_gps.py`: J_GPS +5-pin per Pinout_BOM §6, PPS → PESD3V3 TVS → 74LVC1G17 @ +3V3_AUX → `PPS_CLEAN` → Rs 33Ω → +`SYNC_OUT` (CM5 pin 18 + J2.6) + J_PPS1/J_PPS2 taps; NMEA on **UART2 GPIO4/GPIO5** per +correction C2 — netlist: GPIO4 = Module1.54+J8.7+J_GPS.3, GPIO5 = Module1.34+J8.29+J_GPS.2). +The `SYNC_OUT`/`GPIO4`/`GPIO5` local labels on CM5_GPIO were converted to **global** labels +(names unchanged, nothing else used them) to reach the new sheet without root plumbing. +Current whole-design **ERC = 133** (all pre-existing types; a good edit adds **zero new**). -**NEXT ACTION → GPS + PPS distribution sheet** (last new block, see step 5 below): GPS -connector (PPS + UART + 3V3 + GND, powered from `+3V3_AUX`); PPS → TVS → Schmitt buffer -(LVC1G17 @ 3.3 V) → fan-out: CM5 `Ethernet_SYNC_OUT` (J2 pin-6 net, no translator) + 2 header -taps. Reuse the build_*.py generator pattern (new `tools/build_gps.py` or extend build_power). -UART: decide which CM5 UART pins to use (check `CM5_GPIO` — reserve/label; datasheet is the -authority). After that: whole-power-tree budget review, then hygiene pass (title blocks, refdes -numbering — note generated refs like `J_E`/`J_PWR` trip kicad-cli's "annotation errors" warning). +**NEXT ACTION → design-review + close-out passes** (no new blocks): +1. **Power-budget review** of the whole tree (loads vs ratings; the kicad skill's power-tree + check) + re-read PORT_STATUS "Confirm vs datasheet" leftovers (stage-1 C_VCAP/FET pick, + stage-2/3 L saturation ≥ Ipk, RT freq). +2. **Hygiene pass** (checklist in kicad-port skill): refdes numbering (un-numbered generated + refs `J_E`/`J_PWR`/`U_BUCK5`… trip kicad-cli "annotation errors" — decide whether to number + them), title blocks, netlist-vs-BOM sanity, design notes. +3. Then merge `port/strip-phase` → main and start layout prep (DF40 placement copy from ref). **How to build/verify (every change):** - Sheets are generated wholesale — edit `tools/build_ekey.py` / `tools/build_power.py`, then @@ -135,8 +140,18 @@ Notes that bit us (don't re-learn the hard way): - **Stage 2 — U_BUCK5 15→`+5v` 5A ✅ DONE.** `LM61460-Q1` (6A, 42V absmax sync; **custom symbol built from the datasheet** → `carrier/CM5IO.kicad_sym` as `CM5IO:LM61460-Q1`, fp `Package_SO:Texas_HTSSOP-14-1EP…ThermalVias`). VREF=1.0V → FB divider R_FBT5 40.2k / R_FBB5 10.0k = **5.02V (SPICE-confirmed vfb=1.0V)**. L5 4.7µH, Cout 2×47µF/16V, Cin 2×10µF/50V, Cboot 100n+Rboot 4.7Ω, RT 31.6k(~400kHz), BIAS→+5v, EN→VIN_PROT, PGOOD 100k→+5v. **`+5v` kept HIERARCHICAL** (pre-existing carrier net; global would collide `same_local_global_label`) — Power sheet exposes a `+5v` sheet pin, tied into the root `+5v` net; netlist-verified it drives Module1 + GPIO + USB. ERC 133→133 (zero new); analyzer +32 added **0 regressions**; SPICE 12/13 pass, 1 benign warn (L5/Cboot mis-detected as LC filter). **Confirm vs datasheet:** RT freq, L sat ≥7A, EP=pad15, optional EN UVLO divider. - **Stage 3 — U_BUCK33R 15→`+3V3_RF` 4A ✅ DONE.** Second `LM61460-Q1` (shared BOM with stage 2: L 4.7µH/7A ripple ~1.3A=33%, Cin 2×10µ/50V, Cout 2×47µ/16V, RT 31.6k ~420kHz, Cboot 100n+Rboot 4.7). FB divider R_FBT33 23.2k / R_FBB33 10.0k = **3.32V (SPICE: vfb 0.994V, inrush settles 3.32V)**. BIAS→`+3V3_RF` (datasheet: valid ≥3.1V, auto-falls back to VIN below). **EN ← CM5 `PCIE_PWR_EN`** (Module1 pin 106: NC swapped for a global label on `CM5_HighSpeed`) + **R_EN33 100k pull-down** (mirrors reference R14 — netlist-verified `Module1.106 + U_BUCK33R.7 + R_EN33.1`) so the Wi-Fi rail is OFF until the CM5 asserts it. **E-key temp `#FLG33RF` PWR_FLAG removed** (build_ekey); the buck's PWR_FLAG on L33.2 is now the sole `+3V3_RF` driver — netlist shows buck + all 4 J_E power pins + pull-ups + decoupling on one net. Verify: ERC 133→133 zero new; analyzer +49 added **0 regressions**; SPICE 17 pass / 2 benign warn (the L/C_BOOT "LC filter" mis-detect, once per buck) / 0 fail. (Note: `kicad-cli` netlist export prints a pre-existing "annotation errors" warning — un-numbered generated refdeses like `J_E`/`J_PWR`; present at fd627f5 too, cosmetic.) - **Stage 4 — U_BUCK33A 15→`+3V3_AUX` ~1A ✅ DONE (power sheet complete).** `TPS54202` (SOT-23-6, sync, fixed 500kHz, VFB=0.596V). **Abs-max gate PASSED but thin:** VIN abs-max **30V** vs SMBJ18A clamp ≤29.2V at full rated 600W surge → 0.8V transient margin (operating max 28V is not the surge number). Custom symbol `CM5IO:TPS54202` (the KiCad lib symbol `extends TPS54302` — no own pins, can't embed standalone) + bare copy in `carrier/CM5IO.kicad_sym`. FB per TI's 3.3V table row: **100k/22.1k + Cff 56pF → 3.29V (SPICE: vfb 0.597V, inrush settles 3.315V)**. L 10µH/2.5A (ΔI~0.52A), Cout 2×22µF/16V, Cboot 100n, Cin 10µF/50V+100n. **EN abs-max is only 7V → NO direct VIN tie** (unlike LM61460): UVLO divider **866k/110k** (solved from Ip=0.7µA/Ih=1.55µA, VEN 1.21/1.19V) → **start 10.13V / stop 8.61V**, EN ~1.9V at 15V in (~3.5V at 29V clamp — safe). FB+EN pins typed `passive` (divider-only nets). Verify: ERC 133→133 zero new; analyzer +65/−0 zero regressions (warn/error set identical to stage 3); SPICE 23 pass / 2 benign warn / 0 fail / 0 skip. **New tooling gap found:** `simulate_subcircuits.py` lowercases refdeses into SPICE names — `C_IN33A` vs stage-3 `C_IN33a` collided ("device already exists") and silently SKIPPED the whole VIN_PROT decoupling group → renamed to `C_IN33Aa`. Rule: **never create refdeses differing only by case.** -5. **GPS + PPS distribution**: GPS connector (PPS+UART+3V3+GND); PPS → TVS → Schmitt (LVC1G17) → - fan-out: CM5 `Ethernet_SYNC_OUT` (J2 pin-6 net, 3.3V, no translator) + 2 header taps. SPICE/timing check. +5. **GPS + PPS distribution ✅ DONE** (`carrier/GPS_PPS.kicad_sch`, generated by `tools/build_gps.py`). + Per Pinout_BOM §6 (the authority — it CORRECTS the design doc): J_GPS 5-pin (1=PPS, 2=NMEA_RX←GPS TX, + 3=NMEA_TX→GPS RX, 4=+3V3_AUX, 5=GND); `GPS_PPS_RAW` → TVS_PPS `PESD3V3L1BA` → U_PPS `74LVC1G17` + (SOT-23-5, +3V3_AUX, pin 1 true-NC) → `PPS_CLEAN` → R_PPS 33Ω → `SYNC_OUT` + J_PPS1 (UWB) / J_PPS2 + (scope), 2-pin taps. **NMEA = UART2 on GPIO4/GPIO5** (correction C2; UART0/GPIO14-15 stays debug). + Cross-sheet wiring: converted the 6 local labels (`SYNC_OUT`×2, `GPIO4`×2, `GPIO5`×2 on CM5_GPIO) to + **global** labels — net names unchanged so no multi-label (LB-001) findings, ERC-neutral (133→133); + GPS sheet uses the same global names, root sheet-symbol has NO pins. J_GPS pins 1/2 re-typed `output` + (GPS module drives PPS + TX) so the analyzer's no_driver gate passes — same trick as the E-key socket. + **Verify:** ERC 133→133 zero new; analyzer +73/−0 **0 regressions** (only the pre-existing MPN-coverage + counter moved 50→57 parts); netlist confirms all 6 cross-sheet nets (SYNC_OUT = Module1.18+J2.6+R_PPS.2); + SPICE 24 pass / 2 benign warn / 0 fail / 0 skip. ## Out-of-repo notes diff --git a/carrier/CM5IO.kicad_pro b/carrier/CM5IO.kicad_pro index b6a9527..28031b9 100644 --- a/carrier/CM5IO.kicad_pro +++ b/carrier/CM5IO.kicad_pro @@ -841,6 +841,10 @@ [ "9c7ccf72-dd3e-5ed3-bb43-2939833eb069", "Power" + ], + [ + "5efffb63-edbb-5986-86d3-84ead412bc65", + "GPS_PPS" ] ], "text_variables": {} diff --git a/carrier/CM5IO.kicad_sch b/carrier/CM5IO.kicad_sch index 3154767..6bdcfdc 100644 --- a/carrier/CM5IO.kicad_sch +++ b/carrier/CM5IO.kicad_sch @@ -3489,6 +3489,16 @@ (effects (font (size 1.27 1.27)) (justify left)) (uuid "f1109a7e-4bfb-54f4-a32e-e6719bad4ba8") ) + (sheet + (at 205 90) + (size 30 20) + (stroke (width 0.1524) (type solid) (color 132 0 132 1)) + (fill (color 255 255 255 0.0000)) + (uuid "5efffb63-edbb-5986-86d3-84ead412bc65") + (property "Sheetname" "GPS_PPS" (at 205 86.18 0) (effects (font (size 1.27 1.27)) (justify left bottom))) + (property "Sheetfile" "GPS_PPS.kicad_sch" (at 205 87.45 0) (effects (font (size 1.27 1.27)) (justify left top))) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "6")))) + ) (sheet_instances (path "/" (page "1") diff --git a/carrier/CM5_GPIO.kicad_sch b/carrier/CM5_GPIO.kicad_sch index b596853..89a7cdf 100644 --- a/carrier/CM5_GPIO.kicad_sch +++ b/carrier/CM5_GPIO.kicad_sch @@ -13645,7 +13645,8 @@ ) (uuid "05c1c0ae-f846-4942-b9ca-9f0f8f62492d") ) - (label "GPIO5" + (global_label "GPIO5" + (shape bidirectional) (at 24.13 62.23 0) (fields_autoplaced yes) (effects @@ -13964,7 +13965,8 @@ ) (uuid "2e95b89a-d151-4ceb-8ea1-75ed88f1541e") ) - (label "GPIO4" + (global_label "GPIO4" + (shape bidirectional) (at 24.13 87.63 0) (fields_autoplaced yes) (effects @@ -14316,7 +14318,8 @@ ) (uuid "6fa8342e-2989-40ca-b0ae-b207f17ca831") ) - (label "SYNC_OUT" + (global_label "SYNC_OUT" + (shape bidirectional) (at 54.61 175.26 180) (fields_autoplaced yes) (effects @@ -14459,7 +14462,8 @@ ) (uuid "88ce3174-a8b3-4149-886a-872ed4746e98") ) - (label "SYNC_OUT" + (global_label "SYNC_OUT" + (shape bidirectional) (at 24.13 41.91 0) (fields_autoplaced yes) (effects @@ -14525,7 +14529,8 @@ ) (uuid "91fb974e-99de-4e0c-bee5-7a6f88905951") ) - (label "GPIO5" + (global_label "GPIO5" + (shape bidirectional) (at 147.32 59.69 180) (fields_autoplaced yes) (effects @@ -15053,7 +15058,8 @@ ) (uuid "f6429ab2-213c-4030-a705-9f073170a98c") ) - (label "GPIO4" + (global_label "GPIO4" + (shape bidirectional) (at 147.32 31.75 180) (fields_autoplaced yes) (effects diff --git a/carrier/GPS_PPS.kicad_sch b/carrier/GPS_PPS.kicad_sch new file mode 100644 index 0000000..0ac9d3d --- /dev/null +++ b/carrier/GPS_PPS.kicad_sch @@ -0,0 +1,1453 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "271743c9-a477-5c0b-8588-e5a06137596b") + (paper "A4") + (title_block + (title "CM5 Carrier - GPS + PPS distribution") + (rev "A") + (comment 1 "GPS conn (PPS+UART2+3V3_AUX) -> TVS -> LVC1G17 -> CM5 SYNC + 2 taps; PPS sink only") + ) + (lib_symbols +(symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) +(symbol "Device:D_TVS" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "D" + (at 0 2.54 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "D_TVS" + (at 0 -2.54 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Bidirectional transient-voltage-suppression diode" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "diode TVS thyrector" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "D_TVS_0_1" + (polyline + (pts + (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy -1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "D_TVS_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) +(symbol "Connector_Generic:Conn_01x05" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "J" + (at 0 7.62 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x05" + (at 0 -7.62 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "Conn_01x05_1_1" + (rectangle + (start -1.27 6.35) + (end 1.27 -6.35) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start -1.27 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin output line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) +(symbol "Connector_Generic:Conn_01x02" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "J" + (at 0 2.54 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x02" + (at 0 -5.08 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "Conn_01x02_1_1" + (rectangle + (start -1.27 1.27) + (end 1.27 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) +(symbol "74xGxx:74LVC1G17" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "U" + (at 0 3.81 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "74LVC1G17" + (at 0 -3.81 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at -2.54 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf" + (at 0 -6.35 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Description" "Single Schmitt Buffer Gate, Low-Voltage CMOS" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "Single Gate Buff Schmitt LVC CMOS" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "SOT?23* SOT?553* Texas?R-PDSO-G5?DCK* Texas?R-PDSO-N5?DRL* Texas?X2SON*0.8x0.8mm*P0.48mm*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "74LVC1G17_0_1" + (polyline + (pts + (xy -7.62 6.35) (xy -7.62 -6.35) (xy 5.08 0) (xy -7.62 6.35) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -3.81 -1.27) (xy -2.54 -1.27) (xy -2.54 1.27) (xy -1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -2.54 -1.27) (xy -1.27 -1.27) (xy -1.27 1.27) (xy 0 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "74LVC1G17_1_1" + (pin no_connect line + (at -7.62 5.08 180) + (length 5.08) + (hide yes) + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -12.7 0 0) + (length 5.08) + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 -10.16 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 10.16 0 180) + (length 5.08) + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -5.08 10.16 270) + (length 5.08) + (name "VCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x05") + (at 59.69 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "7a076bd1-3589-5316-897d-6ab0d06183ba") + (property "Reference" "J_GPS" (at 62.23 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "GPS_5pin_PPS_UART" (at 62.23 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (at 59.69 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 59.69 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 59.69 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "2800b758-4e63-5406-9dc3-186319d34c26")) + (pin "2" (uuid "8629d0b8-e972-5f9e-a4bf-9c4d77598d49")) + (pin "3" (uuid "eb14636c-36ea-5f12-9638-ab5dbf1e88dc")) + (pin "4" (uuid "adc66aba-f702-5a90-ba64-00edf9d37c0f")) + (pin "5" (uuid "de9497d8-1db5-5818-ad9f-17088ecfc768")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "J_GPS") (unit 1)))) + ) + (label "GPS_PPS_RAW" + (at 54.61 74.93 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "e7aa6a9d-eb6b-5208-acec-1bc4c0bf2a95") + ) + (global_label "GPIO5" + (shape input) + (at 54.61 77.47 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "63716f7d-d0db-50c3-84f3-59b876fc736e") + ) + (global_label "GPIO4" + (shape input) + (at 54.61 80.01 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "85f684d3-5dba-5452-a4d3-a7794b2c2dea") + ) + (global_label "+3V3_AUX" + (shape input) + (at 54.61 82.55 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "edf7cfab-9055-5cbe-9eee-6e835d2fcfc1") + ) + (symbol + (lib_id "power:GND") + (at 54.61 85.09 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "01e18e05-a999-5bec-930e-f710b0678f9c") + (property "Reference" "#PWRJ_GPS5" (at 54.61 88.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 54.61 87.09 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 54.61 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 54.61 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "6f24e473-b057-5455-a8f6-b9f8c95bd2e0")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRJ_GPS5") (unit 1)))) + ) + (symbol + (lib_id "Device:D_TVS") + (at 85.09 95.25 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "9e9aee7c-1576-5761-afbb-0e9ea077ab86") + (property "Reference" "TVS_PPS" (at 87.63000000000001 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "PESD3V3L1BA" (at 87.63000000000001 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Diode_SMD:D_SOD-323" (at 85.09 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 85.09 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 85.09 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "0bbe2ed0-ed29-5580-a5aa-d33761afc0a3")) + (pin "2" (uuid "d76dcdde-6b02-55f1-bd71-0bcaf3d2b329")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "TVS_PPS") (unit 1)))) + ) + (label "GPS_PPS_RAW" + (at 81.28 95.25 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "6720173f-2657-5cea-b19a-b08f5c85e428") + ) + (symbol + (lib_id "power:GND") + (at 88.9 95.25 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "0c7c62b4-f16d-5844-82d2-fb1373bab471") + (property "Reference" "#PWRTVS_PPS2" (at 88.9 98.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 88.9 97.25 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 88.9 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 88.9 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "70ebf9ed-18f8-5f65-9320-3ca48ac752fb")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRTVS_PPS2") (unit 1)))) + ) + (symbol + (lib_id "74xGxx:74LVC1G17") + (at 110.49 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "b9a5c7d5-1d79-5486-9853-8569ecb1c277") + (property "Reference" "U_PPS" (at 113.03 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "74LVC1G17" (at 113.03 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 110.49 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 110.49 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 110.49 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "1a1a2182-9411-5c6b-8833-bf2529edb275")) + (pin "2" (uuid "242d5819-8cf5-58ce-bd6d-0c2a2de6979b")) + (pin "3" (uuid "2cb9ef1c-5101-5f27-a2df-081cff8ac0a6")) + (pin "4" (uuid "6b04d93d-0dda-5fc4-b7f9-7cc4a4e96f59")) + (pin "5" (uuid "8a47cd9f-b4a4-5e36-ac7f-11c086d08151")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "U_PPS") (unit 1)))) + ) + (label "GPS_PPS_RAW" + (at 97.79 80.01 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "36c0628b-43d1-5424-8e10-f7e48394af28") + ) + (label "PPS_CLEAN" + (at 120.65 80.01 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "2998a9b6-fc67-563b-ac4c-3491ba9b5088") + ) + (global_label "+3V3_AUX" + (shape input) + (at 105.41 69.85 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "d403546c-9b63-5bf6-a5b4-92207c007f5d") + ) + (symbol + (lib_id "power:GND") + (at 105.41 90.17 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "150b7c14-ad6b-5275-86ea-8a7681618fe1") + (property "Reference" "#PWRU_PPS3" (at 105.41 93.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 105.41 92.17 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 105.41 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 105.41 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "9e7034db-c1af-5d71-b106-8f708c4fd18e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRU_PPS3") (unit 1)))) + ) + (no_connect (at 102.87 74.93) (uuid "f7cb859a-b2a2-52fc-8bf4-fbb0ad6f5c33")) + (symbol + (lib_id "Device:C") + (at 100.33 95.25 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "0ee7ad07-7dd3-527f-b230-1f11a45b867e") + (property "Reference" "C_PPS" (at 102.87 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100n" (at 102.87 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 100.33 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 100.33 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 100.33 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "32b3a373-61a6-563b-a411-19c849e1ae47")) + (pin "2" (uuid "f9561ed0-6227-5d01-8a2e-9ce824637de9")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "C_PPS") (unit 1)))) + ) + (global_label "+3V3_AUX" + (shape input) + (at 100.33 91.44 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "5cd3079f-333c-5051-8f83-852b7bf5d85b") + ) + (symbol + (lib_id "power:GND") + (at 100.33 99.06 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "422ec18f-9697-5423-a10f-0e04a697658e") + (property "Reference" "#PWRC_PPS2" (at 100.33 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 100.33 101.06 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 100.33 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 100.33 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "2a23c7de-328c-5fc7-8008-4f91a4374ca6")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRC_PPS2") (unit 1)))) + ) + (symbol + (lib_id "Device:C") + (at 69.85 95.25 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "f69070b4-27bb-5123-995b-1bcd40a2ac1f") + (property "Reference" "C_GPS" (at 72.39 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "10u" (at 72.39 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 69.85 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 69.85 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 69.85 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "bd0e3c17-a76b-5372-badd-1b2f9e849915")) + (pin "2" (uuid "a8c446db-7686-5485-b6bd-ceb0a29e779c")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "C_GPS") (unit 1)))) + ) + (global_label "+3V3_AUX" + (shape input) + (at 69.85 91.44 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "ab58bfa2-a9d9-5414-993a-6fd5aaf6218a") + ) + (symbol + (lib_id "power:GND") + (at 69.85 99.06 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "4f1bc8a1-6fed-5585-99e9-762c65b4838f") + (property "Reference" "#PWRC_GPS2" (at 69.85 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 69.85 101.06 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 69.85 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 69.85 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "a71f135c-ae41-5218-aa40-00fcf83a461f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRC_GPS2") (unit 1)))) + ) + (symbol + (lib_id "Device:R") + (at 139.7 80.01 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "249ff202-abac-547f-bce5-9b1af41e5ce6") + (property "Reference" "R_PPS" (at 142.23999999999998 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "33" (at 142.23999999999998 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 139.7 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 139.7 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 139.7 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "7bb99321-fcc6-5c6a-980b-49f4c1a8b53c")) + (pin "2" (uuid "1be0babc-6c15-5a07-bfb9-01f0fc283e8b")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "R_PPS") (unit 1)))) + ) + (label "PPS_CLEAN" + (at 139.7 76.2 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "786de885-8592-5bc4-b433-18e1f446c835") + ) + (global_label "SYNC_OUT" + (shape input) + (at 139.7 83.82 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "4a24c9e0-9fb6-5321-8787-6d8effa2b992") + ) + (symbol + (lib_id "Connector_Generic:Conn_01x02") + (at 170.18 74.93 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "33a1c6f2-b3c6-5ea1-bd56-e80289fa59d9") + (property "Reference" "J_PPS1" (at 172.72 73.93 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "PPS_tap_UWB" (at 172.72 75.93 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 170.18 74.93 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 74.93 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 170.18 74.93 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "3768e981-1d1d-5ded-ab23-1679745916db")) + (pin "2" (uuid "684982a3-7873-5e6a-b695-a6935354ff2b")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "J_PPS1") (unit 1)))) + ) + (label "PPS_CLEAN" + (at 165.1 74.93 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "fe60af27-5505-5d53-8d8a-70ac6e710fa5") + ) + (symbol + (lib_id "power:GND") + (at 165.1 77.47 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "132d501c-0959-591c-8fde-5c570e4eed1b") + (property "Reference" "#PWRJ_PPS12" (at 165.1 80.47 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 165.1 79.47 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 165.1 77.47 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 165.1 77.47 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "13197402-e8f1-5350-ac79-c6df42a63630")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRJ_PPS12") (unit 1)))) + ) + (symbol + (lib_id "Connector_Generic:Conn_01x02") + (at 170.18 90.17 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "3139dfd8-45cc-5d23-9267-1690860aef1d") + (property "Reference" "J_PPS2" (at 172.72 89.17 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "PPS_tap_scope" (at 172.72 91.17 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (at 170.18 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 170.18 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Description" "" (at 170.18 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "4b9fd1a1-742a-5e6c-a940-8247ed9843ad")) + (pin "2" (uuid "2fa66511-bd79-5dc8-9721-c11cc9e610c4")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "J_PPS2") (unit 1)))) + ) + (label "PPS_CLEAN" + (at 165.1 90.17 0) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid "883f9a6b-fc3b-5042-8915-45a5b2b27c9e") + ) + (symbol + (lib_id "power:GND") + (at 165.1 92.71 0) + (unit 1) + (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) + (uuid "fcf251ff-d387-5fca-9725-9d4ba93544a2") + (property "Reference" "#PWRJ_PPS22" (at 165.1 95.71 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Value" "GND" (at 165.1 94.71 0) (effects (font (size 1.27 1.27)))) + (property "Footprint" "" (at 165.1 92.71 0) (effects (font (size 1.27 1.27)) (hide yes))) + (property "Datasheet" "" (at 165.1 92.71 0) (effects (font (size 1.27 1.27)) (hide yes))) + (pin "1" (uuid "0a7181d0-5843-5e80-a044-bc6126797b29")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRJ_PPS22") (unit 1)))) + ) + (sheet_instances + (path "/" + (page "6") + ) + ) +) diff --git a/tools/build_gps.py b/tools/build_gps.py new file mode 100644 index 0000000..28af3b0 --- /dev/null +++ b/tools/build_gps.py @@ -0,0 +1,166 @@ +#!/usr/bin/env python3 +"""build_gps.py — generate the CM5-carrier GPS + PPS distribution sheet. + +Same connectivity model as build_power.py: every pin gets a coincident named +label / GND symbol / no_connect; nets form by name (grid-snapped 1.27mm). + +Frozen spec (CM5_Carrier_Pinout_BOM.md §6, CM5_Carrier_Design.md §5a): + J_GPS(5-pin): 1=PPS 2=NMEA_RX(GPS TX -> CM5 GPIO5/UART2 RX) + 3=NMEA_TX(CM5 GPIO4/UART2 TX -> GPS RX) 4=+3V3_AUX 5=GND + GPS_PPS_RAW -> TVS -> 74LVC1G17 Schmitt (3V3) -> PPS_CLEAN + -> Rs 33R -> SYNC_OUT (CM5 pin 18, Ethernet_SYNC_OUT, 3.3V bidi, cfg input) + -> J_PPS1 (UWB tap) / J_PPS2 (scope tap), 2-pin each + Board is always a PPS SINK (GPS-sourced). + +Cross-sheet nets are GLOBAL: +3V3_AUX (Power sheet flag drives it), and +GPIO4/GPIO5/SYNC_OUT (their CM5_GPIO local labels were converted to global — +net names unchanged; nothing else in the design used those names). +J_GPS pins 1/2 are re-typed 'output' (the GPS module drives PPS and TX into +the board) so the analyzer's no_driver gate sees real drivers (E-key lesson). +""" +import re, sys, os, uuid as uuidlib + +ROOT_UUID = "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" +PROJECT = "CM5IO" +KSS = "/Applications/KiCad/KiCad.app/Contents/SharedSupport/symbols" +HERE = os.path.dirname(os.path.abspath(__file__)) +CARRIER = os.path.join(HERE, "..", "carrier") + +def U(label): return str(uuidlib.uuid5(uuidlib.NAMESPACE_DNS, "cm5carrier-gps-" + label)) +SHEET_SYMBOL_UUID = U("sheet-symbol") +SHEET_FILE_UUID = U("sheet-file") + +def g(v): return round(round(v / 1.27) * 1.27, 2) + +def paren_end(t, s): + d = 0 + for i in range(s, len(t)): + if t[i] == '(': d += 1 + elif t[i] == ')': + d -= 1 + if d == 0: return i + 1 + raise ValueError("unbalanced") + +def get_symbol(text, name): + m = re.search(r'\(symbol\s+"' + re.escape(name) + r'"', text) + return text[m.start():paren_end(text, m.start())] if m else None + +def lib_pins(seg): + out = {} + for pm in re.finditer(r'\(pin\b', seg): + s = pm.start(); ps = seg[s:paren_end(seg, s)] + at = re.search(r'\(at\s+([\d.-]+)\s+([\d.-]+)\s+([\d.-]+)\)', ps) + nu = re.search(r'\(number\s+"([^"]+)"', ps) + if at and nu: + out.setdefault(nu.group(1), (float(at.group(1)), float(at.group(2)), float(at.group(3)))) + return out + +def set_pin_type(seg, number, newtype): + for pm in re.finditer(r'\(pin\s+(\w+)\s+(\w+)', seg): + s = pm.start(); blk = seg[s:paren_end(seg, s)] + if re.search(r'\(number\s+"' + re.escape(number) + r'"', blk): + head = re.match(r'\(pin\s+\w+', blk).group(0) + return seg[:s] + blk.replace(head, f'(pin {newtype}', 1) + seg[s + len(blk):] + return seg + +# ---- lib_symbol sources ----------------------------------------------------------- +carrier_hs = open(os.path.join(CARRIER, "CM5_HighSpeed.kicad_sch")).read() +LIBS = {} +def add_from(lib_id, srctext, srcname=None, retype=None): + srcname = srcname or lib_id.split(':')[-1] + blk = get_symbol(srctext, lib_id) or get_symbol(srctext, srcname) + if not blk: sys.exit("missing lib_symbol " + lib_id) + if ('"' + lib_id + '"') not in blk[:60]: + blk = blk.replace('(symbol "' + srcname + '"', '(symbol "' + lib_id + '"', 1) + for num, ty in (retype or {}).items(): + blk = set_pin_type(blk, num, ty) + LIBS[lib_id] = (blk, lib_pins(blk)) + +for lid in ["Device:R", "Device:C", "power:GND"]: + add_from(lid, carrier_hs) +add_from("Device:D_TVS", open(f"{KSS}/Device.kicad_sym").read(), "D_TVS") +# GPS module DRIVES pins 1 (PPS) and 2 (its TX) -> 'output' for driver-aware checks +add_from("Connector_Generic:Conn_01x05", open(f"{KSS}/Connector_Generic.kicad_sym").read(), + "Conn_01x05", retype={'1': 'output', '2': 'output'}) +add_from("Connector_Generic:Conn_01x02", open(f"{KSS}/Connector_Generic.kicad_sym").read(), "Conn_01x02") +add_from("74xGxx:74LVC1G17", open(f"{KSS}/74xGxx.kicad_sym").read(), "74LVC1G17") + +GLOBAL_NETS = {"+3V3_AUX", "GPIO4", "GPIO5", "SYNC_OUT"} +HIER_NETS = set() + +# ---- placement engine (same as build_power.py, + ('nc',) pins) -------------------- +body = [] +def emit_label(net, x, y, ang=0): + body.append(f'\t(label "{net}"\n\t\t(at {x} {y} {ang})\n' + f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("l-"+net+f"-{x}-{y}")}")\n\t)\n') +def emit_glabel(net, x, y, ang=0): + body.append(f'\t(global_label "{net}"\n\t\t(shape input)\n\t\t(at {x} {y} {ang})\n' + f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("gl-"+net+f"-{x}-{y}")}")\n\t)\n') +def emit_nc(x, y, tag): + body.append(f'\t(no_connect (at {x} {y}) (uuid "{U("nc-"+tag)}"))\n') +def emit_gnd(x, y, tag): + body.append(f'\t(symbol\n\t\t(lib_id "power:GND")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("gnd-"+tag)}")\n' + f'\t\t(property "Reference" "#PWR{tag}" (at {x} {y+3} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Value" "GND" (at {x} {y+2} 0) (effects (font (size 1.27 1.27))))\n' + f'\t\t(property "Footprint" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Datasheet" "" (at {x} {y} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(pin "1" (uuid "{U("gp-"+tag)}"))\n' + f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "#PWR{tag}") (unit 1))))\n\t)\n') + +def place(lib_id, ref, value, footprint, ox, oy, pin_nets): + ox, oy = g(ox), g(oy) + _, pins = LIBS[lib_id] + extra = ('\t\t(property "Description" "" (at %g %g 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' % (ox, oy)) + sym = (f'\t(symbol\n\t\t(lib_id "{lib_id}")\n\t\t(at {ox} {oy} 0)\n\t\t(unit 1)\n' + f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("sym-"+ref)}")\n' + f'\t\t(property "Reference" "{ref}" (at {ox+2.54} {oy-1} 0) (effects (font (size 1.27 1.27)) (justify left)))\n' + f'\t\t(property "Value" "{value}" (at {ox+2.54} {oy+1} 0) (effects (font (size 1.27 1.27)) (justify left)))\n' + f'\t\t(property "Footprint" "{footprint}" (at {ox} {oy} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + f'\t\t(property "Datasheet" "" (at {ox} {oy} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' + extra) + for num in sorted(pins, key=lambda n: int(re.sub(r'\D', '', n) or 0)): + sym += f'\t\t(pin "{num}" (uuid "{U("p-"+ref+"-"+num)}"))\n' + sym += f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "{ref}") (unit 1))))\n\t)\n' + body.append(sym) + for num, net in pin_nets.items(): + lx, ly, _ = pins[num]; px, py = round(ox + lx, 2), round(oy - ly, 2) + if net == ('gnd',): emit_gnd(px, py, ref + num) + elif net == ('nc',): emit_nc(px, py, ref + num) + elif isinstance(net, tuple) and net[0] == 'global': emit_glabel(net[1], px, py) + elif net in GLOBAL_NETS: emit_glabel(net, px, py) + else: emit_label(net, px, py) + return ox, oy + +GND = ('gnd',); NC = ('nc',) + +# ---- the GPS + PPS block ---------------------------------------------------------- +place("Connector_Generic:Conn_01x05", "J_GPS", "GPS_5pin_PPS_UART", "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical", + 60, 80, {'1': 'GPS_PPS_RAW', '2': 'GPIO5', '3': 'GPIO4', '4': '+3V3_AUX', '5': GND}) +place("Device:D_TVS", "TVS_PPS", "PESD3V3L1BA", "Diode_SMD:D_SOD-323", 85, 95, {'1': 'GPS_PPS_RAW', '2': GND}) +# 74LVC1G17: 1=NC 2=A 3=GND 4=Y 5=VCC (KiCad lib types: input/power_in/output/power_in) +place("74xGxx:74LVC1G17", "U_PPS", "74LVC1G17", "Package_TO_SOT_SMD:SOT-23-5", + 110, 80, {'2': 'GPS_PPS_RAW', '4': 'PPS_CLEAN', '5': '+3V3_AUX', '3': GND, '1': NC}) +place("Device:C", "C_PPS", "100n", "Capacitor_SMD:C_0402_1005Metric", 100, 95, {'1': '+3V3_AUX', '2': GND}) +place("Device:C", "C_GPS", "10u", "Capacitor_SMD:C_0603_1608Metric", 70, 95, {'1': '+3V3_AUX', '2': GND}) +# series R guards the LVC1G17 output against a driver fight (CM5 pin 18 is bidi; +# board policy configures it as input — spec Rs 33-100R, pick 33R) +place("Device:R", "R_PPS", "33", "Resistor_SMD:R_0402_1005Metric", 140, 80, {'1': 'PPS_CLEAN', '2': 'SYNC_OUT'}) +place("Connector_Generic:Conn_01x02", "J_PPS1", "PPS_tap_UWB", "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical", + 170, 75, {'1': 'PPS_CLEAN', '2': GND}) +place("Connector_Generic:Conn_01x02", "J_PPS2", "PPS_tap_scope", "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical", + 170, 90, {'1': 'PPS_CLEAN', '2': GND}) + +# ---- file scaffold ---------------------------------------------------------------- +libsyms = "\n".join(blk for blk, _ in LIBS.values()) +sheet = ('(kicad_sch\n\t(version 20231120)\n\t(generator "eeschema")\n\t(generator_version "8.0")\n' + f'\t(uuid "{SHEET_FILE_UUID}")\n\t(paper "A4")\n' + '\t(title_block\n\t\t(title "CM5 Carrier - GPS + PPS distribution")\n\t\t(rev "A")\n' + '\t\t(comment 1 "GPS conn (PPS+UART2+3V3_AUX) -> TVS -> LVC1G17 -> CM5 SYNC + 2 taps; PPS sink only")\n\t)\n' + '\t(lib_symbols\n' + libsyms + '\n\t)\n' + "".join(body) + + '\t(sheet_instances\n\t\t(path "/"\n\t\t\t(page "6")\n\t\t)\n\t)\n)\n') +assert sheet.count('(') == sheet.count(')'), f"UNBALANCED {sheet.count('(')} vs {sheet.count(')')}" +print("sheet-symbol uuid:", SHEET_SYMBOL_UUID) +print("parens balanced:", sheet.count('(')) +out = os.path.join(CARRIER, "GPS_PPS.kicad_sch") +if '--apply' in sys.argv: open(out, 'w').write(sheet); print("WROTE " + out) +else: print("DRY RUN (--apply to write)") From 2f239bb75d4bb9a29b0c21e7fd428bbfeba75e9c Mon Sep 17 00:00:00 2001 From: noise Date: Thu, 2 Jul 2026 07:27:09 -0400 Subject: [PATCH 10/16] =?UTF-8?q?docs:=20refresh=20RESUME=20header=20?= =?UTF-8?q?=E2=80=94=20schematic=20capture=20complete,=20paused=20pre-revi?= =?UTF-8?q?ew?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- PORT_STATUS.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PORT_STATUS.md b/PORT_STATUS.md index 3b0b0f2..07841f6 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -4,9 +4,10 @@ > `.claude/skills/kicad-port/SKILL.md` (the mandatory workflow/verify-loop), then > `CM5_Carrier_Design.md` (frozen rev-A spec). -## ▶ RESUME HERE (session handoff, 2026-07-01) +## ▶ RESUME HERE (session handoff, 2026-07-02 — work paused here, schematic capture COMPLETE) -**State:** branch `port/strip-phase`. Sheets in `carrier/`: root `CM5IO`, `CM5_GPIO`, +**State:** branch `port/strip-phase`, HEAD `fb19caa`, working tree clean (only the unrelated +`refs/.history` submodule blip). Sheets in `carrier/`: root `CM5IO`, `CM5_GPIO`, `CM5_HighSpeed` (reference, stripped), `M2_Ekey`, `Power` (stages 1–4), `GPS_PPS`. **ALL rev-A circuit blocks are now captured.** Baseline anchor: `analysis/baseline/carrier_stripped.json`. From 39146a7d4c6fa7d27797a4134c03549f8c219cc2 Mon Sep 17 00:00:00 2001 From: noise Date: Sat, 4 Jul 2026 09:26:48 -0400 Subject: [PATCH 11/16] =?UTF-8?q?Remove=20orphaned=20U12=20(RT9742)=20+=20?= =?UTF-8?q?C13=20=E2=80=94=20fed=20stripped=20HDMI=5F5v=20rail?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reference netlist proves U12 OUT drove HDMI_5v (J10/J22 pin 18); HDMI strip left it dead-ended into C13 only. ERC 133->133 (identical types); analyzer diff -2 components, 0 regressions. Co-Authored-By: Claude Fable 5 --- carrier/CM5_HighSpeed.kicad_sch | 407 -------------------------------- 1 file changed, 407 deletions(-) diff --git a/carrier/CM5_HighSpeed.kicad_sch b/carrier/CM5_HighSpeed.kicad_sch index 3e7ab23..4d58ffa 100644 --- a/carrier/CM5_HighSpeed.kicad_sch +++ b/carrier/CM5_HighSpeed.kicad_sch @@ -7684,16 +7684,6 @@ ) (uuid "2ad4b4ba-3abd-4313-bed9-1edce936a95e") ) - (wire - (pts - (xy 223.52 147.32) (xy 229.87 147.32) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "2bbd6c26-4114-4518-8f4a-c6fdadc046b6") - ) (wire (pts (xy 35.56 55.88) (xy 35.56 63.5) @@ -7884,16 +7874,6 @@ ) (uuid "4faeed13-cd8a-4bdc-8d48-1ca1fe386979") ) - (wire - (pts - (xy 229.87 147.32) (xy 240.03 147.32) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "51f5536d-48d2-4807-be44-93f427952b0e") - ) (wire (pts (xy 99.06 132.08) (xy 101.6 132.08) @@ -7914,16 +7894,6 @@ ) (uuid "56499431-ef85-47bb-ba33-c50a0b8578c8") ) - (wire - (pts - (xy 208.28 153.67) (xy 208.28 154.94) - ) - (stroke - (width 0) - (type solid) - ) - (uuid "56f0a67a-a93a-477a-9778-70fe2cfeeb5a") - ) (wire (pts (xy 50.8 177.8) (xy 40.64 177.8) @@ -9715,129 +9685,6 @@ ) ) ) - (symbol - (lib_id "Device:C") - (at 229.87 151.13 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "00000000-0000-0000-0000-00005da83896") - (property "Reference" "C13" - (at 232.791 149.9616 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100n" - (at 232.791 152.273 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" - (at 230.8352 154.94 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://search.murata.co.jp/Ceramy/image/img/A01X/G101/ENG/GRM155R71C104KA88-01.pdf" - (at 229.87 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 229.87 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 229.87 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "2611911" - (at 229.87 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "RM EMK105 B7104KV-F" - (at 229.87 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "TAIYO YUDEN EUROPE GMBH" - (at 229.87 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" " 0.1uF 10% 16V Ceramic Capacitor X7R 0402 (1005 Metric)" - (at 229.87 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "110091611" - (at 229.87 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "fb4e7351-d265-4999-adf6-bc7596c21cf3") - ) - (pin "2" - (uuid "119c633c-175b-4b38-bbc1-1a076032c16e") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" - (reference "C13") - (unit 1) - ) - ) - ) - ) (symbol (lib_id "Device:C") (at 196.85 151.13 0) @@ -9961,195 +9808,6 @@ ) ) ) - (symbol - (lib_id "CM5IO:RT9742SNGV") - (at 213.36 151.13 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "00000000-0000-0000-0000-00005dad5ba8") - (property "Reference" "U12" - (at 215.9 140.589 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "RT9742SNGV" - (at 215.9 142.9004 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:TSOT-23_HandSoldering" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://www.richtek.com/assets/product_file/RT9742/DS9742-10.pdf" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "2575555" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "RT9742SNGV" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "RichTek" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Power Switch/Driver 1:1 N-Channel 500mA SOT-23-3" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "USWI00155" - (at 213.36 151.13 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "42b7a68a-3837-4773-af68-a35059da48c3") - ) - (pin "2" - (uuid "dfa2c928-7d9a-4cd3-90db-112716296421") - ) - (pin "3" - (uuid "b7340f23-0eaa-48ae-aea8-b5b53a0ae99a") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" - (reference "U12") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 229.87 154.94 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "00000000-0000-0000-0000-00005db8426d") - (property "Reference" "#PWR0136" - (at 229.87 161.29 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 229.997 159.3342 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 229.87 154.94 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 229.87 154.94 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 229.87 154.94 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "7cc510d9-2339-42a7-bb31-eff1142f0636") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" - (reference "#PWR0136") - (unit 1) - ) - ) - ) - ) (symbol (lib_id "power:GND") (at 196.85 154.94 0) @@ -10215,71 +9873,6 @@ ) ) ) - (symbol - (lib_id "power:GND") - (at 208.28 154.94 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "00000000-0000-0000-0000-00005dbbbebc") - (property "Reference" "#PWR0138" - (at 208.28 161.29 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 208.407 159.3342 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 208.28 154.94 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 208.28 154.94 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 208.28 154.94 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "7be13a36-eb8e-440f-aaac-2fd6665d9f61") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005cff70b1" - (reference "#PWR0138") - (unit 1) - ) - ) - ) - ) (symbol (lib_id "CM5IO:ComputeModule5-CM5") (at -71.12 86.36 0) From f7eb69929e98ee3e1b2b220b0d3c9af63ed9bd24 Mon Sep 17 00:00:00 2001 From: noise Date: Sat, 4 Jul 2026 09:31:11 -0400 Subject: [PATCH 12/16] =?UTF-8?q?Cut=20J11=20(USB-C=20prog)=20VBUS=20from?= =?UTF-8?q?=20+5v;=20drop=20R9=20bleed=20=E2=80=94=20fixes=20host-VBUS=20v?= =?UTF-8?q?s=20buck=20back-feed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reference is USB-C-powered so VBUS==+5v was correct there; carrier +5v is driven by U_BUCK5, so a plugged-in host would parallel its VBUS with the buck output. Per frozen Pinout_BOM §5 the prog port is D±+CC only. VBUS pins (A4/A9/B4/B9) now NC; CC1/CC2 stay wired to CM5 (module implements the PD sink per SC1466 — supersedes spec's discrete 5.1k Rd). R9 (2.2k VBUS bleed) removed with its GND. ERC 133->133 identical types; analyzer -4, 0 regressions. Co-Authored-By: Claude Fable 5 --- carrier/CM5IO.kicad_sch | 213 +--------------------------------------- 1 file changed, 4 insertions(+), 209 deletions(-) diff --git a/carrier/CM5IO.kicad_sch b/carrier/CM5IO.kicad_sch index 6bdcfdc..022d52f 100644 --- a/carrier/CM5IO.kicad_sch +++ b/carrier/CM5IO.kicad_sch @@ -1309,16 +1309,6 @@ ) (uuid "7aaa8496-fa91-4cdd-a95c-0fb4934a563f") ) - (wire - (pts - (xy 62.23 44.45) (xy 87.63 44.45) - ) - (stroke - (width 0) - (type default) - ) - (uuid "88848e1a-94f9-4abe-8312-936be7b01e84") - ) (wire (pts (xy 62.23 62.23) (xy 62.23 64.77) @@ -1635,17 +1625,6 @@ ) (uuid "ce8037f3-217c-4454-a069-39d88cd6d016") ) - (label "+5v" - (at 64.77 44.45 0) - (fields_autoplaced yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "d4106691-9af4-4d1a-b5eb-d17aeb47a3f6") - ) (symbol (lib_id "Mechanical:MountingHole") (at 22.86 180.975 0) @@ -2510,71 +2489,6 @@ ) ) ) - (symbol - (lib_id "power:GND") - (at 87.63 52.07 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "0f587d05-4aa1-46ea-a0c4-07798c4d83f9") - (property "Reference" "#PWR031" - (at 87.63 58.42 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Value" "GND" - (at 87.757 56.4642 0) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 87.63 52.07 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "" - (at 87.63 52.07 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 87.63 52.07 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "c7f90bb2-0431-4d78-adca-17ef654f711b") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR031") - (unit 1) - ) - ) - ) - ) (symbol (lib_id "Device:C") (at 83.82 76.2 0) @@ -2847,129 +2761,6 @@ ) ) ) - (symbol - (lib_id "Device:R") - (at 87.63 48.26 0) - (unit 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (uuid "b30c000d-795b-488f-8e69-a058391ab578") - (property "Reference" "R9" - (at 83.058 46.355 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "2.2K 1%" - (at 77.978 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric" - (at 85.852 48.26 90) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Datasheet" "https://fscdn.rohm.com/en/products/databook/datasheet/passive/resistor/chip_resistor/mcr-e.pdf" - (at 87.63 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Description" "" - (at 87.63 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field4" "Farnell" - (at 87.63 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field5" "" - (at 87.63 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field7" "" - (at 87.63 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field6" "" - (at 87.63 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Part Description" "Resistor 2.2K M1005 1% 63mW" - (at 87.63 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (property "Field8" "" - (at 87.63 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (hide yes) - ) - ) - (pin "1" - (uuid "31bcfe0a-bb6a-4e1b-98c4-465ef952edcd") - ) - (pin "2" - (uuid "b96ce79e-de64-4bb5-8b7f-4429c99aa19f") - ) - (instances - (project "CM5IO" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "R9") - (unit 1) - ) - ) - ) - ) (symbol (lib_id "Device:C") (at 72.39 76.2 0) @@ -3504,4 +3295,8 @@ (page "1") ) ) + (no_connect + (at 62.23 44.45) + (uuid "92dedbb3-318a-4c58-9fb6-5ae316135743") + ) ) From dbfe4b22f7e0511ecedb92c547e8fff42e91060f Mon Sep 17 00:00:00 2001 From: noise Date: Sat, 4 Jul 2026 09:31:55 -0400 Subject: [PATCH 13/16] =?UTF-8?q?C=5FBULK1=20100u=2025V->35V=20=E2=80=94?= =?UTF-8?q?=20must=20survive=20SMBJ18A=20clamp=20(<=3D29.2V=20at=20rated?= =?UTF-8?q?=20surge)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 25V electrolytic sat directly on VIN_PROT where the TVS clamps up to 29.2V; 35V-rated part in the same 8x10 can. Regen diff = 1 line. ERC 133->133; analyzer diff unchanged. Co-Authored-By: Claude Fable 5 --- carrier/Power.kicad_sch | 2 +- tools/build_power.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/carrier/Power.kicad_sch b/carrier/Power.kicad_sch index f29c18e..131b83d 100644 --- a/carrier/Power.kicad_sch +++ b/carrier/Power.kicad_sch @@ -2002,7 +2002,7 @@ (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "307c2b9f-38c6-58a7-8692-3a828d80213e") (property "Reference" "C_BULK1" (at 172.72 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) - (property "Value" "100u/25V" (at 172.72 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (property "Value" "100u/35V" (at 172.72 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:CP_Elec_8x10" (at 170.18 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 170.18 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 170.18 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) diff --git a/tools/build_power.py b/tools/build_power.py index 47b8fa8..b9916f3 100644 --- a/tools/build_power.py +++ b/tools/build_power.py @@ -201,7 +201,7 @@ place("Transistor_FET:Q_NMOS_GDS", "Q_REV", "CSD18540 (Vds>=30V)", "Package_TO_S 140, 90, {'1': 'GATE_REV', '2': 'VIN_PROT', '3': '+15V_IN'}) place("Device:C", "C_VCAP", "1u", "Capacitor_SMD:C_0402_1005Metric", 120, 100, {'1': 'VCAP_REV', '2': GND}) tvs = place("Device:D_TVS", "TVS_IN", "SMBJ18A", "Diode_SMD:D_SMB", 160, 80, {'1': 'VIN_PROT', '2': GND}) -place("Device:C_Polarized", "C_BULK1", "100u/25V", "Capacitor_SMD:CP_Elec_8x10", 170, 80, {'1': 'VIN_PROT', '2': GND}) +place("Device:C_Polarized", "C_BULK1", "100u/35V", "Capacitor_SMD:CP_Elec_8x10", 170, 80, {'1': 'VIN_PROT', '2': GND}) # 35V: must survive SMBJ18A clamp (<=29.2V surge) place("Device:C", "C_BULK2", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 180, 80, {'1': 'VIN_PROT', '2': GND}) # PWR_FLAGs co-located exactly on real pins so they bind: +15V_IN @ D_REV.6 (ANODE), # VIN_PROT @ TVS.1 (a power_in driver for VIN_PROT, needed once bucks consume it). From 8124b411bffb87940a8581a45f96c2641ee6e817 Mon Sep 17 00:00:00 2001 From: noise Date: Sat, 4 Jul 2026 09:35:29 -0400 Subject: [PATCH 14/16] =?UTF-8?q?Hygiene:=20digit-terminate=20all=20genera?= =?UTF-8?q?ted=20refdeses=20=E2=80=94=20clears=20kicad-cli=20annotation=20?= =?UTF-8?q?errors?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 33 component refs (J_E->J_E1, C_VCAP->C_VCAP1, C_IN5a->C_IN5a1, ...) plus 8 power-symbol refs (#FLG15IN->#FLG15IN1, #PWRC_E1g->#PWRC_E1g1, ...) now end in a digit; emit helpers normalize tags so future sheets stay clean. kicad-cli netlist annotation warning GONE. ERC 133->133 identical types; analyzer +73/-4/~0 unchanged; SPICE 24 pass / 2 benign warn / 0 fail. Co-Authored-By: Claude Fable 5 --- carrier/GPS_PPS.kicad_sch | 114 ++++---- carrier/M2_Ekey.kicad_sch | 30 +-- carrier/Power.kicad_sch | 528 +++++++++++++++++++------------------- tools/build_ekey.py | 9 +- tools/build_gps.py | 14 +- tools/build_power.py | 54 ++-- 6 files changed, 378 insertions(+), 371 deletions(-) diff --git a/carrier/GPS_PPS.kicad_sch b/carrier/GPS_PPS.kicad_sch index 0ac9d3d..6707e14 100644 --- a/carrier/GPS_PPS.kicad_sch +++ b/carrier/GPS_PPS.kicad_sch @@ -1155,18 +1155,18 @@ (at 59.69 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "7a076bd1-3589-5316-897d-6ab0d06183ba") - (property "Reference" "J_GPS" (at 62.23 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "4f27bcc3-fe35-57d4-bdd7-7401f34f978e") + (property "Reference" "J_GPS1" (at 62.23 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "GPS_5pin_PPS_UART" (at 62.23 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical" (at 59.69 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 59.69 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 59.69 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "2800b758-4e63-5406-9dc3-186319d34c26")) - (pin "2" (uuid "8629d0b8-e972-5f9e-a4bf-9c4d77598d49")) - (pin "3" (uuid "eb14636c-36ea-5f12-9638-ab5dbf1e88dc")) - (pin "4" (uuid "adc66aba-f702-5a90-ba64-00edf9d37c0f")) - (pin "5" (uuid "de9497d8-1db5-5818-ad9f-17088ecfc768")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "J_GPS") (unit 1)))) + (pin "1" (uuid "7c5d8c3f-cce3-5374-ba5b-44306aec9727")) + (pin "2" (uuid "80b042ce-fd50-5373-ab82-8a2d27cd8a75")) + (pin "3" (uuid "582342e6-abcd-51f1-b703-8a57b2cd7aff")) + (pin "4" (uuid "9721de5d-b26b-5962-bf0d-d90fc5178d9a")) + (pin "5" (uuid "48269ff7-9597-57ff-8f76-37d15390ed62")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "J_GPS1") (unit 1)))) ) (label "GPS_PPS_RAW" (at 54.61 74.93 0) @@ -1196,28 +1196,28 @@ (at 54.61 85.09 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "01e18e05-a999-5bec-930e-f710b0678f9c") - (property "Reference" "#PWRJ_GPS5" (at 54.61 88.09 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "647c79e2-1303-5fd4-8bcf-1023efe3f0c5") + (property "Reference" "#PWRJ_GPS15" (at 54.61 88.09 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 54.61 87.09 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 54.61 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 54.61 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "6f24e473-b057-5455-a8f6-b9f8c95bd2e0")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRJ_GPS5") (unit 1)))) + (pin "1" (uuid "d752166c-c018-56ba-a844-3a20be187493")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRJ_GPS15") (unit 1)))) ) (symbol (lib_id "Device:D_TVS") (at 85.09 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "9e9aee7c-1576-5761-afbb-0e9ea077ab86") - (property "Reference" "TVS_PPS" (at 87.63000000000001 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "c1101394-8315-5e9a-aa40-81e63e561002") + (property "Reference" "TVS_PPS1" (at 87.63000000000001 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "PESD3V3L1BA" (at 87.63000000000001 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Diode_SMD:D_SOD-323" (at 85.09 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 85.09 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 85.09 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "0bbe2ed0-ed29-5580-a5aa-d33761afc0a3")) - (pin "2" (uuid "d76dcdde-6b02-55f1-bd71-0bcaf3d2b329")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "TVS_PPS") (unit 1)))) + (pin "1" (uuid "d3926af7-9347-5d02-aaf7-b9c5335b2424")) + (pin "2" (uuid "dfb5b33b-dc6a-530b-978e-e555800bce59")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "TVS_PPS1") (unit 1)))) ) (label "GPS_PPS_RAW" (at 81.28 95.25 0) @@ -1229,31 +1229,31 @@ (at 88.9 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "0c7c62b4-f16d-5844-82d2-fb1373bab471") - (property "Reference" "#PWRTVS_PPS2" (at 88.9 98.25 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "692c8f56-cf02-50f2-95ee-7c754f67d483") + (property "Reference" "#PWRTVS_PPS12" (at 88.9 98.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 88.9 97.25 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 88.9 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 88.9 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "70ebf9ed-18f8-5f65-9320-3ca48ac752fb")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRTVS_PPS2") (unit 1)))) + (pin "1" (uuid "d43e17ff-22a1-524c-918f-da86220a7723")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRTVS_PPS12") (unit 1)))) ) (symbol (lib_id "74xGxx:74LVC1G17") (at 110.49 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "b9a5c7d5-1d79-5486-9853-8569ecb1c277") - (property "Reference" "U_PPS" (at 113.03 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "173623e0-6def-51e8-a796-83d0c80793c5") + (property "Reference" "U_PPS1" (at 113.03 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "74LVC1G17" (at 113.03 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" (at 110.49 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 110.49 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 110.49 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "1a1a2182-9411-5c6b-8833-bf2529edb275")) - (pin "2" (uuid "242d5819-8cf5-58ce-bd6d-0c2a2de6979b")) - (pin "3" (uuid "2cb9ef1c-5101-5f27-a2df-081cff8ac0a6")) - (pin "4" (uuid "6b04d93d-0dda-5fc4-b7f9-7cc4a4e96f59")) - (pin "5" (uuid "8a47cd9f-b4a4-5e36-ac7f-11c086d08151")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "U_PPS") (unit 1)))) + (pin "1" (uuid "9d3dfff9-72ef-5a0a-9622-b04061f9b419")) + (pin "2" (uuid "bf6c1218-0384-58f6-aef2-5d067c9b8f8c")) + (pin "3" (uuid "5ebdcaf2-e15c-5ffd-a9c8-8041c1e1b485")) + (pin "4" (uuid "21539873-1f2e-5876-900e-e1524dfe4afb")) + (pin "5" (uuid "16ccf057-3cad-5678-b45e-590ded0ffe66")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "U_PPS1") (unit 1)))) ) (label "GPS_PPS_RAW" (at 97.79 80.01 0) @@ -1276,29 +1276,29 @@ (at 105.41 90.17 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "150b7c14-ad6b-5275-86ea-8a7681618fe1") - (property "Reference" "#PWRU_PPS3" (at 105.41 93.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "cdfb90ac-dab7-5285-ab08-d77338ef0f36") + (property "Reference" "#PWRU_PPS13" (at 105.41 93.17 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 105.41 92.17 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 105.41 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 105.41 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "9e7034db-c1af-5d71-b106-8f708c4fd18e")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRU_PPS3") (unit 1)))) + (pin "1" (uuid "a02a99f8-4f4d-546e-8ceb-d2a022be078a")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRU_PPS13") (unit 1)))) ) - (no_connect (at 102.87 74.93) (uuid "f7cb859a-b2a2-52fc-8bf4-fbb0ad6f5c33")) + (no_connect (at 102.87 74.93) (uuid "d6a49c31-d4ab-5b76-aa0b-da425b8acb89")) (symbol (lib_id "Device:C") (at 100.33 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "0ee7ad07-7dd3-527f-b230-1f11a45b867e") - (property "Reference" "C_PPS" (at 102.87 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "7357e4fa-9fe4-5a41-9883-db5825d69857") + (property "Reference" "C_PPS1" (at 102.87 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "100n" (at 102.87 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 100.33 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 100.33 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 100.33 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "32b3a373-61a6-563b-a411-19c849e1ae47")) - (pin "2" (uuid "f9561ed0-6227-5d01-8a2e-9ce824637de9")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "C_PPS") (unit 1)))) + (pin "1" (uuid "33f4c458-dc28-5b29-be3b-4e9116ed9665")) + (pin "2" (uuid "91fadf2f-5269-5886-9be8-c0ff4053e8a9")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "C_PPS1") (unit 1)))) ) (global_label "+3V3_AUX" (shape input) @@ -1311,28 +1311,28 @@ (at 100.33 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "422ec18f-9697-5423-a10f-0e04a697658e") - (property "Reference" "#PWRC_PPS2" (at 100.33 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "ad750203-89d3-5581-80e4-ad5369324bbd") + (property "Reference" "#PWRC_PPS12" (at 100.33 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 100.33 101.06 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 100.33 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 100.33 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "2a23c7de-328c-5fc7-8008-4f91a4374ca6")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRC_PPS2") (unit 1)))) + (pin "1" (uuid "1617fba4-0efb-5fa9-93ef-e977e782868f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRC_PPS12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 69.85 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "f69070b4-27bb-5123-995b-1bcd40a2ac1f") - (property "Reference" "C_GPS" (at 72.39 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "14a38a83-0121-570a-9aa7-a0ce15c0daa1") + (property "Reference" "C_GPS1" (at 72.39 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "10u" (at 72.39 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 69.85 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 69.85 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 69.85 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "bd0e3c17-a76b-5372-badd-1b2f9e849915")) - (pin "2" (uuid "a8c446db-7686-5485-b6bd-ceb0a29e779c")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "C_GPS") (unit 1)))) + (pin "1" (uuid "2affcab1-49c1-5346-8e2e-08a12ec28332")) + (pin "2" (uuid "8f3f3fd8-14d0-5c16-9289-f573603f0120")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "C_GPS1") (unit 1)))) ) (global_label "+3V3_AUX" (shape input) @@ -1345,28 +1345,28 @@ (at 69.85 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "4f1bc8a1-6fed-5585-99e9-762c65b4838f") - (property "Reference" "#PWRC_GPS2" (at 69.85 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "895d1f98-37a2-5ae0-ac10-c4fecd5d65a9") + (property "Reference" "#PWRC_GPS12" (at 69.85 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 69.85 101.06 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 69.85 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 69.85 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "a71f135c-ae41-5218-aa40-00fcf83a461f")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRC_GPS2") (unit 1)))) + (pin "1" (uuid "ebc8eec2-8b7e-5014-b287-9f708e0e091f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "#PWRC_GPS12") (unit 1)))) ) (symbol (lib_id "Device:R") (at 139.7 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "249ff202-abac-547f-bce5-9b1af41e5ce6") - (property "Reference" "R_PPS" (at 142.23999999999998 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "4133ee59-513b-5828-8746-5ef950568b4d") + (property "Reference" "R_PPS1" (at 142.23999999999998 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "33" (at 142.23999999999998 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 139.7 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 139.7 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 139.7 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "7bb99321-fcc6-5c6a-980b-49f4c1a8b53c")) - (pin "2" (uuid "1be0babc-6c15-5a07-bfb9-01f0fc283e8b")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "R_PPS") (unit 1)))) + (pin "1" (uuid "03c81412-548d-5321-9215-96803c037dd5")) + (pin "2" (uuid "853807ec-fab1-5700-b01a-39893d7f090c")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/5efffb63-edbb-5986-86d3-84ead412bc65" (reference "R_PPS1") (unit 1)))) ) (label "PPS_CLEAN" (at 139.7 76.2 0) diff --git a/carrier/M2_Ekey.kicad_sch b/carrier/M2_Ekey.kicad_sch index 361a872..0560254 100644 --- a/carrier/M2_Ekey.kicad_sch +++ b/carrier/M2_Ekey.kicad_sch @@ -1802,8 +1802,8 @@ (at 170.18 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "c5b68be4-c170-5c81-8da1-d4c9e4c5c682") - (property "Reference" "J_E" (at 170 53 0) (effects (font (size 1.27 1.27)))) + (uuid "9cfd8f15-0052-56b6-a872-7bc1d714bd78") + (property "Reference" "J_E1" (at 170 53 0) (effects (font (size 1.27 1.27)))) (property "Value" "M.2_Ekey_WiFi" (at 170 55 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "Connector_PCBEdge:M.2_2230-xx-E" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes))) @@ -1875,7 +1875,7 @@ (pin "73" (uuid "4d023968-563b-594c-8828-90b959a69fbc")) (pin "74" (uuid "3feab80a-f23d-57f7-be7f-16fb7efc0cc4")) (pin "75" (uuid "8e0a1780-b855-573b-93d8-0cb618e05b8e")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "J_E") (unit 1)))) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "J_E1") (unit 1)))) ) (global_label "PCIE_TX_P" (shape input) @@ -2224,13 +2224,13 @@ (at 214.63 114.3 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "16d1ee5f-7d20-5f3d-ada1-ed9e5154bc76") - (property "Reference" "#PWRC_E1g" (at 214.63 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "fc3f2eea-dc38-5565-8d22-180c3e7a31bd") + (property "Reference" "#PWRC_E1g1" (at 214.63 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 214.63 116.3 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 214.63 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 214.63 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "f81e6b93-0385-5c25-9d9f-a753ae73f11c")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E1g") (unit 1)))) + (pin "1" (uuid "477507a7-dd98-57ff-a0c7-78bb4bc6759f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E1g1") (unit 1)))) ) (symbol (lib_id "Device:C") @@ -2257,13 +2257,13 @@ (at 222.25 114.3 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "649014b2-7027-547c-8fae-c42cdec405a4") - (property "Reference" "#PWRC_E2g" (at 222.25 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "8880f2d0-fa49-5451-9445-120a7162fc7b") + (property "Reference" "#PWRC_E2g1" (at 222.25 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 222.25 116.3 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 222.25 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 222.25 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "21ee945b-167e-5eb2-ad27-7bfcf5e00d73")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E2g") (unit 1)))) + (pin "1" (uuid "0e0779c5-5cde-5daa-91bf-5b61d357cb25")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E2g1") (unit 1)))) ) (symbol (lib_id "Device:C") @@ -2290,13 +2290,13 @@ (at 229.87 114.3 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "d1e54328-43fe-5fb8-9c85-ccdc06cb33c3") - (property "Reference" "#PWRC_E3g" (at 229.87 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "a1a7410f-74ff-5776-850d-1b5bd9d7abfc") + (property "Reference" "#PWRC_E3g1" (at 229.87 117.3 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 229.87 116.3 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 229.87 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 229.87 114.3 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "4b6d8ed9-33cb-576b-b25a-4d7450c86b69")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E3g") (unit 1)))) + (pin "1" (uuid "baf3d2ab-371e-5ce8-9eaf-c20627ee3dcf")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/c57f5f03-e2c5-5c1b-ba90-8072a2a088a0" (reference "#PWRC_E3g1") (unit 1)))) ) (sheet_instances (path "/" diff --git a/carrier/Power.kicad_sch b/carrier/Power.kicad_sch index 131b83d..14f6d7d 100644 --- a/carrier/Power.kicad_sch +++ b/carrier/Power.kicad_sch @@ -1813,15 +1813,15 @@ (at 80.01 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "138ccd89-316e-5500-a880-7404227f9795") - (property "Reference" "J_PWR" (at 82.55000000000001 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "2a21886a-4898-5f61-8ece-f50a375daa61") + (property "Reference" "J_PWR1" (at 82.55000000000001 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "15V_DC_IN" (at 82.55000000000001 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal" (at 80.01 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 80.01 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 80.01 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "32ee5f27-8526-5407-aaa5-2624a8431ab2")) - (pin "2" (uuid "c97b89b9-8fc6-50bc-86b9-2b4d1e9aa61b")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "J_PWR") (unit 1)))) + (pin "1" (uuid "3b0fbec1-f894-569d-b72d-65251d0ae4b7")) + (pin "2" (uuid "0d4a8f09-d9ac-5fe7-b2d2-ee7565e05b30")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "J_PWR1") (unit 1)))) ) (label "+15V_IN" (at 74.93 80.01 0) @@ -1833,32 +1833,32 @@ (at 74.93 82.55 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "8def5da0-db83-5909-a5b9-32339f4cb34b") - (property "Reference" "#PWRJ_PWR2" (at 74.93 85.55 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "73a7f113-5293-5cbc-b84c-d6817c5e51ab") + (property "Reference" "#PWRJ_PWR12" (at 74.93 85.55 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 74.93 84.55 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 74.93 82.55 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 74.93 82.55 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "1deae2c7-a33b-55bc-8f85-710875dc61eb")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRJ_PWR2") (unit 1)))) + (pin "1" (uuid "8291d3a7-f3e0-5aed-97f0-c77436a7fff1")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRJ_PWR12") (unit 1)))) ) (symbol (lib_id "Power_Management:LM74700") (at 119.38 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "e1d47221-0b9d-5e63-9c6b-2f617f5b1bb0") - (property "Reference" "D_REV" (at 121.92 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "35d96471-21e7-51ab-9f3a-49b12a41f524") + (property "Reference" "D_REV1" (at 121.92 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "LM74700-Q1" (at 121.92 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 119.38 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 119.38 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 119.38 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "93e07f85-de89-51b3-b20e-46d6f423cc5a")) - (pin "2" (uuid "cf6745a0-40a2-5342-b0be-a3f9b6729aa6")) - (pin "3" (uuid "bd09d25c-11ed-5241-a16a-d5532b0e266a")) - (pin "4" (uuid "c867d754-56c1-502e-896f-4ee34d25f950")) - (pin "5" (uuid "2bf914a5-e64b-588d-8a13-468583e7a939")) - (pin "6" (uuid "1f815a26-d4c1-5179-b6e2-12b4cff852cd")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "D_REV") (unit 1)))) + (pin "1" (uuid "4d36eed2-81bf-5600-b5b1-e996be7fe4db")) + (pin "2" (uuid "041d56c4-2751-5f61-a57d-1954c2ab472f")) + (pin "3" (uuid "c5e5bf51-a68e-567e-9c8c-787c3c6ec861")) + (pin "4" (uuid "351c613a-4baa-5b1d-b1e0-0ade3716ddd4")) + (pin "5" (uuid "c256ad1f-2aec-5890-bf10-64d2b512bc08")) + (pin "6" (uuid "c166fd2c-102b-58e4-8e27-30b76c6f4a20")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "D_REV1") (unit 1)))) ) (label "+15V_IN" (at 111.76 69.85 0) @@ -1890,29 +1890,29 @@ (at 119.38 90.17 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "f9767a09-25e4-52e9-a73f-aca3afe030a4") - (property "Reference" "#PWRD_REV2" (at 119.38 93.17 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "c1edde45-f193-55e4-bc4c-d968e66eda74") + (property "Reference" "#PWRD_REV12" (at 119.38 93.17 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 119.38 92.17 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 119.38 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 119.38 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "4a09d51f-8a89-55f3-a1d8-27d95495670a")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRD_REV2") (unit 1)))) + (pin "1" (uuid "a9c98411-12a8-54f5-9af1-5b15be507dd5")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRD_REV12") (unit 1)))) ) (symbol (lib_id "Transistor_FET:Q_NMOS_GDS") (at 139.7 90.17 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "ef966840-dbbf-56d1-97bb-f4f2fd044f98") - (property "Reference" "Q_REV" (at 142.23999999999998 89.17 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "aeabdfaf-875c-581f-bfcf-f4531ce77fc6") + (property "Reference" "Q_REV1" (at 142.23999999999998 89.17 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "CSD18540 (Vds>=30V)" (at 142.23999999999998 91.17 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Package_TO_SOT_SMD:TO-263-2" (at 139.7 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 139.7 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 139.7 90.17 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "94370b7d-192e-53f7-b251-68df884a1fff")) - (pin "2" (uuid "99de816e-caa0-527a-a8d0-ef007cc8acb0")) - (pin "3" (uuid "86396f6b-7a08-5266-b2ee-d077f878dd92")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "Q_REV") (unit 1)))) + (pin "1" (uuid "46c1ffb3-252c-53df-83aa-5e12f38fb1c3")) + (pin "2" (uuid "b3df9018-1a9f-581b-a45e-9914113a3679")) + (pin "3" (uuid "a9d56179-3f0b-58d3-90a6-0a45ab6e0851")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "Q_REV1") (unit 1)))) ) (label "GATE_REV" (at 134.62 90.17 0) @@ -1934,15 +1934,15 @@ (at 119.38 100.33 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "e663a40a-0120-5745-ae82-4ba6f6493de7") - (property "Reference" "C_VCAP" (at 121.92 99.33 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "7c963135-f5d8-5afd-b618-912f6a3f3db3") + (property "Reference" "C_VCAP1" (at 121.92 99.33 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "1u" (at 121.92 101.33 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 119.38 100.33 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 119.38 100.33 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 119.38 100.33 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "ee6cb68c-edba-5f32-aec9-77a20a0c8af4")) - (pin "2" (uuid "c8d009ee-0f10-5832-8bd2-d7d0964a4297")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_VCAP") (unit 1)))) + (pin "1" (uuid "3ab0a364-2724-506b-afda-cef0316eabd1")) + (pin "2" (uuid "d3085580-e759-5b14-8cae-8002c2fa357a")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_VCAP1") (unit 1)))) ) (label "VCAP_REV" (at 119.38 96.52 0) @@ -1954,28 +1954,28 @@ (at 119.38 104.14 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "4ab12bfc-dd31-59f3-9d55-00ce58765061") - (property "Reference" "#PWRC_VCAP2" (at 119.38 107.14 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "d851e3fa-1f21-5dab-89da-68bb505d2bce") + (property "Reference" "#PWRC_VCAP12" (at 119.38 107.14 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 119.38 106.14 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 119.38 104.14 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 119.38 104.14 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "7ad03b45-36a7-5dd2-b4b5-aa8d8d2bae6b")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_VCAP2") (unit 1)))) + (pin "1" (uuid "c4dee2d0-15d1-5547-b557-498bfbe176f2")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_VCAP12") (unit 1)))) ) (symbol (lib_id "Device:D_TVS") (at 160.02 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "cdc750b8-ea53-5f55-ac5d-7788ac206958") - (property "Reference" "TVS_IN" (at 162.56 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "94c3232b-cfc8-5328-b345-e4e9adda1fa7") + (property "Reference" "TVS_IN1" (at 162.56 79.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "SMBJ18A" (at 162.56 81.01 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Diode_SMD:D_SMB" (at 160.02 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 160.02 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 160.02 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "897afdc2-3b0c-5c38-b6a9-3ee119f7ffd6")) - (pin "2" (uuid "4b2bf424-5028-5456-8022-7deb26c87c66")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "TVS_IN") (unit 1)))) + (pin "1" (uuid "fbfc4f4d-85b0-58c5-bf17-2e0e3b401e18")) + (pin "2" (uuid "a33cc0ae-59c0-59cf-9e4d-fd59fcba7c07")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "TVS_IN1") (unit 1)))) ) (label "VIN_PROT" (at 156.21 80.01 0) @@ -1987,13 +1987,13 @@ (at 163.83 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "3855c4fe-b4f0-5737-b42d-d3ca4d8cfadb") - (property "Reference" "#PWRTVS_IN2" (at 163.83 83.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "9ff424a3-1e5e-5b51-8ee0-d391ee3d48cc") + (property "Reference" "#PWRTVS_IN12" (at 163.83 83.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 163.83 82.01 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 163.83 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 163.83 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "325a832a-c3a0-5b01-8994-7c42cb9dae92")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRTVS_IN2") (unit 1)))) + (pin "1" (uuid "818f5b0d-0d9d-5352-95d2-51257830711f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRTVS_IN12") (unit 1)))) ) (symbol (lib_id "Device:C_Polarized") @@ -2066,26 +2066,26 @@ (at 111.76 69.85 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "f46453fa-0c06-59df-bc14-5d0d93dd5c2e") - (property "Reference" "#FLG15IN" (at 111.76 66.85 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "a98a239c-cd5b-502d-add0-db988b41fef6") + (property "Reference" "#FLG15IN1" (at 111.76 66.85 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "PWR_FLAG" (at 111.76 67.85 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 111.76 69.85 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 111.76 69.85 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "a1220450-13c7-5513-9e4c-61b56f70e298")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLG15IN") (unit 1)))) + (pin "1" (uuid "39afd1ab-5b1f-5f92-a8c2-f85ae4f9f7c3")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLG15IN1") (unit 1)))) ) (symbol (lib_id "power:PWR_FLAG") (at 156.21 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "48ae8b91-206b-5bbd-a09f-c76f2def09a0") - (property "Reference" "#FLGVINP" (at 156.21 77.01 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "249e96fd-3549-5e9a-a5f9-2714033ae9ff") + (property "Reference" "#FLGVINP1" (at 156.21 77.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "PWR_FLAG" (at 156.21 78.01 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 156.21 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 156.21 80.01 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "fcebb774-28ce-5368-b1fb-89af26485295")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGVINP") (unit 1)))) + (pin "1" (uuid "f95feca6-9298-5c5d-a77b-c61fcf7f5b1c")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGVINP1") (unit 1)))) ) (symbol (lib_id "CM5IO:LM61460-Q1") @@ -2455,15 +2455,15 @@ (at 95.25 144.78 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "cb788cd9-b27d-59f0-8f3c-78ae097be890") - (property "Reference" "C_IN5a" (at 97.79 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "5a500e40-270b-5f42-9d46-2139ffa1674c") + (property "Reference" "C_IN5a1" (at 97.79 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "10u/50V" (at 97.79 145.78 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 95.25 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 95.25 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 95.25 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "2c8313c1-74d4-58aa-8123-1a255a1d3d92")) - (pin "2" (uuid "0239ef31-8bf8-5e3f-bf07-4dbdec86e3f0")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN5a") (unit 1)))) + (pin "1" (uuid "491f5909-2093-5dd0-8510-07a7047dd5f6")) + (pin "2" (uuid "5425cba3-7925-5fca-b0ca-73905f592aa3")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN5a1") (unit 1)))) ) (label "VIN_PROT" (at 95.25 140.97 0) @@ -2475,28 +2475,28 @@ (at 95.25 148.59 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "c8953dbb-d6ee-5b90-98ea-51420e0daa46") - (property "Reference" "#PWRC_IN5a2" (at 95.25 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "8c7a1f54-3044-516e-84e2-812890315dd2") + (property "Reference" "#PWRC_IN5a12" (at 95.25 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 95.25 150.59 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 95.25 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 95.25 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "46cedf4f-023b-5db9-b6be-f93e80607683")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN5a2") (unit 1)))) + (pin "1" (uuid "a1c44a12-33fc-5205-a98a-f8173458b89e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN5a12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 100.33 144.78 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "238c20f2-87e3-5eb2-bca4-9c10da2bdfef") - (property "Reference" "C_IN5b" (at 102.87 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "8a65038f-7bc7-5ccb-a6ac-a72e981a46c7") + (property "Reference" "C_IN5b1" (at 102.87 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "10u/50V" (at 102.87 145.78 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 100.33 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 100.33 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 100.33 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "0d9fab8e-36ce-585c-b603-de13fb820eb3")) - (pin "2" (uuid "7be21ee0-7f10-5b13-aae2-a442bc625bee")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN5b") (unit 1)))) + (pin "1" (uuid "3e750e98-b6e7-5bfb-8b19-a8b9636428f8")) + (pin "2" (uuid "3cc3e62f-c540-5c7c-a222-52a735d2d137")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN5b1") (unit 1)))) ) (label "VIN_PROT" (at 100.33 140.97 0) @@ -2508,28 +2508,28 @@ (at 100.33 148.59 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "6cf0cfe4-51a6-50c7-8b1f-846c52e4cb13") - (property "Reference" "#PWRC_IN5b2" (at 100.33 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "9a1ab5db-9b39-50fb-8036-dcaaf15a1e37") + (property "Reference" "#PWRC_IN5b12" (at 100.33 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 100.33 150.59 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 100.33 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 100.33 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "411d98e4-f020-55af-b3d6-6960ce47e7dc")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN5b2") (unit 1)))) + (pin "1" (uuid "b001ea71-7f9e-5126-9a94-54ec6df7f933")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN5b12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 175.26 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "8593b239-c9b1-598f-b0d2-8b84204149ee") - (property "Reference" "C_OUT5a" (at 177.79999999999998 137.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "dd127f02-46a6-56f9-a3c8-70cf3b06f42c") + (property "Reference" "C_OUT5a1" (at 177.79999999999998 137.43 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "47u/16V" (at 177.79999999999998 139.43 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 175.26 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 175.26 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 175.26 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "98a691a6-cfb6-5f28-8297-fc4c607f17dd")) - (pin "2" (uuid "a8b3e983-a1fa-5da7-807b-e7b7677ddaaa")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT5a") (unit 1)))) + (pin "1" (uuid "40ca6585-7d80-56de-811a-4c0d277d234e")) + (pin "2" (uuid "16255090-5711-5bd9-b8c8-d0d752a58955")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT5a1") (unit 1)))) ) (hierarchical_label "+5v" (shape passive) @@ -2542,28 +2542,28 @@ (at 175.26 142.24 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "b9361e54-0737-51f4-9f0d-3a1fe5b256b7") - (property "Reference" "#PWRC_OUT5a2" (at 175.26 145.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "474d58a3-8a0b-5efe-acc9-eb372153540e") + (property "Reference" "#PWRC_OUT5a12" (at 175.26 145.24 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 175.26 144.24 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 175.26 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 175.26 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "e7490cc1-8a64-5ef2-97f8-a36a33982ae3")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT5a2") (unit 1)))) + (pin "1" (uuid "1867a1bb-400e-5a84-ab3c-515317afd77e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT5a12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 180.34 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "56b8cdc4-efb6-5bed-8edd-3547eae2ffdf") - (property "Reference" "C_OUT5b" (at 182.88 137.43 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "169c87e3-17e3-5476-bd96-75eefa35875f") + (property "Reference" "C_OUT5b1" (at 182.88 137.43 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "47u/16V" (at 182.88 139.43 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 180.34 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 180.34 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 180.34 138.43 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "939b4e50-1889-5cc1-bcf1-330755205961")) - (pin "2" (uuid "b80e94ed-02de-555f-992d-5d77ef3b8d39")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT5b") (unit 1)))) + (pin "1" (uuid "f2b2400c-3fa6-5204-854c-b4c2179df942")) + (pin "2" (uuid "1a6e80a9-3d83-5caa-a6e0-4671042f4eff")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT5b1") (unit 1)))) ) (hierarchical_label "+5v" (shape passive) @@ -2576,54 +2576,54 @@ (at 180.34 142.24 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "2b318152-7c85-558b-a008-2421e50766b8") - (property "Reference" "#PWRC_OUT5b2" (at 180.34 145.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "ac41a30a-65a6-5cb7-9598-ca20b2b9569d") + (property "Reference" "#PWRC_OUT5b12" (at 180.34 145.24 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 180.34 144.24 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 180.34 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 180.34 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "191c0e1c-9ee5-5262-a248-5b53330a02b6")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT5b2") (unit 1)))) + (pin "1" (uuid "d77795be-ec1b-5b2c-9cd7-f4d1d6b352a9")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT5b12") (unit 1)))) ) (symbol (lib_id "power:PWR_FLAG") (at 149.86 142.24 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "9fc034bc-7e4a-56da-aae8-b4dab1533968") - (property "Reference" "#FLGP5V" (at 149.86 139.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "7d922866-8d93-5c8a-8939-b0a8e04969db") + (property "Reference" "#FLGP5V1" (at 149.86 139.24 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "PWR_FLAG" (at 149.86 140.24 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 149.86 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 149.86 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "27e0e6b7-4281-5c4d-b9d6-26200e20eae9")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP5V") (unit 1)))) + (pin "1" (uuid "bc0bcc00-072f-5e91-8436-60c3f7d9f147")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP5V1") (unit 1)))) ) (symbol (lib_id "CM5IO:LM61460-Q1") (at 229.87 149.86 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "046070ba-66fb-59cc-98a8-53761c19a7e1") - (property "Reference" "U_BUCK33R" (at 232.41 148.86 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "1cb3f01b-5e4f-59a6-a49b-5a28257f58b4") + (property "Reference" "U_BUCK33R1" (at 232.41 148.86 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "LM61460-Q1" (at 232.41 150.86 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias" (at 229.87 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 229.87 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 229.87 149.86 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "da577313-4e1a-5f91-b7d8-960d0fb4836c")) - (pin "2" (uuid "249cfe65-2f70-5264-9499-3fe669a6c397")) - (pin "3" (uuid "22366cf7-2a57-5569-81ad-575461026da7")) - (pin "4" (uuid "f1fb0dfb-2df7-5bec-8838-65e99bc490cf")) - (pin "5" (uuid "716461bc-0a8d-53e3-9ace-71cb12ba83c7")) - (pin "6" (uuid "e269d70e-36d7-59bc-a043-b45077f572bf")) - (pin "7" (uuid "193ab7bf-5ef1-572e-bbf2-3b6404692c97")) - (pin "8" (uuid "1d89675f-9645-5665-a653-b5f422027dd2")) - (pin "9" (uuid "d2fe1512-c325-591b-bda8-e94c89b51063")) - (pin "10" (uuid "8c4ef216-239c-5b67-b0d9-cb0c26426dd3")) - (pin "11" (uuid "34382b88-a790-587f-b390-6555f56d93c0")) - (pin "12" (uuid "c4877149-42e0-5804-aa78-a0be3c4cb486")) - (pin "13" (uuid "a2b26205-9cce-59bf-80b5-4955f0a1a421")) - (pin "14" (uuid "36ab0c65-d586-5540-b3d0-5b3ae11a7ac9")) - (pin "15" (uuid "8b01e30f-5e3f-58b5-92e1-510de24ac156")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "U_BUCK33R") (unit 1)))) + (pin "1" (uuid "a2c0ce02-eb60-5e82-bef9-77288e57ee27")) + (pin "2" (uuid "96a9ff09-14e4-5326-9449-d87aca947365")) + (pin "3" (uuid "e65c7b47-8eff-540f-ae37-3bb1339ac3b7")) + (pin "4" (uuid "e17068d0-8476-5053-bd2a-159817d4c3ad")) + (pin "5" (uuid "2502ce46-2a14-58e8-a72c-e0b2b4948dcf")) + (pin "6" (uuid "0e197eb2-ccb2-5079-b957-925e9bfbe056")) + (pin "7" (uuid "e422748c-2317-5bd9-88bf-5719bee2bc0d")) + (pin "8" (uuid "fe435927-a497-5430-8cb5-01249df6d04d")) + (pin "9" (uuid "aa04505b-8887-5da4-977f-0b6b23b500be")) + (pin "10" (uuid "0ba0678a-6739-585a-aa2e-38868f7ab611")) + (pin "11" (uuid "56d9c912-9ba7-5f39-a834-25289dd559f2")) + (pin "12" (uuid "69283868-4834-587b-9654-695af90922eb")) + (pin "13" (uuid "a299ed1e-7a2b-5d42-94eb-88bbac221a0c")) + (pin "14" (uuid "dc9bcc8b-1776-588f-ac2a-8c443f4a8c3e")) + (pin "15" (uuid "4676c8ac-ab18-5909-baea-7a49dffb0c9b")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "U_BUCK33R1") (unit 1)))) ) (label "VIN_PROT" (at 213.36 134.62 0) @@ -2687,52 +2687,52 @@ (at 222.25 171.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "4ebe1cbb-72aa-5e10-9d5c-e576b0fe6f6a") - (property "Reference" "#PWRU_BUCK33R9" (at 222.25 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "a4703150-00e9-5b13-a0ac-cc0dbac6b3fa") + (property "Reference" "#PWRU_BUCK33R19" (at 222.25 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 222.25 173.45 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 222.25 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 222.25 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "cca34353-a27f-52e2-8311-fd46bd209b07")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R9") (unit 1)))) + (pin "1" (uuid "d0bea2b4-fb52-5c8d-a752-14dee0cdc1f0")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R19") (unit 1)))) ) (symbol (lib_id "power:GND") (at 227.33 171.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "0d05abc2-e5be-5ff0-949b-eef3c8f7602f") - (property "Reference" "#PWRU_BUCK33R11" (at 227.33 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "c60d25cb-5064-5e37-95b7-f84e021d3ed3") + (property "Reference" "#PWRU_BUCK33R111" (at 227.33 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 227.33 173.45 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 227.33 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 227.33 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "3f7fd57b-f01b-5f95-9404-e387ca54de28")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R11") (unit 1)))) + (pin "1" (uuid "a2dc7f6f-d3f8-5c73-8968-2cc54f2062f4")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R111") (unit 1)))) ) (symbol (lib_id "power:GND") (at 232.41 171.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "4ca5195d-104e-533d-86f5-56588188f871") - (property "Reference" "#PWRU_BUCK33R3" (at 232.41 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "3bf0b340-4763-56f5-9f94-484026d48e6b") + (property "Reference" "#PWRU_BUCK33R13" (at 232.41 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 232.41 173.45 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 232.41 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 232.41 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "0676173c-01c9-5a0b-884a-a3314980e9aa")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R3") (unit 1)))) + (pin "1" (uuid "48a70bff-7091-5686-af66-557729df0889")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R13") (unit 1)))) ) (symbol (lib_id "power:GND") (at 237.49 171.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "f3770f03-efc9-52f8-9cca-ed26a6270536") - (property "Reference" "#PWRU_BUCK33R15" (at 237.49 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "66a73a37-d646-5cad-a77f-d21739e73bf5") + (property "Reference" "#PWRU_BUCK33R115" (at 237.49 174.45 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 237.49 173.45 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 237.49 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 237.49 171.45 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "7a121dd3-1db2-51d3-91fb-614b51559b7a")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R15") (unit 1)))) + (pin "1" (uuid "2263a551-958c-5329-93c7-7f2584de4efa")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33R115") (unit 1)))) ) (symbol (lib_id "Device:L") @@ -3000,15 +3000,15 @@ (at 214.63 144.78 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "94b3b847-d50c-502e-845f-383389f88654") - (property "Reference" "C_IN33a" (at 217.17 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "175d12df-b132-52e6-b3b7-37dbbb35e8cc") + (property "Reference" "C_IN33a1" (at 217.17 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "10u/50V" (at 217.17 145.78 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 214.63 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 214.63 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 214.63 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "7c8f0e89-cf6a-5015-8305-f125efacf607")) - (pin "2" (uuid "eb0f42eb-d29f-5c56-b051-900bcf0e105f")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33a") (unit 1)))) + (pin "1" (uuid "2aa19f18-6996-580b-9e30-bed8422183af")) + (pin "2" (uuid "dabaa2e5-8d0e-5f0e-a9da-af8013473bd4")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33a1") (unit 1)))) ) (label "VIN_PROT" (at 214.63 140.97 0) @@ -3020,28 +3020,28 @@ (at 214.63 148.59 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "b74a41c4-abe7-5465-8dfd-4786c07f29c8") - (property "Reference" "#PWRC_IN33a2" (at 214.63 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "bd358514-adc5-58e3-862e-acd7948f862a") + (property "Reference" "#PWRC_IN33a12" (at 214.63 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 214.63 150.59 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 214.63 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 214.63 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "02dcb4d5-2ee7-5711-8b87-a08e74a6903e")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33a2") (unit 1)))) + (pin "1" (uuid "033394cd-78bd-5578-842c-a59e2a1a733d")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33a12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 219.71 144.78 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "616110ea-0dde-54b6-a215-f54b853fc149") - (property "Reference" "C_IN33b" (at 222.25 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "b7ddabd7-943e-5758-be5b-63180eb4c6a2") + (property "Reference" "C_IN33b1" (at 222.25 143.78 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "10u/50V" (at 222.25 145.78 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 219.71 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 219.71 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 219.71 144.78 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "d50ea177-80fa-5e4b-824f-d8e5cb8e447d")) - (pin "2" (uuid "866526b8-2ac6-5581-9547-b8c127e41db2")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33b") (unit 1)))) + (pin "1" (uuid "40483dde-1a40-5e9e-be0a-0bc9f0ebc3c0")) + (pin "2" (uuid "134949f4-dda1-57a7-bb50-141b850be9cb")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33b1") (unit 1)))) ) (label "VIN_PROT" (at 219.71 140.97 0) @@ -3053,28 +3053,28 @@ (at 219.71 148.59 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "b643f755-ad2f-5ae8-a86a-f44a4863f881") - (property "Reference" "#PWRC_IN33b2" (at 219.71 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "101d46c7-239f-516f-bafd-79f4fbe3c9bc") + (property "Reference" "#PWRC_IN33b12" (at 219.71 151.59 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 219.71 150.59 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 219.71 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 219.71 148.59 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "14703df6-1676-5d8a-90fa-e985a19b1086")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33b2") (unit 1)))) + (pin "1" (uuid "b0dad681-c52f-5750-8166-91c45e1a414f")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33b12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 240.03 165.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "fdc94bd4-09de-5bea-8175-a52557ba0f5b") - (property "Reference" "C_OUT33a" (at 242.57 164.1 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "613325c0-9a1e-53a7-88db-57817b369c78") + (property "Reference" "C_OUT33a1" (at 242.57 164.1 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "47u/16V" (at 242.57 166.1 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 240.03 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 240.03 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 240.03 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "84c5524c-0ff9-5213-a7c4-74c7d8feef43")) - (pin "2" (uuid "8faa8290-45a3-5c91-befe-20653856b15f")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33a") (unit 1)))) + (pin "1" (uuid "95d7f089-3363-59f1-b82e-d024059b60d3")) + (pin "2" (uuid "e8d3557f-a69c-50bc-84d5-4f761d8dac31")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33a1") (unit 1)))) ) (global_label "+3V3_RF" (shape input) @@ -3087,28 +3087,28 @@ (at 240.03 168.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "ec20a721-8c6a-571e-9f3e-d1ca8b41f544") - (property "Reference" "#PWRC_OUT33a2" (at 240.03 171.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "b559e27f-b0a4-5414-aeab-5045e99af969") + (property "Reference" "#PWRC_OUT33a12" (at 240.03 171.91 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 240.03 170.91 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 240.03 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 240.03 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "3bad6947-dcca-5592-9aec-ffcc8a7fddeb")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33a2") (unit 1)))) + (pin "1" (uuid "c123c5bd-6849-5386-acc3-0353ea0e699e")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33a12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 245.11 165.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "445475c3-e364-5c31-ad95-90047644c5b9") - (property "Reference" "C_OUT33b" (at 247.65 164.1 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "4cd1de2b-849a-5779-ab3e-67f748dce839") + (property "Reference" "C_OUT33b1" (at 247.65 164.1 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "47u/16V" (at 247.65 166.1 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 245.11 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 245.11 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 245.11 165.1 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "7aa57847-73b5-5c05-b767-bb62ce89d618")) - (pin "2" (uuid "69d9a762-5886-5ab1-b7ed-06843f7d57e4")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33b") (unit 1)))) + (pin "1" (uuid "783fad6c-3791-5925-a52a-67db9400054a")) + (pin "2" (uuid "2ffc2471-9676-5be3-94fa-c96cb0edbed2")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33b1") (unit 1)))) ) (global_label "+3V3_RF" (shape input) @@ -3121,45 +3121,45 @@ (at 245.11 168.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "af36ee75-239f-5915-a82d-a734af60520e") - (property "Reference" "#PWRC_OUT33b2" (at 245.11 171.91 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "9a02bffd-a384-5f82-9ed9-a6eef9138940") + (property "Reference" "#PWRC_OUT33b12" (at 245.11 171.91 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 245.11 170.91 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 245.11 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 245.11 168.91 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "a80d941d-9847-5500-bc99-f819ef1b4111")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33b2") (unit 1)))) + (pin "1" (uuid "4b16b70f-366f-56ec-b970-478d43671528")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33b12") (unit 1)))) ) (symbol (lib_id "power:PWR_FLAG") (at 270.51 142.24 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "1303478c-fb2d-5112-9517-fee0895b93f1") - (property "Reference" "#FLGP33R" (at 270.51 139.24 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "3b46fbe9-39db-5c8f-bb50-9ac3b94d65d3") + (property "Reference" "#FLGP33R1" (at 270.51 139.24 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "PWR_FLAG" (at 270.51 140.24 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 270.51 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 270.51 142.24 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "0e8e4211-812c-5f32-b112-8a33a94d41da")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP33R") (unit 1)))) + (pin "1" (uuid "df3df1ea-b07e-53ff-b4fd-18062b0595d4")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP33R1") (unit 1)))) ) (symbol (lib_id "CM5IO:TPS54202") (at 229.87 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "bcb1bcf7-ac31-569a-a674-9f94c9703dac") - (property "Reference" "U_BUCK33A" (at 232.41 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "5ef6e942-d223-58ce-9300-db985a701035") + (property "Reference" "U_BUCK33A1" (at 232.41 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "TPS54202" (at 232.41 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 229.87 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 229.87 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 229.87 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "48b67060-c84f-512b-8bc0-14cfad59f4c7")) - (pin "2" (uuid "429d637b-8f51-5c8f-8ece-e592cede69e9")) - (pin "3" (uuid "6ff5cf48-ac5c-5483-9247-8a2927de9f12")) - (pin "4" (uuid "7a1e657a-8fb4-5ff3-a034-96f317805e7b")) - (pin "5" (uuid "69e77574-0386-5150-85ec-b01af04dca2c")) - (pin "6" (uuid "ed54c0cd-d592-5fec-b4a7-bf98d42de04f")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "U_BUCK33A") (unit 1)))) + (pin "1" (uuid "e925cff5-0240-53e9-a9e6-251eb0321221")) + (pin "2" (uuid "d69975ee-6c6f-5fe6-880a-910d4592da65")) + (pin "3" (uuid "1cd41b45-568f-5e58-8b30-c6404c18c95b")) + (pin "4" (uuid "7f183b13-de6e-5748-af0c-60340c35b908")) + (pin "5" (uuid "4ea3a764-82b4-5713-8000-c2791c8ecd90")) + (pin "6" (uuid "6673c282-42a8-5b20-b614-79499d912417")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "U_BUCK33A1") (unit 1)))) ) (label "VIN_PROT" (at 215.9 90.17 0) @@ -3191,28 +3191,28 @@ (at 229.87 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "06f6e904-1d8a-5f79-9ddf-b429d3801b9a") - (property "Reference" "#PWRU_BUCK33A1" (at 229.87 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "c6aee758-13c7-5833-b147-5e777c4a3888") + (property "Reference" "#PWRU_BUCK33A11" (at 229.87 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 229.87 111.22 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 229.87 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 229.87 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "5008652d-fac9-53a4-a3ed-22eb21255794")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33A1") (unit 1)))) + (pin "1" (uuid "46bdd199-1785-58e9-9c11-23b89c1123a1")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRU_BUCK33A11") (unit 1)))) ) (symbol (lib_id "Device:L") (at 260.35 85.09 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "f145f0a8-96ff-5d91-883b-79805273a99f") - (property "Reference" "L33A" (at 262.89000000000004 84.09 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "2a9f4f4a-4267-5624-b878-bce79e82aeb9") + (property "Reference" "L33A1" (at 262.89000000000004 84.09 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "10uH/2.5A" (at 262.89000000000004 86.09 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Inductor_SMD:L_1210_3225Metric" (at 260.35 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 260.35 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 260.35 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "c2275773-6b08-5868-bc6e-856ff131c4ec")) - (pin "2" (uuid "463c9eeb-cb05-56c6-8b5d-a60f0f5bf1f1")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "L33A") (unit 1)))) + (pin "1" (uuid "80f50b0e-a424-5d16-bb9e-d05300ebadab")) + (pin "2" (uuid "8767e7e5-004e-5f46-9fb9-513e2c97ab15")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "L33A1") (unit 1)))) ) (label "SW33A" (at 260.35 81.28 0) @@ -3230,15 +3230,15 @@ (at 250.19 77.47 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "b775dbe7-0211-5d68-9b5e-675d69679f9a") - (property "Reference" "C_BOOT33A" (at 252.73 76.47 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "34b8ba91-7082-5404-88f7-dbb369f84944") + (property "Reference" "C_BOOT33A1" (at 252.73 76.47 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "100n" (at 252.73 78.47 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 250.19 77.47 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 250.19 77.47 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 250.19 77.47 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "0cf25043-1b43-5565-845b-bc9feb2831fe")) - (pin "2" (uuid "a0d47fd1-35dc-5342-b9cb-ddbed0659264")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_BOOT33A") (unit 1)))) + (pin "1" (uuid "dc90d1e2-0001-5bdf-9d04-e0d84c6387c5")) + (pin "2" (uuid "4c1f1353-dbff-5dd6-97c1-63871380b962")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_BOOT33A1") (unit 1)))) ) (label "SW33A" (at 250.19 73.66 0) @@ -3255,15 +3255,15 @@ (at 204.47 85.09 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "653bb11e-6db2-52cb-bc14-22a3d4b19724") - (property "Reference" "R_UVT33A" (at 207.01 84.09 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "1426579d-2c23-5715-94c8-36d584c524cd") + (property "Reference" "R_UVT33A1" (at 207.01 84.09 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "866k" (at 207.01 86.09 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 204.47 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 204.47 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 204.47 85.09 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "057d8e09-c60c-5fde-8bfb-ac12fe39d80f")) - (pin "2" (uuid "1c5f8e9b-8f01-50b1-b224-e34a8ec7681d")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_UVT33A") (unit 1)))) + (pin "1" (uuid "3133ecb6-b126-543f-bddc-0003c748cf2d")) + (pin "2" (uuid "dbc34ed7-5c83-5329-a6dc-17e99155124c")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_UVT33A1") (unit 1)))) ) (label "VIN_PROT" (at 204.47 81.28 0) @@ -3280,15 +3280,15 @@ (at 204.47 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "f0af6e3e-e764-5d27-9d5f-eb46bc52f550") - (property "Reference" "R_UVB33A" (at 207.01 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "9b351580-04ae-597b-b66e-0801ec33ce7a") + (property "Reference" "R_UVB33A1" (at 207.01 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "110k" (at 207.01 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 204.47 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 204.47 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 204.47 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "a737be2a-0156-5b3a-b011-38e04802e6fe")) - (pin "2" (uuid "568a2a77-880d-5429-9968-2049a51a61fc")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_UVB33A") (unit 1)))) + (pin "1" (uuid "2d167c4b-8840-5ca4-8f5d-10ea86eb7764")) + (pin "2" (uuid "2c84a8cb-dbf1-55ec-9644-1e60b1388b87")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_UVB33A1") (unit 1)))) ) (label "EN33A" (at 204.47 91.44 0) @@ -3300,28 +3300,28 @@ (at 204.47 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "f3ffe656-ee72-51a3-b52d-4649627d30a6") - (property "Reference" "#PWRR_UVB33A2" (at 204.47 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "e43af3f7-ae39-51db-bce1-b962be403403") + (property "Reference" "#PWRR_UVB33A12" (at 204.47 102.06 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 204.47 101.06 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 204.47 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 204.47 99.06 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "d3500078-563d-5e81-ae3c-f121c1712c29")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_UVB33A2") (unit 1)))) + (pin "1" (uuid "347ff504-a6ad-5a61-96e3-f6cc6256bd66")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_UVB33A12") (unit 1)))) ) (symbol (lib_id "Device:R") (at 279.4 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "d226f3ff-0bda-51a1-8304-81f3a113bcf4") - (property "Reference" "R_FBT33A" (at 281.94 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "09f1158b-a2ff-59e7-acf6-9e59048f8d9d") + (property "Reference" "R_FBT33A1" (at 281.94 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "100k" (at 281.94 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 279.4 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 279.4 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 279.4 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "dc27bb37-64d5-568e-9495-e78f26f46302")) - (pin "2" (uuid "0fab2b92-3738-5a17-825e-5c551d23c289")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBT33A") (unit 1)))) + (pin "1" (uuid "43e1083b-0c3f-5989-843e-ee6abff195c3")) + (pin "2" (uuid "19883c2c-84a2-56aa-b75a-8a83d79e4e55")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBT33A1") (unit 1)))) ) (global_label "+3V3_AUX" (shape input) @@ -3339,15 +3339,15 @@ (at 288.29 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "d37665e2-9e2e-5713-b75a-1b3f241ac9f8") - (property "Reference" "C_FF33A" (at 290.83000000000004 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "95c1df01-fc20-53ad-8117-ef2fc0554ca0") + (property "Reference" "C_FF33A1" (at 290.83000000000004 94.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "56p" (at 290.83000000000004 96.25 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 288.29 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 288.29 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 288.29 95.25 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "fe9a059f-792a-5538-bb79-c55fbbf287d2")) - (pin "2" (uuid "c0ce8bbd-6036-54ac-9d0a-86d0b0394d1e")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_FF33A") (unit 1)))) + (pin "1" (uuid "8e5633bd-485d-5621-beac-24896354038a")) + (pin "2" (uuid "86457c11-584f-58e4-b40d-d1c9cc542103")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_FF33A1") (unit 1)))) ) (global_label "+3V3_AUX" (shape input) @@ -3365,15 +3365,15 @@ (at 279.4 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "30655460-5ace-56a7-98f3-a0402bce8c0e") - (property "Reference" "R_FBB33A" (at 281.94 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "86bf201b-beab-5df7-8d4b-64a052d58ee8") + (property "Reference" "R_FBB33A1" (at 281.94 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "22.1k" (at 281.94 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Resistor_SMD:R_0402_1005Metric" (at 279.4 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 279.4 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 279.4 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "87e0af16-a234-5736-ba4a-177539ce422a")) - (pin "2" (uuid "a3ce5bad-e658-518d-baf3-3f3ee902dfb7")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBB33A") (unit 1)))) + (pin "1" (uuid "053113b6-4b62-591e-8a78-ce39114c9688")) + (pin "2" (uuid "96355983-0a14-511f-9bc5-f360f8e6a791")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "R_FBB33A1") (unit 1)))) ) (label "FB33A" (at 279.4 101.6 0) @@ -3385,28 +3385,28 @@ (at 279.4 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "7ccfc617-9b0b-57c5-a6e1-1ea51a95b0af") - (property "Reference" "#PWRR_FBB33A2" (at 279.4 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "af351578-f223-5b8d-946c-b7ddcab1085c") + (property "Reference" "#PWRR_FBB33A12" (at 279.4 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 279.4 111.22 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 279.4 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 279.4 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "8752f2e1-7d1e-5561-9928-39069c815725")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_FBB33A2") (unit 1)))) + (pin "1" (uuid "ab456951-cc79-5b87-b84d-3b8034ee367d")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRR_FBB33A12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 214.63 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "a5d2300d-429d-59a4-824d-a80eea87eb87") - (property "Reference" "C_IN33Aa" (at 217.17 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "e085dc2e-cf25-5a7d-9318-376cf62ab9f0") + (property "Reference" "C_IN33Aa1" (at 217.17 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "10u/50V" (at 217.17 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 214.63 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 214.63 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 214.63 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "ba18bf80-f23f-530a-9b35-14d5be1afde0")) - (pin "2" (uuid "bf6948d6-6798-50c3-a335-37b32c17eb3e")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33Aa") (unit 1)))) + (pin "1" (uuid "1defa050-d98e-53b4-943e-d0d22b5c20ae")) + (pin "2" (uuid "2ed26794-d69b-5090-ac82-0533265e1fcf")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_IN33Aa1") (unit 1)))) ) (label "VIN_PROT" (at 214.63 101.6 0) @@ -3418,28 +3418,28 @@ (at 214.63 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "79d7b6a7-03ee-5ce2-8242-3a404d6a504f") - (property "Reference" "#PWRC_IN33Aa2" (at 214.63 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "a21cb5fe-32ad-5fa6-a646-e4b223111350") + (property "Reference" "#PWRC_IN33Aa12" (at 214.63 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 214.63 111.22 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 214.63 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 214.63 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "adad279f-adb9-542c-a0f9-78ad1a954249")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33Aa2") (unit 1)))) + (pin "1" (uuid "69256859-6602-5c7b-b108-4c4445952520")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_IN33Aa12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 219.71 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "4f75026e-b0a4-5b98-8717-697ba30ed6b4") - (property "Reference" "C_INHF33A" (at 222.25 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "78177160-71fd-5325-89f0-da3b7fa2e83d") + (property "Reference" "C_INHF33A1" (at 222.25 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "100n" (at 222.25 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" (at 219.71 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 219.71 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 219.71 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "eee9b3ec-4a3b-552d-83c6-a69a13396f8a")) - (pin "2" (uuid "d5ecad15-2ed8-567d-9a53-2cb3e3684b81")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_INHF33A") (unit 1)))) + (pin "1" (uuid "a3e4c27c-8fe4-5cfc-9e59-1c9e17efc5e7")) + (pin "2" (uuid "33bbd1a0-2b22-552f-9d24-74ae4ce7edc7")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_INHF33A1") (unit 1)))) ) (label "VIN_PROT" (at 219.71 101.6 0) @@ -3451,28 +3451,28 @@ (at 219.71 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "bb7dea24-fa6b-5327-bcbb-e7721a193c47") - (property "Reference" "#PWRC_INHF33A2" (at 219.71 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "11189a6c-b880-5343-93e0-288a39f781a4") + (property "Reference" "#PWRC_INHF33A12" (at 219.71 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 219.71 111.22 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 219.71 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 219.71 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "0f8a141f-2c65-5eaf-8581-c76ab630fc05")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_INHF33A2") (unit 1)))) + (pin "1" (uuid "87111460-d935-5424-be71-8c62af939877")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_INHF33A12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 265.43 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "61dfa960-f395-5e8b-ae5e-9d2c280a2cdb") - (property "Reference" "C_OUT33Aa" (at 267.97 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "c2a0fbef-fc7a-5dbc-a046-9c1fb0533d5e") + (property "Reference" "C_OUT33Aa1" (at 267.97 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "22u/16V" (at 267.97 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 265.43 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 265.43 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 265.43 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "cc2ef03f-b586-58e5-96f8-c349200d1d14")) - (pin "2" (uuid "8e32f7a8-5e8e-5afd-b5c9-84c7355729e5")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33Aa") (unit 1)))) + (pin "1" (uuid "521feb47-3a4a-5c74-abdf-af5124c0cc00")) + (pin "2" (uuid "fa7e2387-5f44-5f10-af20-34d2a4a623cd")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33Aa1") (unit 1)))) ) (global_label "+3V3_AUX" (shape input) @@ -3485,28 +3485,28 @@ (at 265.43 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "66ef2035-91f7-5153-b1e7-0ec188ad13ee") - (property "Reference" "#PWRC_OUT33Aa2" (at 265.43 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "a3100c76-0123-57d1-ac2d-c8d702d1ec63") + (property "Reference" "#PWRC_OUT33Aa12" (at 265.43 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 265.43 111.22 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 265.43 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 265.43 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "dca83d7d-4de6-5ce9-9722-1d9c90275163")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33Aa2") (unit 1)))) + (pin "1" (uuid "ec29586d-de97-5df5-bfbf-54a0b3599a72")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33Aa12") (unit 1)))) ) (symbol (lib_id "Device:C") (at 270.51 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "9c2a60f9-60b4-5330-9ffd-584ba7f0984c") - (property "Reference" "C_OUT33Ab" (at 273.05 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) + (uuid "ff5fce48-f6b7-5f7a-9189-f58d51cece91") + (property "Reference" "C_OUT33Ab1" (at 273.05 104.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Value" "22u/16V" (at 273.05 106.41 0) (effects (font (size 1.27 1.27)) (justify left))) (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 270.51 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 270.51 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Description" "" (at 270.51 105.41 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "d06dc6ef-ce25-5bae-9cbb-bdfb92346bc0")) - (pin "2" (uuid "7e96e8b3-399e-5df6-8b21-48a4d49919e2")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33Ab") (unit 1)))) + (pin "1" (uuid "6785db81-16f3-5b26-87ef-59cad38fc413")) + (pin "2" (uuid "ead10794-ae0c-5749-b66e-7f3cc08992cf")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "C_OUT33Ab1") (unit 1)))) ) (global_label "+3V3_AUX" (shape input) @@ -3519,26 +3519,26 @@ (at 270.51 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "1d95991b-c59e-55d2-9f60-d5e94f765c6d") - (property "Reference" "#PWRC_OUT33Ab2" (at 270.51 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "192ff920-d592-5a08-a3cd-d67579c49de4") + (property "Reference" "#PWRC_OUT33Ab12" (at 270.51 112.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "GND" (at 270.51 111.22 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 270.51 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 270.51 109.22 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "3f30ab32-afb1-5085-964a-aed0fc3c9f3f")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33Ab2") (unit 1)))) + (pin "1" (uuid "397931ad-4b62-54f6-8251-de1cb3ae0fe2")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#PWRC_OUT33Ab12") (unit 1)))) ) (symbol (lib_id "power:PWR_FLAG") (at 260.35 88.9 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) - (uuid "5d652b25-0204-5896-8eaa-7e5679be844a") - (property "Reference" "#FLGP33A" (at 260.35 85.9 0) (effects (font (size 1.27 1.27)) (hide yes))) + (uuid "bb9014c4-fc49-5644-8755-f7f9ac2968d5") + (property "Reference" "#FLGP33A1" (at 260.35 85.9 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Value" "PWR_FLAG" (at 260.35 86.9 0) (effects (font (size 1.27 1.27)))) (property "Footprint" "" (at 260.35 88.9 0) (effects (font (size 1.27 1.27)) (hide yes))) (property "Datasheet" "" (at 260.35 88.9 0) (effects (font (size 1.27 1.27)) (hide yes))) - (pin "1" (uuid "cc889646-749d-5056-b5d8-bfe173b0f46e")) - (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP33A") (unit 1)))) + (pin "1" (uuid "df2d0f98-0896-5b2f-be61-87e172430738")) + (instances (project "CM5IO" (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/9c7ccf72-dd3e-5ed3-bb43-2939833eb069" (reference "#FLGP33A1") (unit 1)))) ) (sheet_instances (path "/" diff --git a/tools/build_ekey.py b/tools/build_ekey.py index 7989786..5f82eca 100644 --- a/tools/build_ekey.py +++ b/tools/build_ekey.py @@ -134,9 +134,11 @@ def loc_label(name, x, y, ang): f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("ll-"+name+"-"+str(x)+"-"+str(y))}")\n\t)\n') def no_connect(x, y, tag): + tag = tag if tag[-1].isdigit() else tag + "1" # refs must end in a digit (KiCad annotation) return f'\t(no_connect (at {x} {y}) (uuid "{U("nc-"+tag)}"))\n' def gnd_sym(x, y, tag): + tag = tag if tag[-1].isdigit() else tag + "1" # refs must end in a digit (KiCad annotation) return (f'\t(symbol\n\t\t(lib_id "power:GND")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n' f'\t\t(uuid "{U("gnd-"+tag)}")\n' @@ -148,6 +150,7 @@ def gnd_sym(x, y, tag): f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "#PWR{tag}") (unit 1))))\n\t)\n') def pwr_flag(x, y, tag): + tag = tag if tag[-1].isdigit() else tag + "1" # refs must end in a digit (KiCad annotation) return (f'\t(symbol\n\t\t(lib_id "power:PWR_FLAG")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n' f'\t\t(uuid "{U("pflag-"+tag)}")\n' @@ -172,7 +175,7 @@ def passive(lib_id, ref, value, footprint, x, y, tag): def socket_symbol(): # the placed J_E (multi-unit symbol uses unit 1; both graphic units share lib def) - props = ('\t\t(property "Reference" "J_E" (at 170 53 0) (effects (font (size 1.27 1.27))))\n' + props = ('\t\t(property "Reference" "J_E1" (at 170 53 0) (effects (font (size 1.27 1.27))))\n' '\t\t(property "Value" "M.2_Ekey_WiFi" (at 170 55 0) (effects (font (size 1.27 1.27))))\n' '\t\t(property "Footprint" "Connector_PCBEdge:M.2_2230-xx-E" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' '\t\t(property "Datasheet" "" (at 170 105 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' @@ -180,8 +183,8 @@ def socket_symbol(): pins = "".join(f'\t\t(pin "{n}" (uuid "{U("jepin-"+n)}"))\n' for n in sorted(SOCK_PINS, key=int)) return (f'\t(symbol\n\t\t(lib_id "Connector:Bus_M.2_Socket_E")\n\t\t(at {PX} {PY} 0)\n\t\t(unit 1)\n' f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n' - f'\t\t(uuid "{U("J_E")}")\n' + props + pins + - f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "J_E") (unit 1))))\n\t)\n') + f'\t\t(uuid "{U("J_E1")}")\n' + props + pins + + f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "J_E1") (unit 1))))\n\t)\n') # ---- assemble the sheet ------------------------------------------------------------ body = [] diff --git a/tools/build_gps.py b/tools/build_gps.py index 28af3b0..2031cfb 100644 --- a/tools/build_gps.py +++ b/tools/build_gps.py @@ -97,8 +97,10 @@ def emit_glabel(net, x, y, ang=0): body.append(f'\t(global_label "{net}"\n\t\t(shape input)\n\t\t(at {x} {y} {ang})\n' f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("gl-"+net+f"-{x}-{y}")}")\n\t)\n') def emit_nc(x, y, tag): + tag = tag if tag[-1].isdigit() else tag + "1" # refs must end in a digit (KiCad annotation) body.append(f'\t(no_connect (at {x} {y}) (uuid "{U("nc-"+tag)}"))\n') def emit_gnd(x, y, tag): + tag = tag if tag[-1].isdigit() else tag + "1" # refs must end in a digit (KiCad annotation) body.append(f'\t(symbol\n\t\t(lib_id "power:GND")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("gnd-"+tag)}")\n' f'\t\t(property "Reference" "#PWR{tag}" (at {x} {y+3} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' @@ -134,17 +136,17 @@ def place(lib_id, ref, value, footprint, ox, oy, pin_nets): GND = ('gnd',); NC = ('nc',) # ---- the GPS + PPS block ---------------------------------------------------------- -place("Connector_Generic:Conn_01x05", "J_GPS", "GPS_5pin_PPS_UART", "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical", +place("Connector_Generic:Conn_01x05", "J_GPS1", "GPS_5pin_PPS_UART", "Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical", 60, 80, {'1': 'GPS_PPS_RAW', '2': 'GPIO5', '3': 'GPIO4', '4': '+3V3_AUX', '5': GND}) -place("Device:D_TVS", "TVS_PPS", "PESD3V3L1BA", "Diode_SMD:D_SOD-323", 85, 95, {'1': 'GPS_PPS_RAW', '2': GND}) +place("Device:D_TVS", "TVS_PPS1", "PESD3V3L1BA", "Diode_SMD:D_SOD-323", 85, 95, {'1': 'GPS_PPS_RAW', '2': GND}) # 74LVC1G17: 1=NC 2=A 3=GND 4=Y 5=VCC (KiCad lib types: input/power_in/output/power_in) -place("74xGxx:74LVC1G17", "U_PPS", "74LVC1G17", "Package_TO_SOT_SMD:SOT-23-5", +place("74xGxx:74LVC1G17", "U_PPS1", "74LVC1G17", "Package_TO_SOT_SMD:SOT-23-5", 110, 80, {'2': 'GPS_PPS_RAW', '4': 'PPS_CLEAN', '5': '+3V3_AUX', '3': GND, '1': NC}) -place("Device:C", "C_PPS", "100n", "Capacitor_SMD:C_0402_1005Metric", 100, 95, {'1': '+3V3_AUX', '2': GND}) -place("Device:C", "C_GPS", "10u", "Capacitor_SMD:C_0603_1608Metric", 70, 95, {'1': '+3V3_AUX', '2': GND}) +place("Device:C", "C_PPS1", "100n", "Capacitor_SMD:C_0402_1005Metric", 100, 95, {'1': '+3V3_AUX', '2': GND}) +place("Device:C", "C_GPS1", "10u", "Capacitor_SMD:C_0603_1608Metric", 70, 95, {'1': '+3V3_AUX', '2': GND}) # series R guards the LVC1G17 output against a driver fight (CM5 pin 18 is bidi; # board policy configures it as input — spec Rs 33-100R, pick 33R) -place("Device:R", "R_PPS", "33", "Resistor_SMD:R_0402_1005Metric", 140, 80, {'1': 'PPS_CLEAN', '2': 'SYNC_OUT'}) +place("Device:R", "R_PPS1", "33", "Resistor_SMD:R_0402_1005Metric", 140, 80, {'1': 'PPS_CLEAN', '2': 'SYNC_OUT'}) place("Connector_Generic:Conn_01x02", "J_PPS1", "PPS_tap_UWB", "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical", 170, 75, {'1': 'PPS_CLEAN', '2': GND}) place("Connector_Generic:Conn_01x02", "J_PPS2", "PPS_tap_scope", "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical", diff --git a/tools/build_power.py b/tools/build_power.py index b9916f3..abc0a9b 100644 --- a/tools/build_power.py +++ b/tools/build_power.py @@ -148,6 +148,7 @@ def emit_hlabel(net, x, y, ang=0): body.append(f'\t(hierarchical_label "{net}"\n\t\t(shape passive)\n\t\t(at {x} {y} {ang})\n' f'\t\t(effects (font (size 1.27 1.27)) (justify left))\n\t\t(uuid "{U("hl-"+net+f"-{x}-{y}")}")\n\t)\n') def emit_gnd(x, y, tag): + tag = tag if tag[-1].isdigit() else tag + "1" # refs must end in a digit (KiCad annotation) body.append(f'\t(symbol\n\t\t(lib_id "power:GND")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("gnd-"+tag)}")\n' f'\t\t(property "Reference" "#PWR{tag}" (at {x} {y+3} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' @@ -157,6 +158,7 @@ def emit_gnd(x, y, tag): f'\t\t(pin "1" (uuid "{U("gp-"+tag)}"))\n' f'\t\t(instances (project "{PROJECT}" (path "/{ROOT_UUID}/{SHEET_SYMBOL_UUID}" (reference "#PWR{tag}") (unit 1))))\n\t)\n') def emit_flag(x, y, tag): + tag = tag if tag[-1].isdigit() else tag + "1" # refs must end in a digit (KiCad annotation) body.append(f'\t(symbol\n\t\t(lib_id "power:PWR_FLAG")\n\t\t(at {x} {y} 0)\n\t\t(unit 1)\n' f'\t\t(exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no)\n\t\t(uuid "{U("flg-"+tag)}")\n' f'\t\t(property "Reference" "#FLG{tag}" (at {x} {y-3} 0) (effects (font (size 1.27 1.27)) (hide yes)))\n' @@ -193,14 +195,14 @@ def place(lib_id, ref, value, footprint, ox, oy, pin_nets): # ---- STAGE 1: input protection ---------------------------------------------------- GND = ('gnd',) -place("Connector:Screw_Terminal_01x02", "J_PWR", "15V_DC_IN", "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal", +place("Connector:Screw_Terminal_01x02", "J_PWR1", "15V_DC_IN", "TerminalBlock_Phoenix:TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal", 80, 80, {'1': '+15V_IN', '2': GND}) -drev = place("Power_Management:LM74700", "D_REV", "LM74700-Q1", "Package_TO_SOT_SMD:SOT-23-6", +drev = place("Power_Management:LM74700", "D_REV1", "LM74700-Q1", "Package_TO_SOT_SMD:SOT-23-6", 120, 80, {'6': '+15V_IN', '3': '+15V_IN', '4': 'VIN_PROT', '5': 'GATE_REV', '1': 'VCAP_REV', '2': GND}) -place("Transistor_FET:Q_NMOS_GDS", "Q_REV", "CSD18540 (Vds>=30V)", "Package_TO_SOT_SMD:TO-263-2", +place("Transistor_FET:Q_NMOS_GDS", "Q_REV1", "CSD18540 (Vds>=30V)", "Package_TO_SOT_SMD:TO-263-2", 140, 90, {'1': 'GATE_REV', '2': 'VIN_PROT', '3': '+15V_IN'}) -place("Device:C", "C_VCAP", "1u", "Capacitor_SMD:C_0402_1005Metric", 120, 100, {'1': 'VCAP_REV', '2': GND}) -tvs = place("Device:D_TVS", "TVS_IN", "SMBJ18A", "Diode_SMD:D_SMB", 160, 80, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_VCAP1", "1u", "Capacitor_SMD:C_0402_1005Metric", 120, 100, {'1': 'VCAP_REV', '2': GND}) +tvs = place("Device:D_TVS", "TVS_IN1", "SMBJ18A", "Diode_SMD:D_SMB", 160, 80, {'1': 'VIN_PROT', '2': GND}) place("Device:C_Polarized", "C_BULK1", "100u/35V", "Capacitor_SMD:CP_Elec_8x10", 170, 80, {'1': 'VIN_PROT', '2': GND}) # 35V: must survive SMBJ18A clamp (<=29.2V surge) place("Device:C", "C_BULK2", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 180, 80, {'1': 'VIN_PROT', '2': GND}) # PWR_FLAGs co-located exactly on real pins so they bind: +15V_IN @ D_REV.6 (ANODE), @@ -226,10 +228,10 @@ place("Device:R", "R_PG5", "100k", "Resistor_SMD:R_0402_1005Metric", 135, 143, { place("Device:R", "R_FBT5", "40.2k", "Resistor_SMD:R_0402_1005Metric", 165, 150, {'1': '+5v', '2': 'FB5'}) place("Device:R", "R_FBB5", "10.0k", "Resistor_SMD:R_0402_1005Metric", 165, 158, {'1': 'FB5', '2': GND}) place("Device:C", "C_VCC5", "1u", "Capacitor_SMD:C_0402_1005Metric", 100, 158, {'1': 'VCC5', '2': GND}) -place("Device:C", "C_IN5a", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 95, 145, {'1': 'VIN_PROT', '2': GND}) -place("Device:C", "C_IN5b", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 100, 145, {'1': 'VIN_PROT', '2': GND}) -place("Device:C", "C_OUT5a", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 175, 138, {'1': '+5v', '2': GND}) -place("Device:C", "C_OUT5b", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 180, 138, {'1': '+5v', '2': GND}) +place("Device:C", "C_IN5a1", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 95, 145, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_IN5b1", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 100, 145, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_OUT5a1", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 175, 138, {'1': '+5v', '2': GND}) +place("Device:C", "C_OUT5b1", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 180, 138, {'1': '+5v', '2': GND}) # +5v is now sourced by this buck -> PWR_FLAG co-located on L5 pin2 (+5v) p5x, p5y = pin_abs(l5, "Device:L", "2"); emit_flag(p5x, p5y, "P5V") @@ -239,7 +241,7 @@ p5x, p5y = pin_abs(l5, "Device:L", "2"); emit_flag(p5x, p5y, "P5V") # BIAS -> +3V3_RF (datasheet: BIAS>=3.1V uses output LDO path; falls back to VIN below). # EN <- PCIE_PWR_EN (CM5 Module1 pin 106, global net) + 100k pull-down (= reference R14) # so the Wi-Fi rail stays OFF until the CM5 asserts it. -place("CM5IO:LM61460-Q1", "U_BUCK33R", "LM61460-Q1", "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias", +place("CM5IO:LM61460-Q1", "U_BUCK33R1", "LM61460-Q1", "Package_SO:Texas_HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3.155x3.255mm_ThermalVias", 230, 150, {'8': 'VIN_PROT', '12': 'VIN_PROT', '7': 'PCIE_PWR_EN', '1': '+3V3_RF', '2': 'VCC33', '6': 'RT33', '5': 'PG33', '4': 'FB33', '10': 'SW33', '14': 'BOOT33', '13': 'RBOOT33', '9': GND, '11': GND, '3': GND, '15': GND}) @@ -252,10 +254,10 @@ place("Device:R", "R_FBT33", "23.2k", "Resistor_SMD:R_0402_1005Metric", 285, 150 place("Device:R", "R_FBB33", "10.0k", "Resistor_SMD:R_0402_1005Metric", 285, 158, {'1': 'FB33', '2': GND}) place("Device:R", "R_EN33", "100k", "Resistor_SMD:R_0402_1005Metric", 200, 165, {'1': 'PCIE_PWR_EN', '2': GND}) place("Device:C", "C_VCC33", "1u", "Capacitor_SMD:C_0402_1005Metric", 220, 158, {'1': 'VCC33', '2': GND}) -place("Device:C", "C_IN33a", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 215, 145, {'1': 'VIN_PROT', '2': GND}) -place("Device:C", "C_IN33b", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 220, 145, {'1': 'VIN_PROT', '2': GND}) -place("Device:C", "C_OUT33a", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 240, 165, {'1': '+3V3_RF', '2': GND}) -place("Device:C", "C_OUT33b", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 245, 165, {'1': '+3V3_RF', '2': GND}) +place("Device:C", "C_IN33a1", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 215, 145, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_IN33b1", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 220, 145, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_OUT33a1", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 240, 165, {'1': '+3V3_RF', '2': GND}) +place("Device:C", "C_OUT33b1", "47u/16V", "Capacitor_SMD:C_1210_3225Metric", 245, 165, {'1': '+3V3_RF', '2': GND}) # +3V3_RF is now sourced by this buck -> PWR_FLAG on L33 pin2 (replaces the E-key temp flag) p33x, p33y = pin_abs(l33, "Device:L", "2"); emit_flag(p33x, p33y, "P33R") @@ -267,22 +269,22 @@ p33x, p33y = pin_abs(l33, "Device:L", "2"); emit_flag(p33x, p33y, "P33R") # L=10uH (dI~0.52A, Ipk~1.26A), Cout 2x22uF. EN abs-max is 7V -> NO direct VIN tie; # UVLO divider 866k/110k (Ip=0.7uA/Ih=1.55uA, Ven 1.21/1.19V) -> start 10.1V/stop 8.6V, # EN sits ~1.9V at 15V in (~3.5V at 29V surge clamp, still < 7V abs-max). -place("CM5IO:TPS54202", "U_BUCK33A", "TPS54202", "Package_TO_SOT_SMD:SOT-23-6", +place("CM5IO:TPS54202", "U_BUCK33A1", "TPS54202", "Package_TO_SOT_SMD:SOT-23-6", 230, 95, {'3': 'VIN_PROT', '5': 'EN33A', '6': 'BOOT33A', '2': 'SW33A', '4': 'FB33A', '1': GND}) -l33a = place("Device:L", "L33A", "10uH/2.5A", "Inductor_SMD:L_1210_3225Metric", 260, 85, {'1': 'SW33A', '2': '+3V3_AUX'}) -place("Device:C", "C_BOOT33A", "100n", "Capacitor_SMD:C_0402_1005Metric", 250, 78, {'1': 'SW33A', '2': 'BOOT33A'}) -place("Device:R", "R_UVT33A", "866k", "Resistor_SMD:R_0402_1005Metric", 205, 85, {'1': 'VIN_PROT', '2': 'EN33A'}) -place("Device:R", "R_UVB33A", "110k", "Resistor_SMD:R_0402_1005Metric", 205, 95, {'1': 'EN33A', '2': GND}) -place("Device:R", "R_FBT33A", "100k", "Resistor_SMD:R_0402_1005Metric", 280, 95, {'1': '+3V3_AUX', '2': 'FB33A'}) -place("Device:C", "C_FF33A", "56p", "Capacitor_SMD:C_0402_1005Metric", 288, 95, {'1': '+3V3_AUX', '2': 'FB33A'}) -place("Device:R", "R_FBB33A", "22.1k", "Resistor_SMD:R_0402_1005Metric", 280, 105, {'1': 'FB33A', '2': GND}) +l33a = place("Device:L", "L33A1", "10uH/2.5A", "Inductor_SMD:L_1210_3225Metric", 260, 85, {'1': 'SW33A', '2': '+3V3_AUX'}) +place("Device:C", "C_BOOT33A1", "100n", "Capacitor_SMD:C_0402_1005Metric", 250, 78, {'1': 'SW33A', '2': 'BOOT33A'}) +place("Device:R", "R_UVT33A1", "866k", "Resistor_SMD:R_0402_1005Metric", 205, 85, {'1': 'VIN_PROT', '2': 'EN33A'}) +place("Device:R", "R_UVB33A1", "110k", "Resistor_SMD:R_0402_1005Metric", 205, 95, {'1': 'EN33A', '2': GND}) +place("Device:R", "R_FBT33A1", "100k", "Resistor_SMD:R_0402_1005Metric", 280, 95, {'1': '+3V3_AUX', '2': 'FB33A'}) +place("Device:C", "C_FF33A1", "56p", "Capacitor_SMD:C_0402_1005Metric", 288, 95, {'1': '+3V3_AUX', '2': 'FB33A'}) +place("Device:R", "R_FBB33A1", "22.1k", "Resistor_SMD:R_0402_1005Metric", 280, 105, {'1': 'FB33A', '2': GND}) # NB refdes must not differ from stage-3's C_IN33a by case alone — SPICE names are # case-insensitive and the simulate_subcircuits testbench collides ("device already exists"). -place("Device:C", "C_IN33Aa", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 215, 105, {'1': 'VIN_PROT', '2': GND}) -place("Device:C", "C_INHF33A", "100n", "Capacitor_SMD:C_0402_1005Metric", 220, 105, {'1': 'VIN_PROT', '2': GND}) -place("Device:C", "C_OUT33Aa", "22u/16V", "Capacitor_SMD:C_1210_3225Metric", 265, 105, {'1': '+3V3_AUX', '2': GND}) -place("Device:C", "C_OUT33Ab", "22u/16V", "Capacitor_SMD:C_1210_3225Metric", 270, 105, {'1': '+3V3_AUX', '2': GND}) +place("Device:C", "C_IN33Aa1", "10u/50V", "Capacitor_SMD:C_1210_3225Metric", 215, 105, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_INHF33A1", "100n", "Capacitor_SMD:C_0402_1005Metric", 220, 105, {'1': 'VIN_PROT', '2': GND}) +place("Device:C", "C_OUT33Aa1", "22u/16V", "Capacitor_SMD:C_1210_3225Metric", 265, 105, {'1': '+3V3_AUX', '2': GND}) +place("Device:C", "C_OUT33Ab1", "22u/16V", "Capacitor_SMD:C_1210_3225Metric", 270, 105, {'1': '+3V3_AUX', '2': GND}) # +3V3_AUX sourced here -> PWR_FLAG on L33A pin2 p33ax, p33ay = pin_abs(l33a, "Device:L", "2"); emit_flag(p33ax, p33ay, "P33A") From ac8108c3f27bc576d56834a0065d258b1d167208 Mon Sep 17 00:00:00 2001 From: noise Date: Sat, 4 Jul 2026 09:36:53 -0400 Subject: [PATCH 15/16] Hygiene: carrier identity in title blocks (rev A, dated, CM5IO derivation credited) Co-Authored-By: Claude Fable 5 --- carrier/CM5IO.kicad_sch | 8 ++++---- carrier/CM5_GPIO.kicad_sch | 8 ++++---- carrier/CM5_HighSpeed.kicad_sch | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/carrier/CM5IO.kicad_sch b/carrier/CM5IO.kicad_sch index 022d52f..b89f07f 100644 --- a/carrier/CM5IO.kicad_sch +++ b/carrier/CM5IO.kicad_sch @@ -5,10 +5,10 @@ (uuid "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55") (paper "A4") (title_block - (title "Compute Module 5 IO Board - Top Level") - (rev "1") - (company "Copyright © 2024 Raspberry Pi Ltd.") - (comment 1 "www.raspberrypi.com") + (title "CM5 Carrier (PTP timing node) - Top Level") + (date "2026-07-04") + (rev "A") + (comment 1 "Derived from CM5IO rev 1, Copyright © 2024 Raspberry Pi Ltd. (www.raspberrypi.com)") ) (lib_symbols (symbol "Connector:USB_C_Receptacle_USB2.0_16P" diff --git a/carrier/CM5_GPIO.kicad_sch b/carrier/CM5_GPIO.kicad_sch index 89a7cdf..7eece99 100644 --- a/carrier/CM5_GPIO.kicad_sch +++ b/carrier/CM5_GPIO.kicad_sch @@ -5,10 +5,10 @@ (uuid "a7d728a2-9639-442c-9b0f-3544c5006fbb") (paper "A4") (title_block - (title "Compute Module 5 IO Board - GPIO - Ethernet") - (rev "1") - (company "Copyright © 2024 Raspberry Pi Ltd.") - (comment 1 "www.raspberrypi.com") + (title "CM5 Carrier - GPIO - Ethernet") + (date "2026-07-04") + (rev "A") + (comment 1 "Derived from CM5IO rev 1, Copyright © 2024 Raspberry Pi Ltd. (www.raspberrypi.com)") ) (lib_symbols (symbol "CM5IO:74LVC1G07_copy" diff --git a/carrier/CM5_HighSpeed.kicad_sch b/carrier/CM5_HighSpeed.kicad_sch index 4d58ffa..73b1c72 100644 --- a/carrier/CM5_HighSpeed.kicad_sch +++ b/carrier/CM5_HighSpeed.kicad_sch @@ -5,10 +5,10 @@ (uuid "3457afc5-3e4f-4220-81d1-b079f653a722") (paper "A4") (title_block - (title "Compute Module 5 IO Board - CM5 - Highspeed") - (rev "1") - (company "Copyright © 2024 Raspberry Pi Ltd.") - (comment 1 "www.raspberrypi.com") + (title "CM5 Carrier - Highspeed (USB3, PCIe to M.2 E-key)") + (date "2026-07-04") + (rev "A") + (comment 1 "Derived from CM5IO rev 1, Copyright © 2024 Raspberry Pi Ltd. (www.raspberrypi.com)") ) (lib_symbols (symbol "CM5IO:AP2553W6" From 21648f6d6c7a76ae83488ec2df024d9c1a1bc345 Mon Sep 17 00:00:00 2001 From: noise Date: Sat, 4 Jul 2026 09:42:57 -0400 Subject: [PATCH 16/16] docs: power-budget review section + refreshed RESUME header (close-out complete) Co-Authored-By: Claude Fable 5 --- PORT_STATUS.md | 77 +++++++++++++++++++++++++++++++++++--------------- 1 file changed, 54 insertions(+), 23 deletions(-) diff --git a/PORT_STATUS.md b/PORT_STATUS.md index 07841f6..ef561de 100644 --- a/PORT_STATUS.md +++ b/PORT_STATUS.md @@ -4,32 +4,33 @@ > `.claude/skills/kicad-port/SKILL.md` (the mandatory workflow/verify-loop), then > `CM5_Carrier_Design.md` (frozen rev-A spec). -## ▶ RESUME HERE (session handoff, 2026-07-02 — work paused here, schematic capture COMPLETE) +## ▶ RESUME HERE (session handoff, 2026-07-04 — close-out passes COMPLETE, ready for layout prep) -**State:** branch `port/strip-phase`, HEAD `fb19caa`, working tree clean (only the unrelated -`refs/.history` submodule blip). Sheets in `carrier/`: root `CM5IO`, `CM5_GPIO`, -`CM5_HighSpeed` (reference, stripped), `M2_Ekey`, `Power` (stages 1–4), `GPS_PPS`. **ALL -rev-A circuit blocks are now captured.** Baseline anchor: `analysis/baseline/carrier_stripped.json`. +**State:** branch `port/strip-phase` (merged → `main`), working tree clean. Sheets in +`carrier/`: root `CM5IO`, `CM5_GPIO`, `CM5_HighSpeed` (reference, stripped), `M2_Ekey`, +`Power` (stages 1–4), `GPS_PPS`. All rev-A blocks captured; **power-budget review + +datasheet confirms + hygiene pass done** (see "Power-budget review" section below). +Baseline anchor: `analysis/baseline/carrier_stripped.json`. Whole-design **ERC = 133** +(all pre-existing types; a good edit adds **zero new**); kicad-cli annotation warning GONE; +BOM sane (105 components, all with value+footprint); SPICE 24 pass / 2 benign warn / 0 fail. -**Done:** strip phase (microSD/HDMI/MIPI/PCIe-M2); M.2 E-key sheet (PCIe ×1); Power stage 1 -(LM74700 → `VIN_PROT`), stage 2 (LM61460-Q1 → `+5v` 5 A, SPICE 5.02 V), stage 3 (LM61460-Q1 → -`+3V3_RF` 4 A, SPICE 3.32 V, EN ← `PCIE_PWR_EN`), stage 4 (TPS54202 → `+3V3_AUX` ~1 A, SPICE -3.315 V); **GPS + PPS sheet** (`carrier/GPS_PPS.kicad_sch` via `tools/build_gps.py`: J_GPS -5-pin per Pinout_BOM §6, PPS → PESD3V3 TVS → 74LVC1G17 @ +3V3_AUX → `PPS_CLEAN` → Rs 33Ω → -`SYNC_OUT` (CM5 pin 18 + J2.6) + J_PPS1/J_PPS2 taps; NMEA on **UART2 GPIO4/GPIO5** per -correction C2 — netlist: GPIO4 = Module1.54+J8.7+J_GPS.3, GPIO5 = Module1.34+J8.29+J_GPS.2). -The `SYNC_OUT`/`GPIO4`/`GPIO5` local labels on CM5_GPIO were converted to **global** labels -(names unchanged, nothing else used them) to reach the new sheet without root plumbing. -Current whole-design **ERC = 133** (all pre-existing types; a good edit adds **zero new**). +**Close-out fixes landed (2026-07-04):** +- Removed orphaned `U12` (RT9742) + `C13` — fed the stripped `HDMI_5v` rail (ref-netlist-proven). +- **Cut J11 (USB-C prog) VBUS from `+5v`** + dropped `R9` bleed — host VBUS would have + paralleled U_BUCK5's output (reference is USB-C-powered; carrier is not). VBUS pins NC; + CC1/CC2 stay wired to CM5 (module implements the PD sink per SC1466 — supersedes the + spec's discrete 5.1 k Rd); D± unchanged → rpiboot unaffected (CM5 has no VBUS-sense pin). +- `C_BULK1` 100 µF **25 V→35 V** (sits on VIN_PROT where SMBJ18A clamps ≤29.2 V). +- Refdes hygiene: all generated refs digit-terminated (`J_E`→`J_E1`, `C_VCAP`→`C_VCAP1`, …, + `#FLG15IN`→`#FLG15IN1`); generator emit-helpers now normalize tags. Title blocks: carrier + identity, rev A, CM5IO derivation credited. -**NEXT ACTION → design-review + close-out passes** (no new blocks): -1. **Power-budget review** of the whole tree (loads vs ratings; the kicad skill's power-tree - check) + re-read PORT_STATUS "Confirm vs datasheet" leftovers (stage-1 C_VCAP/FET pick, - stage-2/3 L saturation ≥ Ipk, RT freq). -2. **Hygiene pass** (checklist in kicad-port skill): refdes numbering (un-numbered generated - refs `J_E`/`J_PWR`/`U_BUCK5`… trip kicad-cli "annotation errors" — decide whether to number - them), title blocks, netlist-vs-BOM sanity, design notes. -3. Then merge `port/strip-phase` → main and start layout prep (DF40 placement copy from ref). +**NEXT ACTION → layout prep:** copy DF40 (CM5 connector) placement from the reference PCB, +then floorplan: Power stage entry edge, RF keepout around M.2, PPS trace hygiene. +Open items (decide at layout/BOM time, none block layout start — details in the review section): +per-port USB-A ILIM vs shared 1.19 A (spec deviation), ESD array on J11 D± (spec BOM item 12, +reference shipped without), M.2 socket contact rating ≥0.9 A/pin, J8 header draw guidance +(≤1 A on 5 V, ≤400 mA on 3.3 V), L33A1 Isat 2.5 A vs TPS54202 fault current (hiccup-protected). **How to build/verify (every change):** - Sheets are generated wholesale — edit `tools/build_ekey.py` / `tools/build_power.py`, then @@ -43,6 +44,36 @@ Current whole-design **ERC = 133** (all pre-existing types; a good edit adds **z bind; PWR_FLAG/GND must sit on a real pin coord; pre-existing `+5v` is hierarchical (not global); type feedback pins `passive`; connector/module pin types may need remodeling for cross-part ERC. +## Power-budget review (2026-07-04, all datasheet-backed) + +Tree: 15 V (J_PWR1, Phoenix MKDS-1.5 ≈13.5 A) → LM74700+CSD18540 ideal diode → `VIN_PROT` +→ 3 bucks. Worst-case input ≈ 40 W / 15 V ≈ **2.9 A** — huge connector/FET margin. + +| Rail | Source | Rating | Worst-case load | Verdict | +|------|--------|--------|-----------------|---------| +| `VIN_PROT` | LM74700 + CSD18540 (60 V, ~2 mΩ) | — | 2.9 A (≈20 mW in FET) | ✅ | +| `+5v` | U_BUCK51 LM61460 (6 A; HS ILIM 8.9–11.5 A) | 6 A | CM5 (0.4 idle/0.9 typ/~3 A heavy, incl. its 3V3+1V8 outputs) + USB-A ≤1.53 A (U6 ILIM) + fan ~0.3 A + J8 5 V user | ✅ if J8 draw documented ≤1 A | +| `+3V3_RF` | U_BUCK33R1 LM61460 (6 A) | 4 A design | AW7915 3–3.5 A TX bursts | ✅ ~2.5 A headroom | +| `+3V3_AUX` | U_BUCK33A1 TPS54202 (2 A) | ~1 A design | GPS ~0.1 A + 74LVC1G17 ~mA | ✅ | +| `CM5_3.3V` (module out) | CM5 | **600 mA total** | LEDs+magjack+U5 ≈50 mA + J8 3.3 V user | ✅ if J8 draw documented ≤400 mA | +| `CM5_1.8V` (module out) | CM5 | 600 mA | R4 = nf → unloaded | ✅ | + +**Datasheet confirms (closes all "confirm vs datasheet" leftovers):** +- LM74700: C_VCAP min 0.1 µF, rec ≥10×Ciss(FET) → our 1 µF ✓; EN→ANODE = documented always-on ✓. +- LM61460: RT 33.2 k→400 kHz table row; our 31.6 k ≈ 420 kHz, in 200 k–2.2 M range ✓. + Ipk @5 A ≈ 5.8 A < HS ILIM min 8.9 A ✓. +- L5/L33 (Bourns SRP1245A-4R7M): **Isat 15 A** > ILIM max 11.5 A ✓✓; Irms ~11 A ✓. +- AP22653 (U6, R12=15 k): ILIM 0.94–1.53 A (typ 1.19 A, best-fit eqn ILIMIT_typ=30321/R^1.055), + **shared across both USB-A ports** — spec §5 wanted 0.9–1.2 A *per port*. Deviation kept + (reference-proven; protects the 5 V budget). Rev-B option: one AP22653 per port. +- TPS54202: VIN abs-max 30 V vs SMBJ18A clamp ≤29.2 V — 0.8 V margin, accepted + documented. + L33A1 (10 µH/2.5 A): Ipk @1 A ≈ 1.26 A ✓; fault current before hiccup can brush ~3 A > + Isat — acceptable (hiccup-protected), consider Isat ≥3 A part at BOM time. + +**Sequencing:** module drives its own 3.3/1.8 rails after `PMIC_EN`; `+3V3_RF` EN gated by +CM5 `PCIE_PWR_EN` (up only after boot) ✓; `+3V3_AUX` EN = UVLO divider (start 10.1 V / +stop 8.6 V) so GPS runs whenever 15 V is healthy ✓. + ## What this repo is Two intertwined goals: