├── .gitattributes ├── .github └── workflows │ └── pages.yml ├── .gitignore ├── LICENSE ├── README.md ├── SmartDiskII.kicad_pcb ├── SmartDiskII.kicad_pro ├── SmartDiskII.kicad_sch ├── SmartDiskII.pdf ├── SmartDiskII.png ├── bom ├── SmartDiskII.html ├── SmartDiskII_rev3.html └── SmartDiskII_rev4.html ├── cables.kicad_sch ├── firmware ├── 341-0128_P6A.bin ├── BOOT0.bin ├── Makefile ├── SOFTSPROM_S1.bin ├── SOFTSPROM_S2.bin ├── SOFTSPROM_S3.bin ├── SOFTSPROM_S4.bin ├── SOFTSPROM_S5.bin ├── SOFTSPROM_S6.bin ├── SOFTSPROM_S7.bin ├── SmartDiskII.bin └── SmartDiskII.s ├── gerbers └── SmartDiskII_rev4.zip └── ibom.config.ini /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- 1 | # Simple workflow for deploying static content to GitHub Pages 2 | name: Deploy static content to Pages 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: ["main"] 8 | 9 | # Allows you to run this workflow manually from the Actions tab 10 | workflow_dispatch: 11 | 12 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 13 | permissions: 14 | contents: read 15 | pages: write 16 | id-token: write 17 | 18 | # Allow one concurrent deployment 19 | concurrency: 20 | group: "pages" 21 | cancel-in-progress: true 22 | 23 | jobs: 24 | # Single deploy job since we're just deploying 25 | deploy: 26 | environment: 27 | name: github-pages 28 | url: ${{ steps.deployment.outputs.page_url }} 29 | runs-on: ubuntu-latest 30 | steps: 31 | - name: Checkout 32 | uses: actions/checkout@v3 33 | - name: Setup Pages 34 | uses: actions/configure-pages@v1 35 | - name: Upload artifact 36 | uses: actions/upload-pages-artifact@v1 37 | with: 38 | # Upload entire repository 39 | path: '.' 40 | - name: Deploy to GitHub Pages 41 | id: deployment 42 | uses: actions/deploy-pages@main 43 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # For PCBs designed using KiCad: https://www.kicad.org/ 2 | # Format documentation: https://kicad.org/help/file-formats/ 3 | 4 | # Temporary files 5 | *.000 6 | *.bak 7 | *.bck 8 | *.kicad_pcb-bak 9 | *.kicad_sch-bak 10 | *-backups 11 | *.kicad_prl 12 | *.sch-bak 13 | *~ 14 | _autosave-* 15 | *.tmp 16 | *-save.pro 17 | *-save.kicad_pcb 18 | fp-info-cache 19 | 20 | # Netlist files (exported from Eeschema) 21 | *.net 22 | 23 | # Autorouter files (exported from Pcbnew) 24 | *.dsn 25 | *.ses 26 | 27 | # Exported BOM files 28 | *.xml 29 | #*.csv 30 | 31 | # Generated Gerber files 32 | gerbers/*/ 33 | 34 | # object files 35 | *.o 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SmartDiskII 2 | 3 | The SmartDiskII is basically an Apple "Liron" disk controller with the IWM chip 4 | replaced by the discrete components from the Disk II controller, which 5 | the IWM was originally based on, and using firmware (i.e. SoftSP) which 6 | has been appropriately modified to use those components instead of the IWM. 7 | 8 | ![image info](SmartDiskII.png) 9 | 10 | [Interactive BOM](https://btb.github.io/SmartDiskII/bom/SmartDiskII.html) 11 | 12 | ## SmartPort Operation 13 | 14 | Because the SoftSP firmware (as of v6) is slot-dependent, a different copy is 15 | required for each slot the card may be used in. The slot 1 version is in the 1xxx 16 | region of the EPROM, slot 2 version is at 2xxx, etc. 17 | A set of latches (U9) is used to automatically select the appropriate region 18 | depending on which slot the SmartDiskII is placed in. 19 | 20 | ## Disk II Operation (experimental) 21 | 22 | The card is designed to also work as a regular Disk II controller, though 23 | results can be inconsistent depending on the components used. Failures of 24 | this system can lead to corrupted floppy disks. 25 | 26 | For this reason it is recommended to use true TTL ICs for all of the logic 27 | chips. In addition, for the chip at U5, Apple's original Disk II 28 | controller design called for a 9334 rather than a 74LS259. Indeed, using a 29 | 9334 does appear to make the circuit more tolerant of these issues. 30 | 31 | 5.25 Floppy operation works by having the Disk II boot rom in the 0xxx 32 | region of the EPROM, and therefore active while U9 is held in 33 | reset. Plugging a floppy drive into the DRV1 connector should automatically 34 | activate the correct firmware because of the presence of +5V on pin 12, but 35 | because some devices do not have that pin connected, 36 | you can also close jumper JP8 to force the card into Disk II boot mode. 37 | 38 | ## Configuration 39 | 40 | U8 is the standard [16-sector Disk II state machine data, P6](firmware/341-0128_P6A.bin), on a 2716-compatible EPROM. 41 | 42 | U11 is a special combination of the Disk II boot ROM and the SoftSP firmware, [SmartDiskII.bin](firmware/SmartDiskII.bin). 43 | -------------------------------------------------------------------------------- /SmartDiskII.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "board_outline_line_width": 0.09999999999999999, 7 | "copper_line_width": 0.19999999999999998, 8 | "copper_text_italic": false, 9 | "copper_text_size_h": 1.5, 10 | "copper_text_size_v": 1.5, 11 | "copper_text_thickness": 0.3, 12 | "copper_text_upright": false, 13 | "courtyard_line_width": 0.049999999999999996, 14 | "dimension_precision": 4, 15 | "dimension_units": 3, 16 | "dimensions": { 17 | "arrow_length": 1270000, 18 | "extension_offset": 500000, 19 | "keep_text_aligned": true, 20 | "suppress_zeroes": false, 21 | "text_position": 0, 22 | "units_format": 1 23 | }, 24 | "fab_line_width": 0.09999999999999999, 25 | "fab_text_italic": false, 26 | "fab_text_size_h": 1.0, 27 | "fab_text_size_v": 1.0, 28 | "fab_text_thickness": 0.15, 29 | "fab_text_upright": false, 30 | "other_line_width": 0.15, 31 | "other_text_italic": false, 32 | "other_text_size_h": 1.0, 33 | "other_text_size_v": 1.0, 34 | "other_text_thickness": 0.15, 35 | "other_text_upright": false, 36 | "pads": { 37 | "drill": 0.8, 38 | "height": 1.6, 39 | "width": 1.6 40 | }, 41 | "silk_line_width": 0.15, 42 | "silk_text_italic": false, 43 | "silk_text_size_h": 1.0, 44 | "silk_text_size_v": 1.0, 45 | "silk_text_thickness": 0.15, 46 | "silk_text_upright": false, 47 | "zones": { 48 | "45_degree_only": false, 49 | "min_clearance": 0.3175 50 | } 51 | }, 52 | "diff_pair_dimensions": [ 53 | { 54 | "gap": 0.0, 55 | "via_gap": 0.0, 56 | "width": 0.0 57 | } 58 | ], 59 | "drc_exclusions": [], 60 | "meta": { 61 | "version": 2 62 | }, 63 | "rule_severities": { 64 | "annular_width": "error", 65 | "clearance": "error", 66 | "connection_width": "warning", 67 | "copper_edge_clearance": "error", 68 | "copper_sliver": "ignore", 69 | "courtyards_overlap": "ignore", 70 | "diff_pair_gap_out_of_range": "error", 71 | "diff_pair_uncoupled_length_too_long": "error", 72 | "drill_out_of_range": "error", 73 | "duplicate_footprints": "warning", 74 | "extra_footprint": "warning", 75 | "footprint": "error", 76 | "footprint_type_mismatch": "error", 77 | "hole_clearance": "error", 78 | "hole_near_hole": "error", 79 | "invalid_outline": "error", 80 | "isolated_copper": "warning", 81 | "item_on_disabled_layer": "error", 82 | "items_not_allowed": "error", 83 | "length_out_of_range": "error", 84 | "lib_footprint_issues": "warning", 85 | "lib_footprint_mismatch": "ignore", 86 | "malformed_courtyard": "error", 87 | "microvia_drill_out_of_range": "error", 88 | "missing_courtyard": "ignore", 89 | "missing_footprint": "warning", 90 | "net_conflict": "warning", 91 | "npth_inside_courtyard": "ignore", 92 | "padstack": "error", 93 | "pth_inside_courtyard": "ignore", 94 | "shorting_items": "error", 95 | "silk_edge_clearance": "ignore", 96 | "silk_over_copper": "ignore", 97 | "silk_overlap": "ignore", 98 | "skew_out_of_range": "error", 99 | "solder_mask_bridge": "ignore", 100 | "starved_thermal": "ignore", 101 | "text_height": "ignore", 102 | "text_thickness": "warning", 103 | "through_hole_pad_without_hole": "error", 104 | "too_many_vias": "error", 105 | "track_dangling": "error", 106 | "track_width": "error", 107 | "tracks_crossing": "error", 108 | "unconnected_items": "error", 109 | "unresolved_variable": "error", 110 | "via_dangling": "warning", 111 | "zones_intersect": "error" 112 | }, 113 | "rules": { 114 | "allow_blind_buried_vias": false, 115 | "allow_microvias": false, 116 | "max_error": 0.005, 117 | "min_clearance": 0.0, 118 | "min_connection": 0.0, 119 | "min_copper_edge_clearance": 0.0, 120 | "min_hole_clearance": 0.25, 121 | "min_hole_to_hole": 0.25, 122 | "min_microvia_diameter": 0.19999999999999998, 123 | "min_microvia_drill": 0.09999999999999999, 124 | "min_resolved_spokes": 2, 125 | "min_silk_clearance": 0.0, 126 | "min_text_height": 0.7999999999999999, 127 | "min_text_thickness": 0.08, 128 | "min_through_hole_diameter": 0.3, 129 | "min_track_width": 0.15239999999999998, 130 | "min_via_annular_width": 0.049999999999999996, 131 | "min_via_diameter": 0.39999999999999997, 132 | "solder_mask_clearance": 0.0, 133 | "solder_mask_min_width": 0.0, 134 | "solder_mask_to_copper_clearance": 0.0, 135 | "use_height_for_length_calcs": true 136 | }, 137 | "teardrop_options": [ 138 | { 139 | "td_allow_use_two_tracks": true, 140 | "td_curve_segcount": 5, 141 | "td_on_pad_in_zone": false, 142 | "td_onpadsmd": false, 143 | "td_onroundshapesonly": false, 144 | "td_ontrackend": false, 145 | "td_onviapad": true 146 | } 147 | ], 148 | "teardrop_parameters": [ 149 | { 150 | "td_curve_segcount": 5, 151 | "td_height_ratio": 1.0, 152 | "td_length_ratio": 0.5, 153 | "td_maxheight": 2.0, 154 | "td_maxlen": 1.0, 155 | "td_target_name": "td_round_shape", 156 | "td_width_to_size_filter_ratio": 0.9 157 | }, 158 | { 159 | "td_curve_segcount": 5, 160 | "td_height_ratio": 1.0, 161 | "td_length_ratio": 0.5, 162 | "td_maxheight": 2.0, 163 | "td_maxlen": 1.0, 164 | "td_target_name": "td_rect_shape", 165 | "td_width_to_size_filter_ratio": 0.9 166 | }, 167 | { 168 | "td_curve_segcount": 5, 169 | "td_height_ratio": 1.0, 170 | "td_length_ratio": 0.5, 171 | "td_maxheight": 2.0, 172 | "td_maxlen": 1.0, 173 | "td_target_name": "td_track_end", 174 | "td_width_to_size_filter_ratio": 0.9 175 | } 176 | ], 177 | "track_widths": [ 178 | 0.0, 179 | 0.25, 180 | 0.3302, 181 | 0.508, 182 | 1.016, 183 | 1.27, 184 | 1.6, 185 | 2.032 186 | ], 187 | "via_dimensions": [ 188 | { 189 | "diameter": 0.0, 190 | "drill": 0.0 191 | }, 192 | { 193 | "diameter": 1.27, 194 | "drill": 0.635 195 | } 196 | ], 197 | "zones_allow_external_fillets": false, 198 | "zones_use_no_outline": true 199 | }, 200 | "layer_presets": [], 201 | "viewports": [] 202 | }, 203 | "boards": [], 204 | "cvpcb": { 205 | "equivalence_files": [] 206 | }, 207 | "erc": { 208 | "erc_exclusions": [], 209 | "meta": { 210 | "version": 0 211 | }, 212 | "pin_map": [ 213 | [ 214 | 0, 215 | 0, 216 | 0, 217 | 0, 218 | 0, 219 | 0, 220 | 1, 221 | 0, 222 | 0, 223 | 0, 224 | 0, 225 | 2 226 | ], 227 | [ 228 | 0, 229 | 2, 230 | 0, 231 | 1, 232 | 0, 233 | 0, 234 | 1, 235 | 0, 236 | 2, 237 | 2, 238 | 2, 239 | 2 240 | ], 241 | [ 242 | 0, 243 | 0, 244 | 0, 245 | 0, 246 | 0, 247 | 0, 248 | 1, 249 | 0, 250 | 1, 251 | 0, 252 | 1, 253 | 2 254 | ], 255 | [ 256 | 0, 257 | 1, 258 | 0, 259 | 0, 260 | 0, 261 | 0, 262 | 1, 263 | 1, 264 | 2, 265 | 0, 266 | 1, 267 | 2 268 | ], 269 | [ 270 | 0, 271 | 0, 272 | 0, 273 | 0, 274 | 0, 275 | 0, 276 | 1, 277 | 0, 278 | 0, 279 | 0, 280 | 0, 281 | 2 282 | ], 283 | [ 284 | 0, 285 | 0, 286 | 0, 287 | 0, 288 | 0, 289 | 0, 290 | 0, 291 | 0, 292 | 0, 293 | 0, 294 | 0, 295 | 2 296 | ], 297 | [ 298 | 1, 299 | 1, 300 | 1, 301 | 1, 302 | 1, 303 | 0, 304 | 1, 305 | 1, 306 | 1, 307 | 1, 308 | 1, 309 | 2 310 | ], 311 | [ 312 | 0, 313 | 0, 314 | 0, 315 | 1, 316 | 0, 317 | 0, 318 | 1, 319 | 0, 320 | 0, 321 | 0, 322 | 0, 323 | 2 324 | ], 325 | [ 326 | 0, 327 | 2, 328 | 1, 329 | 2, 330 | 0, 331 | 0, 332 | 1, 333 | 0, 334 | 2, 335 | 2, 336 | 2, 337 | 2 338 | ], 339 | [ 340 | 0, 341 | 2, 342 | 0, 343 | 0, 344 | 0, 345 | 0, 346 | 1, 347 | 0, 348 | 2, 349 | 0, 350 | 0, 351 | 2 352 | ], 353 | [ 354 | 0, 355 | 2, 356 | 1, 357 | 1, 358 | 0, 359 | 0, 360 | 1, 361 | 0, 362 | 2, 363 | 0, 364 | 0, 365 | 2 366 | ], 367 | [ 368 | 2, 369 | 2, 370 | 2, 371 | 2, 372 | 2, 373 | 2, 374 | 2, 375 | 2, 376 | 2, 377 | 2, 378 | 2, 379 | 2 380 | ] 381 | ], 382 | "rule_severities": { 383 | "bus_definition_conflict": "error", 384 | "bus_entry_needed": "error", 385 | "bus_to_bus_conflict": "error", 386 | "bus_to_net_conflict": "error", 387 | "conflicting_netclasses": "error", 388 | "different_unit_footprint": "error", 389 | "different_unit_net": "error", 390 | "duplicate_reference": "error", 391 | "duplicate_sheet_names": "error", 392 | "endpoint_off_grid": "warning", 393 | "extra_units": "error", 394 | "global_label_dangling": "warning", 395 | "hier_label_mismatch": "error", 396 | "label_dangling": "error", 397 | "lib_symbol_issues": "ignore", 398 | "missing_bidi_pin": "warning", 399 | "missing_input_pin": "warning", 400 | "missing_power_pin": "error", 401 | "missing_unit": "warning", 402 | "multiple_net_names": "warning", 403 | "net_not_bus_member": "ignore", 404 | "no_connect_connected": "warning", 405 | "no_connect_dangling": "warning", 406 | "pin_not_connected": "error", 407 | "pin_not_driven": "error", 408 | "pin_to_pin": "error", 409 | "power_pin_not_driven": "error", 410 | "similar_labels": "warning", 411 | "simulation_model_issue": "ignore", 412 | "unannotated": "error", 413 | "unit_value_mismatch": "error", 414 | "unresolved_variable": "error", 415 | "wire_dangling": "error" 416 | } 417 | }, 418 | "libraries": { 419 | "pinned_footprint_libs": [], 420 | "pinned_symbol_libs": [] 421 | }, 422 | "meta": { 423 | "filename": "SmartDiskII.kicad_pro", 424 | "version": 1 425 | }, 426 | "net_settings": { 427 | "classes": [ 428 | { 429 | "bus_width": 12, 430 | "clearance": 0.1778, 431 | "diff_pair_gap": 0.25, 432 | "diff_pair_via_gap": 0.25, 433 | "diff_pair_width": 0.2, 434 | "line_style": 0, 435 | "microvia_diameter": 0.3, 436 | "microvia_drill": 0.1, 437 | "name": "Default", 438 | "pcb_color": "rgba(0, 0, 0, 0.000)", 439 | "schematic_color": "rgba(0, 0, 0, 0.000)", 440 | "track_width": 0.18796, 441 | "via_diameter": 0.6858, 442 | "via_drill": 0.3302, 443 | "wire_width": 6 444 | }, 445 | { 446 | "bus_width": 12, 447 | "clearance": 0.254, 448 | "diff_pair_gap": 0.25, 449 | "diff_pair_via_gap": 0.25, 450 | "diff_pair_width": 0.2, 451 | "line_style": 0, 452 | "microvia_diameter": 0.3, 453 | "microvia_drill": 0.1, 454 | "name": "Power", 455 | "pcb_color": "rgba(0, 0, 0, 0.000)", 456 | "schematic_color": "rgba(0, 0, 0, 0.000)", 457 | "track_width": 0.3048, 458 | "via_diameter": 1.27, 459 | "via_drill": 0.762, 460 | "wire_width": 6 461 | }, 462 | { 463 | "bus_width": 12, 464 | "clearance": 0.254, 465 | "diff_pair_gap": 0.25, 466 | "diff_pair_via_gap": 0.25, 467 | "diff_pair_width": 0.2, 468 | "line_style": 0, 469 | "microvia_diameter": 0.3, 470 | "microvia_drill": 0.1, 471 | "name": "Power2", 472 | "pcb_color": "rgba(0, 0, 0, 0.000)", 473 | "schematic_color": "rgba(0, 0, 0, 0.000)", 474 | "track_width": 0.508, 475 | "via_diameter": 0.8, 476 | "via_drill": 0.4, 477 | "wire_width": 6 478 | } 479 | ], 480 | "meta": { 481 | "version": 3 482 | }, 483 | "net_colors": null, 484 | "netclass_assignments": null, 485 | "netclass_patterns": [ 486 | { 487 | "netclass": "Power", 488 | "pattern": "GND" 489 | }, 490 | { 491 | "netclass": "Power", 492 | "pattern": "+5V" 493 | }, 494 | { 495 | "netclass": "Power", 496 | "pattern": "+12V" 497 | }, 498 | { 499 | "netclass": "Power", 500 | "pattern": "-5V" 501 | }, 502 | { 503 | "netclass": "Power", 504 | "pattern": "-12V" 505 | } 506 | ] 507 | }, 508 | "pcbnew": { 509 | "last_paths": { 510 | "gencad": "", 511 | "idf": "", 512 | "netlist": "", 513 | "specctra_dsn": "", 514 | "step": "", 515 | "vrml": "" 516 | }, 517 | "page_layout_descr_file": "" 518 | }, 519 | "schematic": { 520 | "annotate_start_num": 0, 521 | "drawing": { 522 | "dashed_lines_dash_length_ratio": 12.0, 523 | "dashed_lines_gap_length_ratio": 3.0, 524 | "default_line_thickness": 6.0, 525 | "default_text_size": 50.0, 526 | "field_names": [], 527 | "intersheets_ref_own_page": false, 528 | "intersheets_ref_prefix": "", 529 | "intersheets_ref_short": false, 530 | "intersheets_ref_show": false, 531 | "intersheets_ref_suffix": "", 532 | "junction_size_choice": 3, 533 | "label_size_ratio": 0.375, 534 | "pin_symbol_size": 25.0, 535 | "text_offset_ratio": 0.15 536 | }, 537 | "legacy_lib_dir": "", 538 | "legacy_lib_list": [], 539 | "meta": { 540 | "version": 1 541 | }, 542 | "net_format_name": "", 543 | "ngspice": { 544 | "fix_include_paths": true, 545 | "fix_passive_vals": false, 546 | "meta": { 547 | "version": 0 548 | }, 549 | "model_mode": 0, 550 | "workbook_filename": "" 551 | }, 552 | "page_layout_descr_file": "", 553 | "plot_directory": "gerbers/", 554 | "spice_adjust_passive_values": false, 555 | "spice_current_sheet_as_root": false, 556 | "spice_external_command": "spice \"%I\"", 557 | "spice_model_current_sheet_as_root": true, 558 | "spice_save_all_currents": false, 559 | "spice_save_all_voltages": false, 560 | "subpart_first_id": 65, 561 | "subpart_id_separator": 0 562 | }, 563 | "sheets": [ 564 | [ 565 | "c5fa29fb-f00a-43d2-879f-1e361b003a2a", 566 | "" 567 | ], 568 | [ 569 | "4d4100c6-4979-4191-9309-82d4f93e23eb", 570 | "Cables" 571 | ] 572 | ], 573 | "text_variables": {} 574 | } 575 | -------------------------------------------------------------------------------- /SmartDiskII.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/SmartDiskII.pdf -------------------------------------------------------------------------------- /SmartDiskII.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/SmartDiskII.png -------------------------------------------------------------------------------- /cables.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch (version 20230121) (generator eeschema) 2 | 3 | (uuid 93d030ef-4950-48f6-abc6-27bd21caff5e) 4 | 5 | (paper "A3") 6 | 7 | (lib_symbols 8 | (symbol "Connector:DB25_Plug" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 9 | (property "Reference" "J" (at 0 34.29 0) 10 | (effects (font (size 1.27 1.27))) 11 | ) 12 | (property "Value" "DB25_Plug" (at 0 -34.925 0) 13 | (effects (font (size 1.27 1.27))) 14 | ) 15 | (property "Footprint" "" (at 0 0 0) 16 | (effects (font (size 1.27 1.27)) hide) 17 | ) 18 | (property "Datasheet" " ~" (at 0 0 0) 19 | (effects (font (size 1.27 1.27)) hide) 20 | ) 21 | (property "ki_keywords" "male plug D-SUB connector" (at 0 0 0) 22 | (effects (font (size 1.27 1.27)) hide) 23 | ) 24 | (property "ki_description" "25-pin male plug pin D-SUB connector" (at 0 0 0) 25 | (effects (font (size 1.27 1.27)) hide) 26 | ) 27 | (property "ki_fp_filters" "DSUB*Male*" (at 0 0 0) 28 | (effects (font (size 1.27 1.27)) hide) 29 | ) 30 | (symbol "DB25_Plug_0_1" 31 | (circle (center -1.778 -30.48) (radius 0.762) 32 | (stroke (width 0) (type default)) 33 | (fill (type outline)) 34 | ) 35 | (circle (center -1.778 -25.4) (radius 0.762) 36 | (stroke (width 0) (type default)) 37 | (fill (type outline)) 38 | ) 39 | (circle (center -1.778 -20.32) (radius 0.762) 40 | (stroke (width 0) (type default)) 41 | (fill (type outline)) 42 | ) 43 | (circle (center -1.778 -15.24) (radius 0.762) 44 | (stroke (width 0) (type default)) 45 | (fill (type outline)) 46 | ) 47 | (circle (center -1.778 -10.16) (radius 0.762) 48 | (stroke (width 0) (type default)) 49 | (fill (type outline)) 50 | ) 51 | (circle (center -1.778 -5.08) (radius 0.762) 52 | (stroke (width 0) (type default)) 53 | (fill (type outline)) 54 | ) 55 | (circle (center -1.778 0) (radius 0.762) 56 | (stroke (width 0) (type default)) 57 | (fill (type outline)) 58 | ) 59 | (circle (center -1.778 5.08) (radius 0.762) 60 | (stroke (width 0) (type default)) 61 | (fill (type outline)) 62 | ) 63 | (circle (center -1.778 10.16) (radius 0.762) 64 | (stroke (width 0) (type default)) 65 | (fill (type outline)) 66 | ) 67 | (circle (center -1.778 15.24) (radius 0.762) 68 | (stroke (width 0) (type default)) 69 | (fill (type outline)) 70 | ) 71 | (circle (center -1.778 20.32) (radius 0.762) 72 | (stroke (width 0) (type default)) 73 | (fill (type outline)) 74 | ) 75 | (circle (center -1.778 25.4) (radius 0.762) 76 | (stroke (width 0) (type default)) 77 | (fill (type outline)) 78 | ) 79 | (circle (center -1.778 30.48) (radius 0.762) 80 | (stroke (width 0) (type default)) 81 | (fill (type outline)) 82 | ) 83 | (polyline 84 | (pts 85 | (xy -3.81 -30.48) 86 | (xy -2.54 -30.48) 87 | ) 88 | (stroke (width 0) (type default)) 89 | (fill (type none)) 90 | ) 91 | (polyline 92 | (pts 93 | (xy -3.81 -27.94) 94 | (xy 0.508 -27.94) 95 | ) 96 | (stroke (width 0) (type default)) 97 | (fill (type none)) 98 | ) 99 | (polyline 100 | (pts 101 | (xy -3.81 -25.4) 102 | (xy -2.54 -25.4) 103 | ) 104 | (stroke (width 0) (type default)) 105 | (fill (type none)) 106 | ) 107 | (polyline 108 | (pts 109 | (xy -3.81 -22.86) 110 | (xy 0.508 -22.86) 111 | ) 112 | (stroke (width 0) (type default)) 113 | (fill (type none)) 114 | ) 115 | (polyline 116 | (pts 117 | (xy -3.81 -20.32) 118 | (xy -2.54 -20.32) 119 | ) 120 | (stroke (width 0) (type default)) 121 | (fill (type none)) 122 | ) 123 | (polyline 124 | (pts 125 | (xy -3.81 -17.78) 126 | (xy 0.508 -17.78) 127 | ) 128 | (stroke (width 0) (type default)) 129 | (fill (type none)) 130 | ) 131 | (polyline 132 | (pts 133 | (xy -3.81 -15.24) 134 | (xy -2.54 -15.24) 135 | ) 136 | (stroke (width 0) (type default)) 137 | (fill (type none)) 138 | ) 139 | (polyline 140 | (pts 141 | (xy -3.81 -12.7) 142 | (xy 0.508 -12.7) 143 | ) 144 | (stroke (width 0) (type default)) 145 | (fill (type none)) 146 | ) 147 | (polyline 148 | (pts 149 | (xy -3.81 -10.16) 150 | (xy -2.54 -10.16) 151 | ) 152 | (stroke (width 0) (type default)) 153 | (fill (type none)) 154 | ) 155 | (polyline 156 | (pts 157 | (xy -3.81 -7.62) 158 | (xy 0.508 -7.62) 159 | ) 160 | (stroke (width 0) (type default)) 161 | (fill (type none)) 162 | ) 163 | (polyline 164 | (pts 165 | (xy -3.81 -5.08) 166 | (xy -2.54 -5.08) 167 | ) 168 | (stroke (width 0) (type default)) 169 | (fill (type none)) 170 | ) 171 | (polyline 172 | (pts 173 | (xy -3.81 -2.54) 174 | (xy 0.508 -2.54) 175 | ) 176 | (stroke (width 0) (type default)) 177 | (fill (type none)) 178 | ) 179 | (polyline 180 | (pts 181 | (xy -3.81 0) 182 | (xy -2.54 0) 183 | ) 184 | (stroke (width 0) (type default)) 185 | (fill (type none)) 186 | ) 187 | (polyline 188 | (pts 189 | (xy -3.81 2.54) 190 | (xy 0.508 2.54) 191 | ) 192 | (stroke (width 0) (type default)) 193 | (fill (type none)) 194 | ) 195 | (polyline 196 | (pts 197 | (xy -3.81 5.08) 198 | (xy -2.54 5.08) 199 | ) 200 | (stroke (width 0) (type default)) 201 | (fill (type none)) 202 | ) 203 | (polyline 204 | (pts 205 | (xy -3.81 7.62) 206 | (xy 0.508 7.62) 207 | ) 208 | (stroke (width 0) (type default)) 209 | (fill (type none)) 210 | ) 211 | (polyline 212 | (pts 213 | (xy -3.81 10.16) 214 | (xy -2.54 10.16) 215 | ) 216 | (stroke (width 0) (type default)) 217 | (fill (type none)) 218 | ) 219 | (polyline 220 | (pts 221 | (xy -3.81 12.7) 222 | (xy 0.508 12.7) 223 | ) 224 | (stroke (width 0) (type default)) 225 | (fill (type none)) 226 | ) 227 | (polyline 228 | (pts 229 | (xy -3.81 15.24) 230 | (xy -2.54 15.24) 231 | ) 232 | (stroke (width 0) (type default)) 233 | (fill (type none)) 234 | ) 235 | (polyline 236 | (pts 237 | (xy -3.81 17.78) 238 | (xy 0.508 17.78) 239 | ) 240 | (stroke (width 0) (type default)) 241 | (fill (type none)) 242 | ) 243 | (polyline 244 | (pts 245 | (xy -3.81 20.32) 246 | (xy -2.54 20.32) 247 | ) 248 | (stroke (width 0) (type default)) 249 | (fill (type none)) 250 | ) 251 | (polyline 252 | (pts 253 | (xy -3.81 22.86) 254 | (xy 0.508 22.86) 255 | ) 256 | (stroke (width 0) (type default)) 257 | (fill (type none)) 258 | ) 259 | (polyline 260 | (pts 261 | (xy -3.81 25.4) 262 | (xy -2.54 25.4) 263 | ) 264 | (stroke (width 0) (type default)) 265 | (fill (type none)) 266 | ) 267 | (polyline 268 | (pts 269 | (xy -3.81 27.94) 270 | (xy 0.508 27.94) 271 | ) 272 | (stroke (width 0) (type default)) 273 | (fill (type none)) 274 | ) 275 | (polyline 276 | (pts 277 | (xy -3.81 30.48) 278 | (xy -2.54 30.48) 279 | ) 280 | (stroke (width 0) (type default)) 281 | (fill (type none)) 282 | ) 283 | (polyline 284 | (pts 285 | (xy -3.81 -33.655) 286 | (xy 3.81 -29.845) 287 | (xy 3.81 29.845) 288 | (xy -3.81 33.655) 289 | (xy -3.81 -33.655) 290 | ) 291 | (stroke (width 0.254) (type default)) 292 | (fill (type background)) 293 | ) 294 | (circle (center 1.27 -27.94) (radius 0.762) 295 | (stroke (width 0) (type default)) 296 | (fill (type outline)) 297 | ) 298 | (circle (center 1.27 -22.86) (radius 0.762) 299 | (stroke (width 0) (type default)) 300 | (fill (type outline)) 301 | ) 302 | (circle (center 1.27 -17.78) (radius 0.762) 303 | (stroke (width 0) (type default)) 304 | (fill (type outline)) 305 | ) 306 | (circle (center 1.27 -12.7) (radius 0.762) 307 | (stroke (width 0) (type default)) 308 | (fill (type outline)) 309 | ) 310 | (circle (center 1.27 -7.62) (radius 0.762) 311 | (stroke (width 0) (type default)) 312 | (fill (type outline)) 313 | ) 314 | (circle (center 1.27 -2.54) (radius 0.762) 315 | (stroke (width 0) (type default)) 316 | (fill (type outline)) 317 | ) 318 | (circle (center 1.27 2.54) (radius 0.762) 319 | (stroke (width 0) (type default)) 320 | (fill (type outline)) 321 | ) 322 | (circle (center 1.27 7.62) (radius 0.762) 323 | (stroke (width 0) (type default)) 324 | (fill (type outline)) 325 | ) 326 | (circle (center 1.27 12.7) (radius 0.762) 327 | (stroke (width 0) (type default)) 328 | (fill (type outline)) 329 | ) 330 | (circle (center 1.27 17.78) (radius 0.762) 331 | (stroke (width 0) (type default)) 332 | (fill (type outline)) 333 | ) 334 | (circle (center 1.27 22.86) (radius 0.762) 335 | (stroke (width 0) (type default)) 336 | (fill (type outline)) 337 | ) 338 | (circle (center 1.27 27.94) (radius 0.762) 339 | (stroke (width 0) (type default)) 340 | (fill (type outline)) 341 | ) 342 | ) 343 | (symbol "DB25_Plug_1_1" 344 | (pin passive line (at -7.62 -30.48 0) (length 3.81) 345 | (name "1" (effects (font (size 1.27 1.27)))) 346 | (number "1" (effects (font (size 1.27 1.27)))) 347 | ) 348 | (pin passive line (at -7.62 15.24 0) (length 3.81) 349 | (name "10" (effects (font (size 1.27 1.27)))) 350 | (number "10" (effects (font (size 1.27 1.27)))) 351 | ) 352 | (pin passive line (at -7.62 20.32 0) (length 3.81) 353 | (name "11" (effects (font (size 1.27 1.27)))) 354 | (number "11" (effects (font (size 1.27 1.27)))) 355 | ) 356 | (pin passive line (at -7.62 25.4 0) (length 3.81) 357 | (name "12" (effects (font (size 1.27 1.27)))) 358 | (number "12" (effects (font (size 1.27 1.27)))) 359 | ) 360 | (pin passive line (at -7.62 30.48 0) (length 3.81) 361 | (name "13" (effects (font (size 1.27 1.27)))) 362 | (number "13" (effects (font (size 1.27 1.27)))) 363 | ) 364 | (pin passive line (at -7.62 -27.94 0) (length 3.81) 365 | (name "P14" (effects (font (size 1.27 1.27)))) 366 | (number "14" (effects (font (size 1.27 1.27)))) 367 | ) 368 | (pin passive line (at -7.62 -22.86 0) (length 3.81) 369 | (name "P15" (effects (font (size 1.27 1.27)))) 370 | (number "15" (effects (font (size 1.27 1.27)))) 371 | ) 372 | (pin passive line (at -7.62 -17.78 0) (length 3.81) 373 | (name "P16" (effects (font (size 1.27 1.27)))) 374 | (number "16" (effects (font (size 1.27 1.27)))) 375 | ) 376 | (pin passive line (at -7.62 -12.7 0) (length 3.81) 377 | (name "P17" (effects (font (size 1.27 1.27)))) 378 | (number "17" (effects (font (size 1.27 1.27)))) 379 | ) 380 | (pin passive line (at -7.62 -7.62 0) (length 3.81) 381 | (name "P18" (effects (font (size 1.27 1.27)))) 382 | (number "18" (effects (font (size 1.27 1.27)))) 383 | ) 384 | (pin passive line (at -7.62 -2.54 0) (length 3.81) 385 | (name "P19" (effects (font (size 1.27 1.27)))) 386 | (number "19" (effects (font (size 1.27 1.27)))) 387 | ) 388 | (pin passive line (at -7.62 -25.4 0) (length 3.81) 389 | (name "2" (effects (font (size 1.27 1.27)))) 390 | (number "2" (effects (font (size 1.27 1.27)))) 391 | ) 392 | (pin passive line (at -7.62 2.54 0) (length 3.81) 393 | (name "P20" (effects (font (size 1.27 1.27)))) 394 | (number "20" (effects (font (size 1.27 1.27)))) 395 | ) 396 | (pin passive line (at -7.62 7.62 0) (length 3.81) 397 | (name "P21" (effects (font (size 1.27 1.27)))) 398 | (number "21" (effects (font (size 1.27 1.27)))) 399 | ) 400 | (pin passive line (at -7.62 12.7 0) (length 3.81) 401 | (name "P22" (effects (font (size 1.27 1.27)))) 402 | (number "22" (effects (font (size 1.27 1.27)))) 403 | ) 404 | (pin passive line (at -7.62 17.78 0) (length 3.81) 405 | (name "P23" (effects (font (size 1.27 1.27)))) 406 | (number "23" (effects (font (size 1.27 1.27)))) 407 | ) 408 | (pin passive line (at -7.62 22.86 0) (length 3.81) 409 | (name "P24" (effects (font (size 1.27 1.27)))) 410 | (number "24" (effects (font (size 1.27 1.27)))) 411 | ) 412 | (pin passive line (at -7.62 27.94 0) (length 3.81) 413 | (name "P25" (effects (font (size 1.27 1.27)))) 414 | (number "25" (effects (font (size 1.27 1.27)))) 415 | ) 416 | (pin passive line (at -7.62 -20.32 0) (length 3.81) 417 | (name "3" (effects (font (size 1.27 1.27)))) 418 | (number "3" (effects (font (size 1.27 1.27)))) 419 | ) 420 | (pin passive line (at -7.62 -15.24 0) (length 3.81) 421 | (name "4" (effects (font (size 1.27 1.27)))) 422 | (number "4" (effects (font (size 1.27 1.27)))) 423 | ) 424 | (pin passive line (at -7.62 -10.16 0) (length 3.81) 425 | (name "5" (effects (font (size 1.27 1.27)))) 426 | (number "5" (effects (font (size 1.27 1.27)))) 427 | ) 428 | (pin passive line (at -7.62 -5.08 0) (length 3.81) 429 | (name "6" (effects (font (size 1.27 1.27)))) 430 | (number "6" (effects (font (size 1.27 1.27)))) 431 | ) 432 | (pin passive line (at -7.62 0 0) (length 3.81) 433 | (name "7" (effects (font (size 1.27 1.27)))) 434 | (number "7" (effects (font (size 1.27 1.27)))) 435 | ) 436 | (pin passive line (at -7.62 5.08 0) (length 3.81) 437 | (name "8" (effects (font (size 1.27 1.27)))) 438 | (number "8" (effects (font (size 1.27 1.27)))) 439 | ) 440 | (pin passive line (at -7.62 10.16 0) (length 3.81) 441 | (name "9" (effects (font (size 1.27 1.27)))) 442 | (number "9" (effects (font (size 1.27 1.27)))) 443 | ) 444 | ) 445 | ) 446 | (symbol "Connector_Generic:Conn_01x20" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 447 | (property "Reference" "J" (at 0 25.4 0) 448 | (effects (font (size 1.27 1.27))) 449 | ) 450 | (property "Value" "Conn_01x20" (at 0 -27.94 0) 451 | (effects (font (size 1.27 1.27))) 452 | ) 453 | (property "Footprint" "" (at 0 0 0) 454 | (effects (font (size 1.27 1.27)) hide) 455 | ) 456 | (property "Datasheet" "~" (at 0 0 0) 457 | (effects (font (size 1.27 1.27)) hide) 458 | ) 459 | (property "ki_keywords" "connector" (at 0 0 0) 460 | (effects (font (size 1.27 1.27)) hide) 461 | ) 462 | (property "ki_description" "Generic connector, single row, 01x20, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) 463 | (effects (font (size 1.27 1.27)) hide) 464 | ) 465 | (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0) 466 | (effects (font (size 1.27 1.27)) hide) 467 | ) 468 | (symbol "Conn_01x20_1_1" 469 | (rectangle (start -1.27 -25.273) (end 0 -25.527) 470 | (stroke (width 0.1524) (type default)) 471 | (fill (type none)) 472 | ) 473 | (rectangle (start -1.27 -22.733) (end 0 -22.987) 474 | (stroke (width 0.1524) (type default)) 475 | (fill (type none)) 476 | ) 477 | (rectangle (start -1.27 -20.193) (end 0 -20.447) 478 | (stroke (width 0.1524) (type default)) 479 | (fill (type none)) 480 | ) 481 | (rectangle (start -1.27 -17.653) (end 0 -17.907) 482 | (stroke (width 0.1524) (type default)) 483 | (fill (type none)) 484 | ) 485 | (rectangle (start -1.27 -15.113) (end 0 -15.367) 486 | (stroke (width 0.1524) (type default)) 487 | (fill (type none)) 488 | ) 489 | (rectangle (start -1.27 -12.573) (end 0 -12.827) 490 | (stroke (width 0.1524) (type default)) 491 | (fill (type none)) 492 | ) 493 | (rectangle (start -1.27 -10.033) (end 0 -10.287) 494 | (stroke (width 0.1524) (type default)) 495 | (fill (type none)) 496 | ) 497 | (rectangle (start -1.27 -7.493) (end 0 -7.747) 498 | (stroke (width 0.1524) (type default)) 499 | (fill (type none)) 500 | ) 501 | (rectangle (start -1.27 -4.953) (end 0 -5.207) 502 | (stroke (width 0.1524) (type default)) 503 | (fill (type none)) 504 | ) 505 | (rectangle (start -1.27 -2.413) (end 0 -2.667) 506 | (stroke (width 0.1524) (type default)) 507 | (fill (type none)) 508 | ) 509 | (rectangle (start -1.27 0.127) (end 0 -0.127) 510 | (stroke (width 0.1524) (type default)) 511 | (fill (type none)) 512 | ) 513 | (rectangle (start -1.27 2.667) (end 0 2.413) 514 | (stroke (width 0.1524) (type default)) 515 | (fill (type none)) 516 | ) 517 | (rectangle (start -1.27 5.207) (end 0 4.953) 518 | (stroke (width 0.1524) (type default)) 519 | (fill (type none)) 520 | ) 521 | (rectangle (start -1.27 7.747) (end 0 7.493) 522 | (stroke (width 0.1524) (type default)) 523 | (fill (type none)) 524 | ) 525 | (rectangle (start -1.27 10.287) (end 0 10.033) 526 | (stroke (width 0.1524) (type default)) 527 | (fill (type none)) 528 | ) 529 | (rectangle (start -1.27 12.827) (end 0 12.573) 530 | (stroke (width 0.1524) (type default)) 531 | (fill (type none)) 532 | ) 533 | (rectangle (start -1.27 15.367) (end 0 15.113) 534 | (stroke (width 0.1524) (type default)) 535 | (fill (type none)) 536 | ) 537 | (rectangle (start -1.27 17.907) (end 0 17.653) 538 | (stroke (width 0.1524) (type default)) 539 | (fill (type none)) 540 | ) 541 | (rectangle (start -1.27 20.447) (end 0 20.193) 542 | (stroke (width 0.1524) (type default)) 543 | (fill (type none)) 544 | ) 545 | (rectangle (start -1.27 22.987) (end 0 22.733) 546 | (stroke (width 0.1524) (type default)) 547 | (fill (type none)) 548 | ) 549 | (rectangle (start -1.27 24.13) (end 1.27 -26.67) 550 | (stroke (width 0.254) (type default)) 551 | (fill (type background)) 552 | ) 553 | (pin passive line (at -5.08 22.86 0) (length 3.81) 554 | (name "Pin_1" (effects (font (size 1.27 1.27)))) 555 | (number "1" (effects (font (size 1.27 1.27)))) 556 | ) 557 | (pin passive line (at -5.08 0 0) (length 3.81) 558 | (name "Pin_10" (effects (font (size 1.27 1.27)))) 559 | (number "10" (effects (font (size 1.27 1.27)))) 560 | ) 561 | (pin passive line (at -5.08 -2.54 0) (length 3.81) 562 | (name "Pin_11" (effects (font (size 1.27 1.27)))) 563 | (number "11" (effects (font (size 1.27 1.27)))) 564 | ) 565 | (pin passive line (at -5.08 -5.08 0) (length 3.81) 566 | (name "Pin_12" (effects (font (size 1.27 1.27)))) 567 | (number "12" (effects (font (size 1.27 1.27)))) 568 | ) 569 | (pin passive line (at -5.08 -7.62 0) (length 3.81) 570 | (name "Pin_13" (effects (font (size 1.27 1.27)))) 571 | (number "13" (effects (font (size 1.27 1.27)))) 572 | ) 573 | (pin passive line (at -5.08 -10.16 0) (length 3.81) 574 | (name "Pin_14" (effects (font (size 1.27 1.27)))) 575 | (number "14" (effects (font (size 1.27 1.27)))) 576 | ) 577 | (pin passive line (at -5.08 -12.7 0) (length 3.81) 578 | (name "Pin_15" (effects (font (size 1.27 1.27)))) 579 | (number "15" (effects (font (size 1.27 1.27)))) 580 | ) 581 | (pin passive line (at -5.08 -15.24 0) (length 3.81) 582 | (name "Pin_16" (effects (font (size 1.27 1.27)))) 583 | (number "16" (effects (font (size 1.27 1.27)))) 584 | ) 585 | (pin passive line (at -5.08 -17.78 0) (length 3.81) 586 | (name "Pin_17" (effects (font (size 1.27 1.27)))) 587 | (number "17" (effects (font (size 1.27 1.27)))) 588 | ) 589 | (pin passive line (at -5.08 -20.32 0) (length 3.81) 590 | (name "Pin_18" (effects (font (size 1.27 1.27)))) 591 | (number "18" (effects (font (size 1.27 1.27)))) 592 | ) 593 | (pin passive line (at -5.08 -22.86 0) (length 3.81) 594 | (name "Pin_19" (effects (font (size 1.27 1.27)))) 595 | (number "19" (effects (font (size 1.27 1.27)))) 596 | ) 597 | (pin passive line (at -5.08 20.32 0) (length 3.81) 598 | (name "Pin_2" (effects (font (size 1.27 1.27)))) 599 | (number "2" (effects (font (size 1.27 1.27)))) 600 | ) 601 | (pin passive line (at -5.08 -25.4 0) (length 3.81) 602 | (name "Pin_20" (effects (font (size 1.27 1.27)))) 603 | (number "20" (effects (font (size 1.27 1.27)))) 604 | ) 605 | (pin passive line (at -5.08 17.78 0) (length 3.81) 606 | (name "Pin_3" (effects (font (size 1.27 1.27)))) 607 | (number "3" (effects (font (size 1.27 1.27)))) 608 | ) 609 | (pin passive line (at -5.08 15.24 0) (length 3.81) 610 | (name "Pin_4" (effects (font (size 1.27 1.27)))) 611 | (number "4" (effects (font (size 1.27 1.27)))) 612 | ) 613 | (pin passive line (at -5.08 12.7 0) (length 3.81) 614 | (name "Pin_5" (effects (font (size 1.27 1.27)))) 615 | (number "5" (effects (font (size 1.27 1.27)))) 616 | ) 617 | (pin passive line (at -5.08 10.16 0) (length 3.81) 618 | (name "Pin_6" (effects (font (size 1.27 1.27)))) 619 | (number "6" (effects (font (size 1.27 1.27)))) 620 | ) 621 | (pin passive line (at -5.08 7.62 0) (length 3.81) 622 | (name "Pin_7" (effects (font (size 1.27 1.27)))) 623 | (number "7" (effects (font (size 1.27 1.27)))) 624 | ) 625 | (pin passive line (at -5.08 5.08 0) (length 3.81) 626 | (name "Pin_8" (effects (font (size 1.27 1.27)))) 627 | (number "8" (effects (font (size 1.27 1.27)))) 628 | ) 629 | (pin passive line (at -5.08 2.54 0) (length 3.81) 630 | (name "Pin_9" (effects (font (size 1.27 1.27)))) 631 | (number "9" (effects (font (size 1.27 1.27)))) 632 | ) 633 | ) 634 | ) 635 | (symbol "MyConnector:DSUB19_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 636 | (property "Reference" "J" (at 0 26.67 0) 637 | (effects (font (size 1.27 1.27))) 638 | ) 639 | (property "Value" "DSUB19_Female" (at 0 -27.94 0) 640 | (effects (font (size 1.27 1.27))) 641 | ) 642 | (property "Footprint" "" (at 0 12.7 0) 643 | (effects (font (size 1.27 1.27)) hide) 644 | ) 645 | (property "Datasheet" " ~" (at 0 12.7 0) 646 | (effects (font (size 1.27 1.27)) hide) 647 | ) 648 | (property "ki_keywords" "connector female D-SUB" (at 0 0 0) 649 | (effects (font (size 1.27 1.27)) hide) 650 | ) 651 | (property "ki_description" "9-pin female D-SUB connector" (at 0 0 0) 652 | (effects (font (size 1.27 1.27)) hide) 653 | ) 654 | (property "ki_fp_filters" "DSUB*Female*" (at 0 0 0) 655 | (effects (font (size 1.27 1.27)) hide) 656 | ) 657 | (symbol "DSUB19_Female_0_1" 658 | (circle (center -1.778 -22.86) (radius 0.762) 659 | (stroke (width 0) (type default)) 660 | (fill (type none)) 661 | ) 662 | (circle (center -1.778 -17.78) (radius 0.762) 663 | (stroke (width 0) (type default)) 664 | (fill (type none)) 665 | ) 666 | (circle (center -1.778 -12.7) (radius 0.762) 667 | (stroke (width 0) (type default)) 668 | (fill (type none)) 669 | ) 670 | (circle (center -1.778 -7.62) (radius 0.762) 671 | (stroke (width 0) (type default)) 672 | (fill (type none)) 673 | ) 674 | (circle (center -1.778 -2.54) (radius 0.762) 675 | (stroke (width 0) (type default)) 676 | (fill (type none)) 677 | ) 678 | (circle (center -1.778 2.54) (radius 0.762) 679 | (stroke (width 0) (type default)) 680 | (fill (type none)) 681 | ) 682 | (circle (center -1.778 7.62) (radius 0.762) 683 | (stroke (width 0) (type default)) 684 | (fill (type none)) 685 | ) 686 | (circle (center -1.778 12.7) (radius 0.762) 687 | (stroke (width 0) (type default)) 688 | (fill (type none)) 689 | ) 690 | (circle (center -1.778 17.78) (radius 0.762) 691 | (stroke (width 0) (type default)) 692 | (fill (type none)) 693 | ) 694 | (circle (center -1.778 22.86) (radius 0.762) 695 | (stroke (width 0) (type default)) 696 | (fill (type none)) 697 | ) 698 | (polyline 699 | (pts 700 | (xy -3.81 -22.86) 701 | (xy -2.54 -22.86) 702 | ) 703 | (stroke (width 0) (type default)) 704 | (fill (type none)) 705 | ) 706 | (polyline 707 | (pts 708 | (xy -3.81 -20.32) 709 | (xy 0.508 -20.32) 710 | ) 711 | (stroke (width 0) (type default)) 712 | (fill (type none)) 713 | ) 714 | (polyline 715 | (pts 716 | (xy -3.81 -17.78) 717 | (xy -2.54 -17.78) 718 | ) 719 | (stroke (width 0) (type default)) 720 | (fill (type none)) 721 | ) 722 | (polyline 723 | (pts 724 | (xy -3.81 -15.24) 725 | (xy 0.508 -15.24) 726 | ) 727 | (stroke (width 0) (type default)) 728 | (fill (type none)) 729 | ) 730 | (polyline 731 | (pts 732 | (xy -3.81 -12.7) 733 | (xy -2.54 -12.7) 734 | ) 735 | (stroke (width 0) (type default)) 736 | (fill (type none)) 737 | ) 738 | (polyline 739 | (pts 740 | (xy -3.81 -10.16) 741 | (xy 0.508 -10.16) 742 | ) 743 | (stroke (width 0) (type default)) 744 | (fill (type none)) 745 | ) 746 | (polyline 747 | (pts 748 | (xy -3.81 -7.62) 749 | (xy -2.54 -7.62) 750 | ) 751 | (stroke (width 0) (type default)) 752 | (fill (type none)) 753 | ) 754 | (polyline 755 | (pts 756 | (xy -3.81 -5.08) 757 | (xy 0.508 -5.08) 758 | ) 759 | (stroke (width 0) (type default)) 760 | (fill (type none)) 761 | ) 762 | (polyline 763 | (pts 764 | (xy -3.81 -2.54) 765 | (xy -2.54 -2.54) 766 | ) 767 | (stroke (width 0) (type default)) 768 | (fill (type none)) 769 | ) 770 | (polyline 771 | (pts 772 | (xy -3.81 0) 773 | (xy 0.508 0) 774 | ) 775 | (stroke (width 0) (type default)) 776 | (fill (type none)) 777 | ) 778 | (polyline 779 | (pts 780 | (xy -3.81 2.54) 781 | (xy -2.54 2.54) 782 | ) 783 | (stroke (width 0) (type default)) 784 | (fill (type none)) 785 | ) 786 | (polyline 787 | (pts 788 | (xy -3.81 5.08) 789 | (xy 0.508 5.08) 790 | ) 791 | (stroke (width 0) (type default)) 792 | (fill (type none)) 793 | ) 794 | (polyline 795 | (pts 796 | (xy -3.81 7.62) 797 | (xy -2.54 7.62) 798 | ) 799 | (stroke (width 0) (type default)) 800 | (fill (type none)) 801 | ) 802 | (polyline 803 | (pts 804 | (xy -3.81 10.16) 805 | (xy 0.508 10.16) 806 | ) 807 | (stroke (width 0) (type default)) 808 | (fill (type none)) 809 | ) 810 | (polyline 811 | (pts 812 | (xy -3.81 12.7) 813 | (xy -2.54 12.7) 814 | ) 815 | (stroke (width 0) (type default)) 816 | (fill (type none)) 817 | ) 818 | (polyline 819 | (pts 820 | (xy -3.81 15.24) 821 | (xy 0.508 15.24) 822 | ) 823 | (stroke (width 0) (type default)) 824 | (fill (type none)) 825 | ) 826 | (polyline 827 | (pts 828 | (xy -3.81 17.78) 829 | (xy -2.54 17.78) 830 | ) 831 | (stroke (width 0) (type default)) 832 | (fill (type none)) 833 | ) 834 | (polyline 835 | (pts 836 | (xy -3.81 20.32) 837 | (xy 0.508 20.32) 838 | ) 839 | (stroke (width 0) (type default)) 840 | (fill (type none)) 841 | ) 842 | (polyline 843 | (pts 844 | (xy -3.81 22.86) 845 | (xy -2.54 22.86) 846 | ) 847 | (stroke (width 0) (type default)) 848 | (fill (type none)) 849 | ) 850 | (polyline 851 | (pts 852 | (xy -3.81 26.035) 853 | (xy -3.81 -26.035) 854 | (xy 3.81 -22.225) 855 | (xy 3.81 22.225) 856 | (xy -3.81 26.035) 857 | ) 858 | (stroke (width 0.254) (type default)) 859 | (fill (type background)) 860 | ) 861 | (circle (center 1.27 -20.32) (radius 0.762) 862 | (stroke (width 0) (type default)) 863 | (fill (type none)) 864 | ) 865 | (circle (center 1.27 -15.24) (radius 0.762) 866 | (stroke (width 0) (type default)) 867 | (fill (type none)) 868 | ) 869 | (circle (center 1.27 -10.16) (radius 0.762) 870 | (stroke (width 0) (type default)) 871 | (fill (type none)) 872 | ) 873 | (circle (center 1.27 -5.08) (radius 0.762) 874 | (stroke (width 0) (type default)) 875 | (fill (type none)) 876 | ) 877 | (circle (center 1.27 0) (radius 0.762) 878 | (stroke (width 0) (type default)) 879 | (fill (type none)) 880 | ) 881 | (circle (center 1.27 5.08) (radius 0.762) 882 | (stroke (width 0) (type default)) 883 | (fill (type none)) 884 | ) 885 | (circle (center 1.27 10.16) (radius 0.762) 886 | (stroke (width 0) (type default)) 887 | (fill (type none)) 888 | ) 889 | (circle (center 1.27 15.24) (radius 0.762) 890 | (stroke (width 0) (type default)) 891 | (fill (type none)) 892 | ) 893 | (circle (center 1.27 20.32) (radius 0.762) 894 | (stroke (width 0) (type default)) 895 | (fill (type none)) 896 | ) 897 | ) 898 | (symbol "DSUB19_Female_1_1" 899 | (pin passive line (at -7.62 22.86 0) (length 3.81) 900 | (name "1" (effects (font (size 1.27 1.27)))) 901 | (number "1" (effects (font (size 1.27 1.27)))) 902 | ) 903 | (pin passive line (at -7.62 -22.86 0) (length 3.81) 904 | (name "10" (effects (font (size 1.27 1.27)))) 905 | (number "10" (effects (font (size 1.27 1.27)))) 906 | ) 907 | (pin passive line (at -7.62 20.32 0) (length 3.81) 908 | (name "11" (effects (font (size 1.27 1.27)))) 909 | (number "11" (effects (font (size 1.27 1.27)))) 910 | ) 911 | (pin passive line (at -7.62 15.24 0) (length 3.81) 912 | (name "12" (effects (font (size 1.27 1.27)))) 913 | (number "12" (effects (font (size 1.27 1.27)))) 914 | ) 915 | (pin passive line (at -7.62 10.16 0) (length 3.81) 916 | (name "13" (effects (font (size 1.27 1.27)))) 917 | (number "13" (effects (font (size 1.27 1.27)))) 918 | ) 919 | (pin passive line (at -7.62 5.08 0) (length 3.81) 920 | (name "14" (effects (font (size 1.27 1.27)))) 921 | (number "14" (effects (font (size 1.27 1.27)))) 922 | ) 923 | (pin passive line (at -7.62 0 0) (length 3.81) 924 | (name "15" (effects (font (size 1.27 1.27)))) 925 | (number "15" (effects (font (size 1.27 1.27)))) 926 | ) 927 | (pin passive line (at -7.62 -5.08 0) (length 3.81) 928 | (name "16" (effects (font (size 1.27 1.27)))) 929 | (number "16" (effects (font (size 1.27 1.27)))) 930 | ) 931 | (pin passive line (at -7.62 -10.16 0) (length 3.81) 932 | (name "17" (effects (font (size 1.27 1.27)))) 933 | (number "17" (effects (font (size 1.27 1.27)))) 934 | ) 935 | (pin passive line (at -7.62 -15.24 0) (length 3.81) 936 | (name "18" (effects (font (size 1.27 1.27)))) 937 | (number "18" (effects (font (size 1.27 1.27)))) 938 | ) 939 | (pin passive line (at -7.62 -20.32 0) (length 3.81) 940 | (name "19" (effects (font (size 1.27 1.27)))) 941 | (number "19" (effects (font (size 1.27 1.27)))) 942 | ) 943 | (pin passive line (at -7.62 17.78 0) (length 3.81) 944 | (name "2" (effects (font (size 1.27 1.27)))) 945 | (number "2" (effects (font (size 1.27 1.27)))) 946 | ) 947 | (pin passive line (at -7.62 12.7 0) (length 3.81) 948 | (name "3" (effects (font (size 1.27 1.27)))) 949 | (number "3" (effects (font (size 1.27 1.27)))) 950 | ) 951 | (pin passive line (at -7.62 7.62 0) (length 3.81) 952 | (name "4" (effects (font (size 1.27 1.27)))) 953 | (number "4" (effects (font (size 1.27 1.27)))) 954 | ) 955 | (pin passive line (at -7.62 2.54 0) (length 3.81) 956 | (name "5" (effects (font (size 1.27 1.27)))) 957 | (number "5" (effects (font (size 1.27 1.27)))) 958 | ) 959 | (pin passive line (at -7.62 -2.54 0) (length 3.81) 960 | (name "6" (effects (font (size 1.27 1.27)))) 961 | (number "6" (effects (font (size 1.27 1.27)))) 962 | ) 963 | (pin passive line (at -7.62 -7.62 0) (length 3.81) 964 | (name "7" (effects (font (size 1.27 1.27)))) 965 | (number "7" (effects (font (size 1.27 1.27)))) 966 | ) 967 | (pin passive line (at -7.62 -12.7 0) (length 3.81) 968 | (name "8" (effects (font (size 1.27 1.27)))) 969 | (number "8" (effects (font (size 1.27 1.27)))) 970 | ) 971 | (pin passive line (at -7.62 -17.78 0) (length 3.81) 972 | (name "9" (effects (font (size 1.27 1.27)))) 973 | (number "9" (effects (font (size 1.27 1.27)))) 974 | ) 975 | ) 976 | ) 977 | (symbol "MyConnector:DSUB19_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) 978 | (property "Reference" "J" (at 0 29.21 0) 979 | (effects (font (size 1.27 1.27))) 980 | ) 981 | (property "Value" "DSUB19_Male" (at 0 27.305 0) 982 | (effects (font (size 1.27 1.27))) 983 | ) 984 | (property "Footprint" "" (at 0 7.62 0) 985 | (effects (font (size 1.27 1.27)) hide) 986 | ) 987 | (property "Datasheet" " ~" (at 0 0 0) 988 | (effects (font (size 1.27 1.27)) hide) 989 | ) 990 | (property "ki_keywords" "male D-SUB connector" (at 0 0 0) 991 | (effects (font (size 1.27 1.27)) hide) 992 | ) 993 | (property "ki_description" "19-pin male D-SUB connector" (at 0 0 0) 994 | (effects (font (size 1.27 1.27)) hide) 995 | ) 996 | (property "ki_fp_filters" "DSUB*Male*" (at 0 0 0) 997 | (effects (font (size 1.27 1.27)) hide) 998 | ) 999 | (symbol "DSUB19_Male_0_1" 1000 | (circle (center -1.778 -22.86) (radius 0.762) 1001 | (stroke (width 0) (type default)) 1002 | (fill (type outline)) 1003 | ) 1004 | (circle (center -1.778 -17.78) (radius 0.762) 1005 | (stroke (width 0) (type default)) 1006 | (fill (type outline)) 1007 | ) 1008 | (circle (center -1.778 -12.7) (radius 0.762) 1009 | (stroke (width 0) (type default)) 1010 | (fill (type outline)) 1011 | ) 1012 | (circle (center -1.778 -7.62) (radius 0.762) 1013 | (stroke (width 0) (type default)) 1014 | (fill (type outline)) 1015 | ) 1016 | (circle (center -1.778 -2.54) (radius 0.762) 1017 | (stroke (width 0) (type default)) 1018 | (fill (type outline)) 1019 | ) 1020 | (circle (center -1.778 2.54) (radius 0.762) 1021 | (stroke (width 0) (type default)) 1022 | (fill (type outline)) 1023 | ) 1024 | (circle (center -1.778 7.62) (radius 0.762) 1025 | (stroke (width 0) (type default)) 1026 | (fill (type outline)) 1027 | ) 1028 | (circle (center -1.778 12.7) (radius 0.762) 1029 | (stroke (width 0) (type default)) 1030 | (fill (type outline)) 1031 | ) 1032 | (circle (center -1.778 17.78) (radius 0.762) 1033 | (stroke (width 0) (type default)) 1034 | (fill (type outline)) 1035 | ) 1036 | (circle (center -1.778 22.86) (radius 0.762) 1037 | (stroke (width 0) (type default)) 1038 | (fill (type outline)) 1039 | ) 1040 | (polyline 1041 | (pts 1042 | (xy -3.81 -22.86) 1043 | (xy -2.54 -22.86) 1044 | ) 1045 | (stroke (width 0) (type default)) 1046 | (fill (type none)) 1047 | ) 1048 | (polyline 1049 | (pts 1050 | (xy -3.81 -20.32) 1051 | (xy 0.508 -20.32) 1052 | ) 1053 | (stroke (width 0) (type default)) 1054 | (fill (type none)) 1055 | ) 1056 | (polyline 1057 | (pts 1058 | (xy -3.81 -17.78) 1059 | (xy -2.54 -17.78) 1060 | ) 1061 | (stroke (width 0) (type default)) 1062 | (fill (type none)) 1063 | ) 1064 | (polyline 1065 | (pts 1066 | (xy -3.81 -15.24) 1067 | (xy 0.508 -15.24) 1068 | ) 1069 | (stroke (width 0) (type default)) 1070 | (fill (type none)) 1071 | ) 1072 | (polyline 1073 | (pts 1074 | (xy -3.81 -12.7) 1075 | (xy -2.54 -12.7) 1076 | ) 1077 | (stroke (width 0) (type default)) 1078 | (fill (type none)) 1079 | ) 1080 | (polyline 1081 | (pts 1082 | (xy -3.81 -10.16) 1083 | (xy 0.508 -10.16) 1084 | ) 1085 | (stroke (width 0) (type default)) 1086 | (fill (type none)) 1087 | ) 1088 | (polyline 1089 | (pts 1090 | (xy -3.81 -7.62) 1091 | (xy -2.54 -7.62) 1092 | ) 1093 | (stroke (width 0) (type default)) 1094 | (fill (type none)) 1095 | ) 1096 | (polyline 1097 | (pts 1098 | (xy -3.81 -5.08) 1099 | (xy 0.508 -5.08) 1100 | ) 1101 | (stroke (width 0) (type default)) 1102 | (fill (type none)) 1103 | ) 1104 | (polyline 1105 | (pts 1106 | (xy -3.81 -2.54) 1107 | (xy -2.54 -2.54) 1108 | ) 1109 | (stroke (width 0) (type default)) 1110 | (fill (type none)) 1111 | ) 1112 | (polyline 1113 | (pts 1114 | (xy -3.81 0) 1115 | (xy 0.508 0) 1116 | ) 1117 | (stroke (width 0) (type default)) 1118 | (fill (type none)) 1119 | ) 1120 | (polyline 1121 | (pts 1122 | (xy -3.81 2.54) 1123 | (xy -2.54 2.54) 1124 | ) 1125 | (stroke (width 0) (type default)) 1126 | (fill (type none)) 1127 | ) 1128 | (polyline 1129 | (pts 1130 | (xy -3.81 5.08) 1131 | (xy 0.508 5.08) 1132 | ) 1133 | (stroke (width 0) (type default)) 1134 | (fill (type none)) 1135 | ) 1136 | (polyline 1137 | (pts 1138 | (xy -3.81 7.62) 1139 | (xy -2.54 7.62) 1140 | ) 1141 | (stroke (width 0) (type default)) 1142 | (fill (type none)) 1143 | ) 1144 | (polyline 1145 | (pts 1146 | (xy -3.81 10.16) 1147 | (xy 0.508 10.16) 1148 | ) 1149 | (stroke (width 0) (type default)) 1150 | (fill (type none)) 1151 | ) 1152 | (polyline 1153 | (pts 1154 | (xy -3.81 12.7) 1155 | (xy -2.54 12.7) 1156 | ) 1157 | (stroke (width 0) (type default)) 1158 | (fill (type none)) 1159 | ) 1160 | (polyline 1161 | (pts 1162 | (xy -3.81 15.24) 1163 | (xy 0.508 15.24) 1164 | ) 1165 | (stroke (width 0) (type default)) 1166 | (fill (type none)) 1167 | ) 1168 | (polyline 1169 | (pts 1170 | (xy -3.81 17.78) 1171 | (xy -2.54 17.78) 1172 | ) 1173 | (stroke (width 0) (type default)) 1174 | (fill (type none)) 1175 | ) 1176 | (polyline 1177 | (pts 1178 | (xy -3.81 20.32) 1179 | (xy 0.508 20.32) 1180 | ) 1181 | (stroke (width 0) (type default)) 1182 | (fill (type none)) 1183 | ) 1184 | (polyline 1185 | (pts 1186 | (xy -3.81 22.86) 1187 | (xy -2.54 22.86) 1188 | ) 1189 | (stroke (width 0) (type default)) 1190 | (fill (type none)) 1191 | ) 1192 | (polyline 1193 | (pts 1194 | (xy -3.81 -26.035) 1195 | (xy 3.81 -22.225) 1196 | (xy 3.81 22.225) 1197 | (xy -3.81 26.035) 1198 | (xy -3.81 -26.035) 1199 | ) 1200 | (stroke (width 0.254) (type default)) 1201 | (fill (type background)) 1202 | ) 1203 | (circle (center 1.27 -20.32) (radius 0.762) 1204 | (stroke (width 0) (type default)) 1205 | (fill (type outline)) 1206 | ) 1207 | (circle (center 1.27 -15.24) (radius 0.762) 1208 | (stroke (width 0) (type default)) 1209 | (fill (type outline)) 1210 | ) 1211 | (circle (center 1.27 -10.16) (radius 0.762) 1212 | (stroke (width 0) (type default)) 1213 | (fill (type outline)) 1214 | ) 1215 | (circle (center 1.27 -5.08) (radius 0.762) 1216 | (stroke (width 0) (type default)) 1217 | (fill (type outline)) 1218 | ) 1219 | (circle (center 1.27 0) (radius 0.762) 1220 | (stroke (width 0) (type default)) 1221 | (fill (type outline)) 1222 | ) 1223 | (circle (center 1.27 5.08) (radius 0.762) 1224 | (stroke (width 0) (type default)) 1225 | (fill (type outline)) 1226 | ) 1227 | (circle (center 1.27 10.16) (radius 0.762) 1228 | (stroke (width 0) (type default)) 1229 | (fill (type outline)) 1230 | ) 1231 | (circle (center 1.27 15.24) (radius 0.762) 1232 | (stroke (width 0) (type default)) 1233 | (fill (type outline)) 1234 | ) 1235 | (circle (center 1.27 20.32) (radius 0.762) 1236 | (stroke (width 0) (type default)) 1237 | (fill (type outline)) 1238 | ) 1239 | ) 1240 | (symbol "DSUB19_Male_1_1" 1241 | (pin passive line (at -7.62 -22.86 0) (length 3.81) 1242 | (name "1" (effects (font (size 1.27 1.27)))) 1243 | (number "1" (effects (font (size 1.27 1.27)))) 1244 | ) 1245 | (pin passive line (at -7.62 22.86 0) (length 3.81) 1246 | (name "10" (effects (font (size 1.27 1.27)))) 1247 | (number "10" (effects (font (size 1.27 1.27)))) 1248 | ) 1249 | (pin passive line (at -7.62 -20.32 0) (length 3.81) 1250 | (name "11" (effects (font (size 1.27 1.27)))) 1251 | (number "11" (effects (font (size 1.27 1.27)))) 1252 | ) 1253 | (pin passive line (at -7.62 -15.24 0) (length 3.81) 1254 | (name "12" (effects (font (size 1.27 1.27)))) 1255 | (number "12" (effects (font (size 1.27 1.27)))) 1256 | ) 1257 | (pin passive line (at -7.62 -10.16 0) (length 3.81) 1258 | (name "13" (effects (font (size 1.27 1.27)))) 1259 | (number "13" (effects (font (size 1.27 1.27)))) 1260 | ) 1261 | (pin passive line (at -7.62 -5.08 0) (length 3.81) 1262 | (name "P14" (effects (font (size 1.27 1.27)))) 1263 | (number "14" (effects (font (size 1.27 1.27)))) 1264 | ) 1265 | (pin passive line (at -7.62 0 0) (length 3.81) 1266 | (name "P15" (effects (font (size 1.27 1.27)))) 1267 | (number "15" (effects (font (size 1.27 1.27)))) 1268 | ) 1269 | (pin passive line (at -7.62 5.08 0) (length 3.81) 1270 | (name "P16" (effects (font (size 1.27 1.27)))) 1271 | (number "16" (effects (font (size 1.27 1.27)))) 1272 | ) 1273 | (pin passive line (at -7.62 10.16 0) (length 3.81) 1274 | (name "P17" (effects (font (size 1.27 1.27)))) 1275 | (number "17" (effects (font (size 1.27 1.27)))) 1276 | ) 1277 | (pin passive line (at -7.62 15.24 0) (length 3.81) 1278 | (name "P18" (effects (font (size 1.27 1.27)))) 1279 | (number "18" (effects (font (size 1.27 1.27)))) 1280 | ) 1281 | (pin passive line (at -7.62 20.32 0) (length 3.81) 1282 | (name "P19" (effects (font (size 1.27 1.27)))) 1283 | (number "19" (effects (font (size 1.27 1.27)))) 1284 | ) 1285 | (pin passive line (at -7.62 -17.78 0) (length 3.81) 1286 | (name "2" (effects (font (size 1.27 1.27)))) 1287 | (number "2" (effects (font (size 1.27 1.27)))) 1288 | ) 1289 | (pin passive line (at -7.62 -12.7 0) (length 3.81) 1290 | (name "3" (effects (font (size 1.27 1.27)))) 1291 | (number "3" (effects (font (size 1.27 1.27)))) 1292 | ) 1293 | (pin passive line (at -7.62 -7.62 0) (length 3.81) 1294 | (name "4" (effects (font (size 1.27 1.27)))) 1295 | (number "4" (effects (font (size 1.27 1.27)))) 1296 | ) 1297 | (pin passive line (at -7.62 -2.54 0) (length 3.81) 1298 | (name "5" (effects (font (size 1.27 1.27)))) 1299 | (number "5" (effects (font (size 1.27 1.27)))) 1300 | ) 1301 | (pin passive line (at -7.62 2.54 0) (length 3.81) 1302 | (name "6" (effects (font (size 1.27 1.27)))) 1303 | (number "6" (effects (font (size 1.27 1.27)))) 1304 | ) 1305 | (pin passive line (at -7.62 7.62 0) (length 3.81) 1306 | (name "7" (effects (font (size 1.27 1.27)))) 1307 | (number "7" (effects (font (size 1.27 1.27)))) 1308 | ) 1309 | (pin passive line (at -7.62 12.7 0) (length 3.81) 1310 | (name "8" (effects (font (size 1.27 1.27)))) 1311 | (number "8" (effects (font (size 1.27 1.27)))) 1312 | ) 1313 | (pin passive line (at -7.62 17.78 0) (length 3.81) 1314 | (name "9" (effects (font (size 1.27 1.27)))) 1315 | (number "9" (effects (font (size 1.27 1.27)))) 1316 | ) 1317 | ) 1318 | ) 1319 | ) 1320 | 1321 | (junction (at 88.9 152.4) (diameter 0) (color 0 0 0 0) 1322 | (uuid 133d253c-9edf-40c0-961a-ba157e7c7ca8) 1323 | ) 1324 | (junction (at 152.4 68.58) (diameter 0) (color 0 0 0 0) 1325 | (uuid 7be38f84-7d4a-4230-82dc-ccb5b52bc8f1) 1326 | ) 1327 | (junction (at 137.16 50.8) (diameter 0) (color 0 0 0 0) 1328 | (uuid 8567a022-b889-4368-9aca-22ebacb3e8e6) 1329 | ) 1330 | (junction (at 73.66 134.62) (diameter 0) (color 0 0 0 0) 1331 | (uuid d86755b3-62ff-4ac0-b38e-b7f4637161a5) 1332 | ) 1333 | 1334 | (no_connect (at 152.4 88.9) (uuid 0760d942-6f00-4be8-8c57-59c68b9c30ba)) 1335 | (no_connect (at 35.56 165.1) (uuid 0c495b1e-1708-4a3f-83a4-1c09ddad26e7)) 1336 | (no_connect (at 152.4 91.44) (uuid 0c5090a1-a3e9-4719-8a99-4dc7659ba24f)) 1337 | (no_connect (at 88.9 114.3) (uuid 144ce066-5862-4a9f-a871-cce59bb46f0d)) 1338 | (no_connect (at 88.9 172.72) (uuid 5892b604-0a13-4cc0-98ee-3d2b375c51e6)) 1339 | (no_connect (at 88.9 175.26) (uuid 818b2070-9e88-41e9-ab49-a3791cecc89d)) 1340 | (no_connect (at 88.9 157.48) (uuid 99dc614b-fa44-444c-9ab6-3ca3b58d25ff)) 1341 | (no_connect (at 35.56 81.28) (uuid c73ef187-e18c-487b-8307-e2a4f8a782e2)) 1342 | (no_connect (at 152.4 30.48) (uuid df63bf4f-ff7d-4727-84db-93bf5953bb01)) 1343 | (no_connect (at 152.4 73.66) (uuid f2ae6a48-2343-4902-a0f4-9375f0b0f74d)) 1344 | 1345 | (wire (pts (xy 137.16 33.02) (xy 152.4 33.02)) 1346 | (stroke (width 0) (type default)) 1347 | (uuid 06b70dc4-4076-45ce-8efc-60914116089e) 1348 | ) 1349 | (wire (pts (xy 35.56 45.72) (xy 71.12 45.72)) 1350 | (stroke (width 0) (type default)) 1351 | (uuid 09049843-d924-4afa-a890-818879729236) 1352 | ) 1353 | (wire (pts (xy 106.68 60.96) (xy 152.4 60.96)) 1354 | (stroke (width 0) (type default)) 1355 | (uuid 0b0ca88d-7d04-4add-979b-9b80be52d6a4) 1356 | ) 1357 | (wire (pts (xy 83.82 142.24) (xy 88.9 142.24)) 1358 | (stroke (width 0) (type default)) 1359 | (uuid 0b4214a4-3510-4cc9-b7da-43756bea9b7a) 1360 | ) 1361 | (wire (pts (xy 35.56 160.02) (xy 71.12 160.02)) 1362 | (stroke (width 0) (type default)) 1363 | (uuid 0ea98f39-95d8-460a-b572-5f4613d638c7) 1364 | ) 1365 | (wire (pts (xy 132.08 78.74) (xy 152.4 78.74)) 1366 | (stroke (width 0) (type default)) 1367 | (uuid 0fb5cbb9-f27c-452d-bb37-fafbdd112e2b) 1368 | ) 1369 | (wire (pts (xy 35.56 35.56) (xy 71.12 35.56)) 1370 | (stroke (width 0) (type default)) 1371 | (uuid 1a5ea858-a605-46e0-a18a-8fd27e0a0313) 1372 | ) 1373 | (wire (pts (xy 76.2 152.4) (xy 76.2 129.54)) 1374 | (stroke (width 0) (type default)) 1375 | (uuid 1b651c84-7017-42a6-9947-807a11ffe04d) 1376 | ) 1377 | (wire (pts (xy 35.56 127) (xy 88.9 127)) 1378 | (stroke (width 0) (type default)) 1379 | (uuid 1c2ace4f-3c22-4b1f-83ad-5d51a24c9493) 1380 | ) 1381 | (wire (pts (xy 35.56 129.54) (xy 76.2 129.54)) 1382 | (stroke (width 0) (type default)) 1383 | (uuid 1d4bc079-e981-438e-a19c-7734399fe70c) 1384 | ) 1385 | (wire (pts (xy 88.9 149.86) (xy 71.12 149.86)) 1386 | (stroke (width 0) (type default)) 1387 | (uuid 1de032a8-f9f0-4a76-9680-6a8f181b5c5c) 1388 | ) 1389 | (wire (pts (xy 106.68 38.1) (xy 152.4 38.1)) 1390 | (stroke (width 0) (type default)) 1391 | (uuid 1ea568af-61d6-4b0c-8101-2354b80fa8b1) 1392 | ) 1393 | (wire (pts (xy 88.9 152.4) (xy 76.2 152.4)) 1394 | (stroke (width 0) (type default)) 1395 | (uuid 1f96116b-59d6-4a54-884c-d480bc4cfbc8) 1396 | ) 1397 | (wire (pts (xy 142.24 50.8) (xy 142.24 58.42)) 1398 | (stroke (width 0) (type default)) 1399 | (uuid 204afefb-a650-4461-94b7-9d8f68b82895) 1400 | ) 1401 | (wire (pts (xy 66.04 139.7) (xy 66.04 162.56)) 1402 | (stroke (width 0) (type default)) 1403 | (uuid 232de995-295a-4ef1-8dfb-84a10621f389) 1404 | ) 1405 | (wire (pts (xy 119.38 81.28) (xy 106.68 81.28)) 1406 | (stroke (width 0) (type default)) 1407 | (uuid 233c9f54-9e81-418c-857a-ae188de58d07) 1408 | ) 1409 | (wire (pts (xy 35.56 63.5) (xy 71.12 63.5)) 1410 | (stroke (width 0) (type default)) 1411 | (uuid 236257b9-6acc-434e-8db8-f9f4fc362275) 1412 | ) 1413 | (wire (pts (xy 106.68 73.66) (xy 144.78 73.66)) 1414 | (stroke (width 0) (type default)) 1415 | (uuid 24a89337-8eef-49e1-b345-870c75b57a12) 1416 | ) 1417 | (wire (pts (xy 60.96 149.86) (xy 60.96 147.32)) 1418 | (stroke (width 0) (type default)) 1419 | (uuid 2662db5c-9fe3-4d04-928d-53121accddb9) 1420 | ) 1421 | (wire (pts (xy 137.16 50.8) (xy 137.16 33.02)) 1422 | (stroke (width 0) (type default)) 1423 | (uuid 27d0c944-f64c-4683-b589-efae87b96155) 1424 | ) 1425 | (wire (pts (xy 35.56 60.96) (xy 71.12 60.96)) 1426 | (stroke (width 0) (type default)) 1427 | (uuid 27e5ab8a-5a79-4ba5-b5d3-531e703afad9) 1428 | ) 1429 | (wire (pts (xy 35.56 66.04) (xy 71.12 66.04)) 1430 | (stroke (width 0) (type default)) 1431 | (uuid 28a73650-9db9-48e4-893d-427267a2fb02) 1432 | ) 1433 | (wire (pts (xy 40.64 83.82) (xy 40.64 81.28)) 1434 | (stroke (width 0) (type default)) 1435 | (uuid 2ec2a407-4b93-42c2-a9f9-04cec5d6db6f) 1436 | ) 1437 | (wire (pts (xy 35.56 38.1) (xy 71.12 38.1)) 1438 | (stroke (width 0) (type default)) 1439 | (uuid 2fe99227-26c1-435e-9f25-50daba9834a7) 1440 | ) 1441 | (wire (pts (xy 35.56 167.64) (xy 55.88 167.64)) 1442 | (stroke (width 0) (type default)) 1443 | (uuid 30a33595-2055-4988-997f-2fe45c1fe183) 1444 | ) 1445 | (wire (pts (xy 152.4 50.8) (xy 142.24 50.8)) 1446 | (stroke (width 0) (type default)) 1447 | (uuid 30c277cb-6d11-49bc-b490-2d43ffbcd774) 1448 | ) 1449 | (wire (pts (xy 127 55.88) (xy 127 66.04)) 1450 | (stroke (width 0) (type default)) 1451 | (uuid 32b7f778-f3ec-4e14-945f-263f88f08dbf) 1452 | ) 1453 | (wire (pts (xy 73.66 134.62) (xy 73.66 116.84)) 1454 | (stroke (width 0) (type default)) 1455 | (uuid 3484d21f-58b0-428f-b417-a913a5eac013) 1456 | ) 1457 | (wire (pts (xy 152.4 66.04) (xy 134.62 66.04)) 1458 | (stroke (width 0) (type default)) 1459 | (uuid 37b2f5ba-5bcb-4be0-ae08-9dcd8d0d5642) 1460 | ) 1461 | (wire (pts (xy 35.56 78.74) (xy 71.12 78.74)) 1462 | (stroke (width 0) (type default)) 1463 | (uuid 37fd2dad-fd6f-42bd-aa89-fb04e985b66c) 1464 | ) 1465 | (wire (pts (xy 106.68 76.2) (xy 134.62 76.2)) 1466 | (stroke (width 0) (type default)) 1467 | (uuid 3b0ddd6d-ccd7-44d0-8550-d8cafc203a6b) 1468 | ) 1469 | (wire (pts (xy 121.92 83.82) (xy 152.4 83.82)) 1470 | (stroke (width 0) (type default)) 1471 | (uuid 3e48837b-7e8e-499f-9d2a-25cd0ac7f58b) 1472 | ) 1473 | (wire (pts (xy 35.56 137.16) (xy 88.9 137.16)) 1474 | (stroke (width 0) (type default)) 1475 | (uuid 40aab3ac-a990-47ab-a80c-5466fbfee99b) 1476 | ) 1477 | (wire (pts (xy 35.56 73.66) (xy 71.12 73.66)) 1478 | (stroke (width 0) (type default)) 1479 | (uuid 410fa612-aa10-4a92-9620-219068f6c1be) 1480 | ) 1481 | (wire (pts (xy 152.4 55.88) (xy 129.54 55.88)) 1482 | (stroke (width 0) (type default)) 1483 | (uuid 413f81d2-07d5-4757-b3fd-5ad30b108d9d) 1484 | ) 1485 | (wire (pts (xy 106.68 78.74) (xy 129.54 78.74)) 1486 | (stroke (width 0) (type default)) 1487 | (uuid 428c9e7f-64f9-4668-870f-c9feca78f9ce) 1488 | ) 1489 | (wire (pts (xy 35.56 55.88) (xy 71.12 55.88)) 1490 | (stroke (width 0) (type default)) 1491 | (uuid 43e2bd2d-f860-4f0d-8d29-d44565dffb69) 1492 | ) 1493 | (wire (pts (xy 106.68 66.04) (xy 124.46 66.04)) 1494 | (stroke (width 0) (type default)) 1495 | (uuid 492d357d-8bf0-4706-be1a-87233000dcdc) 1496 | ) 1497 | (wire (pts (xy 35.56 71.12) (xy 71.12 71.12)) 1498 | (stroke (width 0) (type default)) 1499 | (uuid 4951a4ea-ad71-458c-8b5d-5179d76af49c) 1500 | ) 1501 | (wire (pts (xy 78.74 129.54) (xy 78.74 124.46)) 1502 | (stroke (width 0) (type default)) 1503 | (uuid 4fe85cf7-e57e-437e-96b8-7dd4962f9de4) 1504 | ) 1505 | (wire (pts (xy 152.4 45.72) (xy 142.24 45.72)) 1506 | (stroke (width 0) (type default)) 1507 | (uuid 51f5712e-afe4-4fa0-bf6d-6e6ca069d919) 1508 | ) 1509 | (wire (pts (xy 35.56 83.82) (xy 40.64 83.82)) 1510 | (stroke (width 0) (type default)) 1511 | (uuid 5aec26ca-6355-4782-8d86-b8252540c145) 1512 | ) 1513 | (wire (pts (xy 60.96 147.32) (xy 83.82 147.32)) 1514 | (stroke (width 0) (type default)) 1515 | (uuid 5e5d104b-bd0d-42b2-9f65-33a123a842f6) 1516 | ) 1517 | (wire (pts (xy 88.9 170.18) (xy 55.88 170.18)) 1518 | (stroke (width 0) (type default)) 1519 | (uuid 5f484fa1-a774-4096-a8aa-f08a14116a8a) 1520 | ) 1521 | (wire (pts (xy 71.12 149.86) (xy 71.12 160.02)) 1522 | (stroke (width 0) (type default)) 1523 | (uuid 5f7d8e79-4d11-4e01-a5ce-c153610a4840) 1524 | ) 1525 | (wire (pts (xy 88.9 134.62) (xy 78.74 134.62)) 1526 | (stroke (width 0) (type default)) 1527 | (uuid 6024f26a-e906-4f06-be01-2a786c56d561) 1528 | ) 1529 | (wire (pts (xy 55.88 170.18) (xy 55.88 167.64)) 1530 | (stroke (width 0) (type default)) 1531 | (uuid 625afb30-8257-4da4-94a4-4071410c340d) 1532 | ) 1533 | (wire (pts (xy 106.68 71.12) (xy 149.86 71.12)) 1534 | (stroke (width 0) (type default)) 1535 | (uuid 6bf8a8e9-8082-4986-9592-d915dc75eda8) 1536 | ) 1537 | (wire (pts (xy 152.4 68.58) (xy 152.4 71.12)) 1538 | (stroke (width 0) (type default)) 1539 | (uuid 6c480646-9f07-456c-8c1c-aeeb8d15455f) 1540 | ) 1541 | (wire (pts (xy 106.68 45.72) (xy 139.7 45.72)) 1542 | (stroke (width 0) (type default)) 1543 | (uuid 6fc1fc2b-27d0-4995-87fc-579e2f548188) 1544 | ) 1545 | (wire (pts (xy 35.56 149.86) (xy 60.96 149.86)) 1546 | (stroke (width 0) (type default)) 1547 | (uuid 71d4adab-f630-4b23-8d37-89b2a1ca9f68) 1548 | ) 1549 | (wire (pts (xy 35.56 50.8) (xy 71.12 50.8)) 1550 | (stroke (width 0) (type default)) 1551 | (uuid 72d36a74-9a64-4ea9-9feb-dc58cc81db69) 1552 | ) 1553 | (wire (pts (xy 137.16 50.8) (xy 137.16 76.2)) 1554 | (stroke (width 0) (type default)) 1555 | (uuid 734e3016-78d3-48a0-836d-e31b3e2cdb36) 1556 | ) 1557 | (wire (pts (xy 35.56 68.58) (xy 71.12 68.58)) 1558 | (stroke (width 0) (type default)) 1559 | (uuid 74f392fc-8bf7-4db0-b806-44762c395f93) 1560 | ) 1561 | (wire (pts (xy 35.56 76.2) (xy 71.12 76.2)) 1562 | (stroke (width 0) (type default)) 1563 | (uuid 76b4e7bb-6db1-4a64-85ce-2eea015f5582) 1564 | ) 1565 | (wire (pts (xy 106.68 48.26) (xy 152.4 48.26)) 1566 | (stroke (width 0) (type default)) 1567 | (uuid 79aeb378-8de3-433e-a514-226ef1a0e956) 1568 | ) 1569 | (wire (pts (xy 35.56 119.38) (xy 88.9 119.38)) 1570 | (stroke (width 0) (type default)) 1571 | (uuid 7ae4b85e-3209-4a24-b8b8-cdefb2ddb06d) 1572 | ) 1573 | (wire (pts (xy 147.32 63.5) (xy 147.32 58.42)) 1574 | (stroke (width 0) (type default)) 1575 | (uuid 7b4d9530-248c-4310-87ed-d4c14604d58c) 1576 | ) 1577 | (wire (pts (xy 68.58 149.86) (xy 68.58 162.56)) 1578 | (stroke (width 0) (type default)) 1579 | (uuid 7cd63fce-a456-4c6c-a504-c20b3962decd) 1580 | ) 1581 | (wire (pts (xy 129.54 55.88) (xy 129.54 78.74)) 1582 | (stroke (width 0) (type default)) 1583 | (uuid 829336f4-3934-475b-a69d-47b9c1e8f689) 1584 | ) 1585 | (wire (pts (xy 144.78 40.64) (xy 144.78 73.66)) 1586 | (stroke (width 0) (type default)) 1587 | (uuid 82b0b66b-c28c-4b9c-90f3-2a343f020b77) 1588 | ) 1589 | (wire (pts (xy 78.74 134.62) (xy 78.74 142.24)) 1590 | (stroke (width 0) (type default)) 1591 | (uuid 833105b4-c921-471d-9ecb-3954bccec4b1) 1592 | ) 1593 | (wire (pts (xy 35.56 134.62) (xy 73.66 134.62)) 1594 | (stroke (width 0) (type default)) 1595 | (uuid 878f3408-3696-492f-a477-b2b04603406e) 1596 | ) 1597 | (wire (pts (xy 86.36 147.32) (xy 88.9 147.32)) 1598 | (stroke (width 0) (type default)) 1599 | (uuid 89d4cc4f-06f9-40ae-926e-dda8440e18a2) 1600 | ) 1601 | (wire (pts (xy 147.32 58.42) (xy 152.4 58.42)) 1602 | (stroke (width 0) (type default)) 1603 | (uuid 8ab580d9-9cd8-4de3-95af-18c3df73fe0f) 1604 | ) 1605 | (wire (pts (xy 137.16 76.2) (xy 152.4 76.2)) 1606 | (stroke (width 0) (type default)) 1607 | (uuid 8eace709-72b4-4954-97a9-8c9e8222fac0) 1608 | ) 1609 | (wire (pts (xy 88.9 139.7) (xy 66.04 139.7)) 1610 | (stroke (width 0) (type default)) 1611 | (uuid 93718eda-b368-4b99-b8c7-3e2d39c2369e) 1612 | ) 1613 | (wire (pts (xy 35.56 132.08) (xy 88.9 132.08)) 1614 | (stroke (width 0) (type default)) 1615 | (uuid 9391ec3e-5c7e-431c-9fe0-e483b64b4964) 1616 | ) 1617 | (wire (pts (xy 63.5 139.7) (xy 63.5 149.86)) 1618 | (stroke (width 0) (type default)) 1619 | (uuid 946e5efd-7c55-499f-b6d7-d7aea3a9fa8f) 1620 | ) 1621 | (wire (pts (xy 35.56 154.94) (xy 86.36 154.94)) 1622 | (stroke (width 0) (type default)) 1623 | (uuid 993b7567-2a45-4177-b1af-51644ea6a775) 1624 | ) 1625 | (wire (pts (xy 35.56 121.92) (xy 88.9 121.92)) 1626 | (stroke (width 0) (type default)) 1627 | (uuid 9aa61992-c0e9-40e1-8bf5-2d5fb1e2d4ac) 1628 | ) 1629 | (wire (pts (xy 68.58 149.86) (xy 63.5 149.86)) 1630 | (stroke (width 0) (type default)) 1631 | (uuid 9ade2185-b4fa-4b59-8706-33ddd6aaac35) 1632 | ) 1633 | (wire (pts (xy 88.9 124.46) (xy 81.28 124.46)) 1634 | (stroke (width 0) (type default)) 1635 | (uuid 9b841b98-68f4-4112-aed7-134fb34dbc6b) 1636 | ) 1637 | (wire (pts (xy 106.68 50.8) (xy 137.16 50.8)) 1638 | (stroke (width 0) (type default)) 1639 | (uuid 9ceda62c-ac56-4264-ae09-16f1899dbb78) 1640 | ) 1641 | (wire (pts (xy 81.28 124.46) (xy 81.28 157.48)) 1642 | (stroke (width 0) (type default)) 1643 | (uuid a10a1965-81e4-4f34-a627-8e355a1a1547) 1644 | ) 1645 | (wire (pts (xy 106.68 63.5) (xy 121.92 63.5)) 1646 | (stroke (width 0) (type default)) 1647 | (uuid a5571fa0-1801-4c04-a08b-4e96b0497697) 1648 | ) 1649 | (wire (pts (xy 106.68 40.64) (xy 142.24 40.64)) 1650 | (stroke (width 0) (type default)) 1651 | (uuid a91a5458-a7d0-4652-b26f-513ef3f519ed) 1652 | ) 1653 | (wire (pts (xy 88.9 129.54) (xy 78.74 129.54)) 1654 | (stroke (width 0) (type default)) 1655 | (uuid a9660e4e-bc1e-49f1-bd6d-e5e4159d5582) 1656 | ) 1657 | (wire (pts (xy 60.96 152.4) (xy 60.96 165.1)) 1658 | (stroke (width 0) (type default)) 1659 | (uuid aa9e9140-892c-4f70-aa0d-bb1cc6ff72da) 1660 | ) 1661 | (wire (pts (xy 60.96 165.1) (xy 88.9 165.1)) 1662 | (stroke (width 0) (type default)) 1663 | (uuid ab0fb396-f4ff-4fdf-a6c2-6a859e68a3c6) 1664 | ) 1665 | (wire (pts (xy 35.56 162.56) (xy 66.04 162.56)) 1666 | (stroke (width 0) (type default)) 1667 | (uuid abb687d6-2bd6-4236-ba53-104da5d251f4) 1668 | ) 1669 | (wire (pts (xy 142.24 45.72) (xy 142.24 40.64)) 1670 | (stroke (width 0) (type default)) 1671 | (uuid ac74d38f-baaf-4905-91ef-8c261e7889a5) 1672 | ) 1673 | (wire (pts (xy 119.38 86.36) (xy 119.38 81.28)) 1674 | (stroke (width 0) (type default)) 1675 | (uuid adce80f3-852b-464b-bf8f-e5ee1424e0e1) 1676 | ) 1677 | (wire (pts (xy 35.56 152.4) (xy 60.96 152.4)) 1678 | (stroke (width 0) (type default)) 1679 | (uuid af2cc19e-01af-4eb9-a21f-c834123aa336) 1680 | ) 1681 | (wire (pts (xy 35.56 48.26) (xy 71.12 48.26)) 1682 | (stroke (width 0) (type default)) 1683 | (uuid b155f72d-2df6-4be9-b525-0b49bf3fbd22) 1684 | ) 1685 | (wire (pts (xy 35.56 139.7) (xy 63.5 139.7)) 1686 | (stroke (width 0) (type default)) 1687 | (uuid b2ccb734-65f5-44dc-ac4b-48df29bc3799) 1688 | ) 1689 | (wire (pts (xy 58.42 147.32) (xy 58.42 167.64)) 1690 | (stroke (width 0) (type default)) 1691 | (uuid b4f9f6d3-604f-4bea-871a-0f777e134ee0) 1692 | ) 1693 | (wire (pts (xy 35.56 58.42) (xy 71.12 58.42)) 1694 | (stroke (width 0) (type default)) 1695 | (uuid b6b1ab24-981d-417f-aa44-16da8713f0db) 1696 | ) 1697 | (wire (pts (xy 35.56 142.24) (xy 78.74 142.24)) 1698 | (stroke (width 0) (type default)) 1699 | (uuid b71d8790-bacd-4795-820e-27b3f94849b9) 1700 | ) 1701 | (wire (pts (xy 106.68 43.18) (xy 152.4 43.18)) 1702 | (stroke (width 0) (type default)) 1703 | (uuid ba77bdbd-b0d5-4e2a-b5f0-233631124b23) 1704 | ) 1705 | (wire (pts (xy 132.08 66.04) (xy 132.08 78.74)) 1706 | (stroke (width 0) (type default)) 1707 | (uuid bae27f29-68f3-4ca8-8f20-6c16a3c1b933) 1708 | ) 1709 | (wire (pts (xy 121.92 63.5) (xy 121.92 83.82)) 1710 | (stroke (width 0) (type default)) 1711 | (uuid bb5ce7f6-158d-4a04-a588-f502ddf5947e) 1712 | ) 1713 | (wire (pts (xy 35.56 43.18) (xy 71.12 43.18)) 1714 | (stroke (width 0) (type default)) 1715 | (uuid bc23abfa-83c3-4486-b9a0-ea0956a15723) 1716 | ) 1717 | (wire (pts (xy 86.36 154.94) (xy 86.36 147.32)) 1718 | (stroke (width 0) (type default)) 1719 | (uuid bd6d579d-d062-4998-b8a7-d9a66e65957b) 1720 | ) 1721 | (wire (pts (xy 106.68 35.56) (xy 152.4 35.56)) 1722 | (stroke (width 0) (type default)) 1723 | (uuid c35bbd83-9579-4283-b7f1-9d9617fb6bfb) 1724 | ) 1725 | (wire (pts (xy 35.56 147.32) (xy 58.42 147.32)) 1726 | (stroke (width 0) (type default)) 1727 | (uuid c69f54f8-e82c-4b05-a69d-f5ea0e75a32b) 1728 | ) 1729 | (wire (pts (xy 83.82 147.32) (xy 83.82 142.24)) 1730 | (stroke (width 0) (type default)) 1731 | (uuid c6ffc125-cb1c-4dba-a752-7d370e55c091) 1732 | ) 1733 | (wire (pts (xy 73.66 160.02) (xy 88.9 160.02)) 1734 | (stroke (width 0) (type default)) 1735 | (uuid c8037cd0-3724-40eb-b5b4-2e2e27eab848) 1736 | ) 1737 | (wire (pts (xy 35.56 144.78) (xy 88.9 144.78)) 1738 | (stroke (width 0) (type default)) 1739 | (uuid c8b8b8d6-d2d1-488a-8d76-6bc25b870b43) 1740 | ) 1741 | (wire (pts (xy 124.46 63.5) (xy 147.32 63.5)) 1742 | (stroke (width 0) (type default)) 1743 | (uuid cb4fdcf4-3378-404a-af31-2852691c5b56) 1744 | ) 1745 | (wire (pts (xy 35.56 124.46) (xy 78.74 124.46)) 1746 | (stroke (width 0) (type default)) 1747 | (uuid ce9ff5cf-96ba-4bad-bfd4-661baf6a0ace) 1748 | ) 1749 | (wire (pts (xy 149.86 71.12) (xy 149.86 63.5)) 1750 | (stroke (width 0) (type default)) 1751 | (uuid d34fa82d-8c2c-4cae-af2e-c1d977103e7a) 1752 | ) 1753 | (wire (pts (xy 124.46 81.28) (xy 152.4 81.28)) 1754 | (stroke (width 0) (type default)) 1755 | (uuid d7df3ab0-8a4e-4063-93d0-4cb088b46925) 1756 | ) 1757 | (wire (pts (xy 124.46 66.04) (xy 124.46 63.5)) 1758 | (stroke (width 0) (type default)) 1759 | (uuid d9af1c02-0c2b-4905-b19e-5c8e392b9e11) 1760 | ) 1761 | (wire (pts (xy 124.46 68.58) (xy 124.46 81.28)) 1762 | (stroke (width 0) (type default)) 1763 | (uuid da1c32de-6836-4698-ab75-8d97398af8b9) 1764 | ) 1765 | (wire (pts (xy 73.66 116.84) (xy 88.9 116.84)) 1766 | (stroke (width 0) (type default)) 1767 | (uuid dd59427c-7405-4e06-bc72-9eeced46f1bc) 1768 | ) 1769 | (wire (pts (xy 73.66 134.62) (xy 73.66 160.02)) 1770 | (stroke (width 0) (type default)) 1771 | (uuid dfe50857-792f-4734-8ddc-2504edc660fc) 1772 | ) 1773 | (wire (pts (xy 35.56 157.48) (xy 81.28 157.48)) 1774 | (stroke (width 0) (type default)) 1775 | (uuid e0b3857c-c387-4096-80b6-22b127ef5334) 1776 | ) 1777 | (wire (pts (xy 152.4 86.36) (xy 119.38 86.36)) 1778 | (stroke (width 0) (type default)) 1779 | (uuid e3bb75e8-1dc3-4260-b2d8-3f996d44b921) 1780 | ) 1781 | (wire (pts (xy 139.7 68.58) (xy 139.7 45.72)) 1782 | (stroke (width 0) (type default)) 1783 | (uuid e5d2972e-49ac-42d2-b2a6-1258f517304a) 1784 | ) 1785 | (wire (pts (xy 40.64 81.28) (xy 71.12 81.28)) 1786 | (stroke (width 0) (type default)) 1787 | (uuid e74f4643-b9d8-4d3f-bc4b-3f2cf8caf11c) 1788 | ) 1789 | (wire (pts (xy 152.4 68.58) (xy 139.7 68.58)) 1790 | (stroke (width 0) (type default)) 1791 | (uuid e7d203a7-8874-4a27-ad38-f873ed30553d) 1792 | ) 1793 | (wire (pts (xy 152.4 40.64) (xy 144.78 40.64)) 1794 | (stroke (width 0) (type default)) 1795 | (uuid e7e59147-a7e6-40c8-8b2a-0493de0f0398) 1796 | ) 1797 | (wire (pts (xy 149.86 63.5) (xy 152.4 63.5)) 1798 | (stroke (width 0) (type default)) 1799 | (uuid ebda3ac6-a59c-4b38-b475-2b9e7c439321) 1800 | ) 1801 | (wire (pts (xy 106.68 68.58) (xy 124.46 68.58)) 1802 | (stroke (width 0) (type default)) 1803 | (uuid eceb08db-648b-423d-8955-9e828e5c6452) 1804 | ) 1805 | (wire (pts (xy 35.56 53.34) (xy 71.12 53.34)) 1806 | (stroke (width 0) (type default)) 1807 | (uuid f11c08bd-6df1-4120-a457-9e2447ab4cc8) 1808 | ) 1809 | (wire (pts (xy 134.62 66.04) (xy 134.62 76.2)) 1810 | (stroke (width 0) (type default)) 1811 | (uuid f13b2d8d-5159-4f7e-8354-453dca82ab89) 1812 | ) 1813 | (wire (pts (xy 35.56 40.64) (xy 71.12 40.64)) 1814 | (stroke (width 0) (type default)) 1815 | (uuid f71bd5eb-9e53-4cfb-84b8-df5051870839) 1816 | ) 1817 | (wire (pts (xy 132.08 66.04) (xy 127 66.04)) 1818 | (stroke (width 0) (type default)) 1819 | (uuid f754b7c7-b123-493c-9340-766d0153d405) 1820 | ) 1821 | (wire (pts (xy 58.42 167.64) (xy 88.9 167.64)) 1822 | (stroke (width 0) (type default)) 1823 | (uuid f86efb92-ee00-40c0-8256-f76eabfd212a) 1824 | ) 1825 | (wire (pts (xy 88.9 152.4) (xy 88.9 154.94)) 1826 | (stroke (width 0) (type default)) 1827 | (uuid fab4fd0c-b7a2-4bba-88d5-5057574c1bc0) 1828 | ) 1829 | (wire (pts (xy 106.68 53.34) (xy 152.4 53.34)) 1830 | (stroke (width 0) (type default)) 1831 | (uuid fb1a8f04-37fd-4a27-954c-bbbb1ba7c7fd) 1832 | ) 1833 | (wire (pts (xy 106.68 55.88) (xy 127 55.88)) 1834 | (stroke (width 0) (type default)) 1835 | (uuid fe929947-ebf1-4c07-8671-65dfae2601c5) 1836 | ) 1837 | (wire (pts (xy 68.58 162.56) (xy 88.9 162.56)) 1838 | (stroke (width 0) (type default)) 1839 | (uuid ffa71240-20db-4085-98f9-b057a40ac000) 1840 | ) 1841 | (wire (pts (xy 106.68 58.42) (xy 142.24 58.42)) 1842 | (stroke (width 0) (type default)) 1843 | (uuid ffadd145-3053-46bf-b633-42cc251ce17e) 1844 | ) 1845 | 1846 | (rectangle (start 22.86 20.32) (end 88.9 99.06) 1847 | (stroke (width 0) (type dash)) 1848 | (fill (type none)) 1849 | (uuid 2231d7b8-4652-4ff8-b2c0-f438d500392c) 1850 | ) 1851 | (rectangle (start 22.86 104.14) (end 106.68 182.88) 1852 | (stroke (width 0) (type dash)) 1853 | (fill (type none)) 1854 | (uuid 2ea8cb49-5df3-47fd-ac90-41faac40b86f) 1855 | ) 1856 | (rectangle (start 88.9 20.32) (end 170.18 99.06) 1857 | (stroke (width 0) (type dash)) 1858 | (fill (type none)) 1859 | (uuid 7e94d9b2-7251-4faf-a0ff-70653ca8fe2b) 1860 | ) 1861 | 1862 | (text "DuoDisk Cable" (at 124.46 25.4 0) 1863 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1864 | (uuid 1809e083-f54c-4a0e-9b40-ab1e519e4515) 1865 | ) 1866 | (text "Liron Pigtail" (at 50.8 25.4 0) 1867 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1868 | (uuid 20319faf-26c8-40be-b2f0-c4a5542070d8) 1869 | ) 1870 | (text "DB25 Pigtail" (at 63.5 109.22 0) 1871 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1872 | (uuid bb4ef964-9dcf-48e7-86e4-b42e9b0b464a) 1873 | ) 1874 | 1875 | (label "WR REQ" (at 48.26 58.42 0) (fields_autoplaced) 1876 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1877 | (uuid 000407c7-29fc-4f22-adc5-3c9081f1e951) 1878 | ) 1879 | (label "WR DATA" (at 116.84 78.74 180) (fields_autoplaced) 1880 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1881 | (uuid 0180f1d4-6205-401b-a734-4b7c6862425e) 1882 | ) 1883 | (label "PHASE0" (at 48.26 38.1 0) (fields_autoplaced) 1884 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1885 | (uuid 0933e1a4-2789-4852-94e8-0019259e7f39) 1886 | ) 1887 | (label "PHASE2" (at 53.34 132.08 180) (fields_autoplaced) 1888 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1889 | (uuid 0ccaf08c-48ea-4263-820e-8b58eec78173) 1890 | ) 1891 | (label "GND" (at 53.34 134.62 180) (fields_autoplaced) 1892 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1893 | (uuid 11539759-4f24-41c3-b1a8-6dc780ba8528) 1894 | ) 1895 | (label "W PROT" (at 53.34 167.64 180) (fields_autoplaced) 1896 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1897 | (uuid 132a0b05-6162-49d9-b8c7-d4c73165191e) 1898 | ) 1899 | (label "GND" (at 116.84 50.8 180) (fields_autoplaced) 1900 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1901 | (uuid 19410915-080e-4f40-93fe-eecfe66cb76f) 1902 | ) 1903 | (label "W PROT" (at 116.84 81.28 180) (fields_autoplaced) 1904 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1905 | (uuid 199e0321-f5c8-4b21-84cd-f2199becb7d2) 1906 | ) 1907 | (label "+12V" (at 116.84 71.12 180) (fields_autoplaced) 1908 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1909 | (uuid 1b067709-3390-47b2-927a-da8c5f13c1fd) 1910 | ) 1911 | (label "~{ENBL 1}" (at 53.34 152.4 180) (fields_autoplaced) 1912 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1913 | (uuid 1ceb984d-fc1f-44ec-8a59-cfc1babfcd0e) 1914 | ) 1915 | (label "GND" (at 53.34 129.54 180) (fields_autoplaced) 1916 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1917 | (uuid 25ff295f-3c7d-4e7d-8575-38e1bf5c422f) 1918 | ) 1919 | (label "GND" (at 53.34 124.46 180) (fields_autoplaced) 1920 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1921 | (uuid 2ad80d6a-3178-4fe8-b1fb-622eb98ef1ea) 1922 | ) 1923 | (label "~{ENBL 2}" (at 48.26 76.2 0) (fields_autoplaced) 1924 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1925 | (uuid 2d5f7a9e-8a49-44c6-9696-7a1e87fd74eb) 1926 | ) 1927 | (label "-12V" (at 48.26 55.88 0) (fields_autoplaced) 1928 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1929 | (uuid 305185c6-82bc-4ccb-a508-8b2c620e0e0a) 1930 | ) 1931 | (label "~{ENBL 2}" (at 53.34 160.02 180) (fields_autoplaced) 1932 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1933 | (uuid 33f27ffc-3daf-4af3-8a42-9fa023a04aa2) 1934 | ) 1935 | (label "+5V" (at 116.84 60.96 180) (fields_autoplaced) 1936 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1937 | (uuid 345df645-131f-4ce2-8612-a4b703709f5c) 1938 | ) 1939 | (label "PHASE1" (at 48.26 43.18 0) (fields_autoplaced) 1940 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1941 | (uuid 361813e9-a841-4d23-911e-b472d5e14c9f) 1942 | ) 1943 | (label "RD DATA" (at 116.84 73.66 180) (fields_autoplaced) 1944 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1945 | (uuid 38ec1b0f-2b2a-44b9-acc0-773b1cc3b5fe) 1946 | ) 1947 | (label "PHASE1" (at 53.34 127 180) (fields_autoplaced) 1948 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1949 | (uuid 3972487f-8c2b-4703-a971-04da3dc41e23) 1950 | ) 1951 | (label "+12V" (at 48.26 71.12 0) (fields_autoplaced) 1952 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1953 | (uuid 3a56eba9-d088-44a7-8806-9faab1c1698e) 1954 | ) 1955 | (label "+5V" (at 53.34 144.78 180) (fields_autoplaced) 1956 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1957 | (uuid 4f540a9c-e0ea-475f-8452-3faa8ee65d7c) 1958 | ) 1959 | (label "GND" (at 116.84 45.72 180) (fields_autoplaced) 1960 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1961 | (uuid 51c390dd-e195-44d8-b6e5-39aa29ef5afe) 1962 | ) 1963 | (label "SEL" (at 116.84 63.5 180) (fields_autoplaced) 1964 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1965 | (uuid 5806b489-f6a7-4342-ba4e-99931a74d03f) 1966 | ) 1967 | (label "+12V" (at 53.34 149.86 180) (fields_autoplaced) 1968 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1969 | (uuid 58fc2258-5dd4-459c-8b75-331cf3ef73df) 1970 | ) 1971 | (label "RD DATA" (at 48.26 73.66 0) (fields_autoplaced) 1972 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1973 | (uuid 647091a0-f7d9-4b6d-b6fe-667dc56bb31e) 1974 | ) 1975 | (label "GND" (at 53.34 119.38 180) (fields_autoplaced) 1976 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1977 | (uuid 6abeb76e-23da-4176-bd37-ada44c5238a3) 1978 | ) 1979 | (label "~{ENBL 1}" (at 116.84 68.58 180) (fields_autoplaced) 1980 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1981 | (uuid 6c0ccd81-dc11-47f4-97a6-e295aebff3c8) 1982 | ) 1983 | (label "~{ENBL 2}" (at 116.84 76.2 180) (fields_autoplaced) 1984 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1985 | (uuid 745d4d3f-644f-4d04-9acd-02e9e26b0332) 1986 | ) 1987 | (label "PHASE0" (at 116.84 38.1 180) (fields_autoplaced) 1988 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1989 | (uuid 748848a3-ea6e-4071-8ee6-b22ae316d91a) 1990 | ) 1991 | (label "W PROT" (at 48.26 81.28 0) (fields_autoplaced) 1992 | (effects (font (size 1.27 1.27)) (justify left bottom)) 1993 | (uuid 78c1da9e-0a57-4b86-9ae1-a7186e8af275) 1994 | ) 1995 | (label "-12V" (at 116.84 55.88 180) (fields_autoplaced) 1996 | (effects (font (size 1.27 1.27)) (justify right bottom)) 1997 | (uuid 7f331dd7-9f84-4474-9fe2-489112a97a46) 1998 | ) 1999 | (label "GND" (at 48.26 45.72 0) (fields_autoplaced) 2000 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2001 | (uuid 8308a36c-988a-4597-a8c7-f84af438ed16) 2002 | ) 2003 | (label "GND" (at 48.26 35.56 0) (fields_autoplaced) 2004 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2005 | (uuid 84dc23de-de76-4b8a-9566-d1dda3542b2c) 2006 | ) 2007 | (label "SEL" (at 48.26 63.5 0) (fields_autoplaced) 2008 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2009 | (uuid 85187507-b3c6-48ef-b129-bc916912d0bb) 2010 | ) 2011 | (label "WR REQ" (at 116.84 58.42 180) (fields_autoplaced) 2012 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2013 | (uuid 8ee7fad8-7b38-45b2-8d22-f53dbb90c7f8) 2014 | ) 2015 | (label "-12V" (at 53.34 139.7 180) (fields_autoplaced) 2016 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2017 | (uuid 9543c74e-f2e7-42ff-839b-ff273fa864d0) 2018 | ) 2019 | (label "GND" (at 48.26 50.8 0) (fields_autoplaced) 2020 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2021 | (uuid 97ef522a-fafe-48f9-9259-e7af77e30114) 2022 | ) 2023 | (label "PHASE3" (at 53.34 137.16 180) (fields_autoplaced) 2024 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2025 | (uuid 9a36eab0-75ec-4a1f-a804-d7934e3bc938) 2026 | ) 2027 | (label "+12V" (at 48.26 66.04 0) (fields_autoplaced) 2028 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2029 | (uuid 9ce9dbc6-af71-4769-9f08-250a6e695606) 2030 | ) 2031 | (label "SEL" (at 53.34 147.32 180) (fields_autoplaced) 2032 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2033 | (uuid a04c047e-fa86-4141-acbe-050465fd15c4) 2034 | ) 2035 | (label "PHASE3" (at 116.84 53.34 180) (fields_autoplaced) 2036 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2037 | (uuid a32a377b-e9ec-4955-9b0e-dd9d03510de4) 2038 | ) 2039 | (label "+12V" (at 116.84 66.04 180) (fields_autoplaced) 2040 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2041 | (uuid ab81a11c-c481-4a9f-99a3-357fdd2a46b8) 2042 | ) 2043 | (label "+12V" (at 53.34 154.94 180) (fields_autoplaced) 2044 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2045 | (uuid aed6cbf8-5502-4778-b646-97d053412ee1) 2046 | ) 2047 | (label "RD DATA" (at 53.34 157.48 180) (fields_autoplaced) 2048 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2049 | (uuid bfc5d76a-2e4c-4de1-88bc-4056207bba10) 2050 | ) 2051 | (label "PHASE2" (at 48.26 48.26 0) (fields_autoplaced) 2052 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2053 | (uuid c29363ee-cadf-4b11-abc6-83bd00c00e5f) 2054 | ) 2055 | (label "PHASE3" (at 48.26 53.34 0) (fields_autoplaced) 2056 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2057 | (uuid cf445225-f3c8-42a6-ab77-7ab81f9483a4) 2058 | ) 2059 | (label "PHASE1" (at 116.84 43.18 180) (fields_autoplaced) 2060 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2061 | (uuid d0cdd927-5743-48ac-b968-12a3a022b3e5) 2062 | ) 2063 | (label "GND" (at 116.84 35.56 180) (fields_autoplaced) 2064 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2065 | (uuid d202baca-5343-495f-8495-ac50dac6ad78) 2066 | ) 2067 | (label "WR DATA" (at 48.26 78.74 0) (fields_autoplaced) 2068 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2069 | (uuid d2e6d5c3-ff23-470c-bdca-d9ec826aa218) 2070 | ) 2071 | (label "+5V" (at 48.26 60.96 0) (fields_autoplaced) 2072 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2073 | (uuid d5dcd90f-bf5e-4e25-b112-c7d93ded199c) 2074 | ) 2075 | (label "WR REQ" (at 53.34 142.24 180) (fields_autoplaced) 2076 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2077 | (uuid e08a577d-8741-4d78-8b55-7368d760e1b2) 2078 | ) 2079 | (label "PHASE0" (at 53.34 121.92 180) (fields_autoplaced) 2080 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2081 | (uuid e1fd6a32-388c-4f10-8230-659a8fac933c) 2082 | ) 2083 | (label "PHASE2" (at 116.84 48.26 180) (fields_autoplaced) 2084 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2085 | (uuid e9d87a28-2100-4b3f-af3e-5c58be4078ed) 2086 | ) 2087 | (label "GND" (at 116.84 40.64 180) (fields_autoplaced) 2088 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2089 | (uuid ecf8e961-7416-46ce-ad81-e07a95c89002) 2090 | ) 2091 | (label "GND" (at 48.26 40.64 0) (fields_autoplaced) 2092 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2093 | (uuid f24c0768-34aa-4069-9807-d8c98a9e585f) 2094 | ) 2095 | (label "~{ENBL 1}" (at 48.26 68.58 0) (fields_autoplaced) 2096 | (effects (font (size 1.27 1.27)) (justify left bottom)) 2097 | (uuid f9801345-dce1-4125-9696-d4c5e62757ba) 2098 | ) 2099 | (label "WR DATA" (at 53.34 162.56 180) (fields_autoplaced) 2100 | (effects (font (size 1.27 1.27)) (justify right bottom)) 2101 | (uuid f9f6cef5-8391-48b0-9006-eb1d21f9d961) 2102 | ) 2103 | 2104 | (symbol (lib_id "Connector_Generic:Conn_01x20") (at 30.48 58.42 0) (mirror y) (unit 1) 2105 | (in_bom yes) (on_board no) (dnp no) (fields_autoplaced) 2106 | (uuid 0cea39c6-7a91-48cb-956e-188b54ec7dc4) 2107 | (property "Reference" "J4" (at 30.48 30.48 0) 2108 | (effects (font (size 1.27 1.27))) 2109 | ) 2110 | (property "Value" "IDC20F" (at 30.48 33.02 0) 2111 | (effects (font (size 1.27 1.27))) 2112 | ) 2113 | (property "Footprint" "" (at 30.48 58.42 0) 2114 | (effects (font (size 1.27 1.27)) hide) 2115 | ) 2116 | (property "Datasheet" "~" (at 30.48 58.42 0) 2117 | (effects (font (size 1.27 1.27)) hide) 2118 | ) 2119 | (pin "1" (uuid 06e01f40-a32d-4993-ba49-acb3ef94c4df)) 2120 | (pin "10" (uuid e0a24c18-d218-4cf8-93d0-a44305344f7c)) 2121 | (pin "11" (uuid b8bfc74c-49d6-4c4c-bb60-d6fade25be04)) 2122 | (pin "12" (uuid 65a28589-4f91-4301-9509-b5b15c31e554)) 2123 | (pin "13" (uuid 52699910-9e64-4f50-8236-fdd15374ef48)) 2124 | (pin "14" (uuid 97a64aa1-bdbf-4c27-bc1d-d056c044704c)) 2125 | (pin "15" (uuid c76b9c99-74c5-4c8e-8ba4-1e2832c26ade)) 2126 | (pin "16" (uuid eef0e268-3b8e-45a4-90bd-d27eed5491a3)) 2127 | (pin "17" (uuid b213c700-c1a4-48e7-b8b4-7d8cff81da96)) 2128 | (pin "18" (uuid 56a06d3d-2e63-4dae-883f-2cb6113607b0)) 2129 | (pin "19" (uuid 68a84085-0b6a-441d-833d-89691dab2a3d)) 2130 | (pin "2" (uuid e5c7a2e3-0e86-4900-ad71-f6f2402f91c0)) 2131 | (pin "20" (uuid 8214a5a1-d87b-4f20-b997-a97e90cbb4f9)) 2132 | (pin "3" (uuid 8db0fb65-68a2-4176-a9be-85164c86bf49)) 2133 | (pin "4" (uuid 709c041f-d566-4d62-b948-e1d106cff97d)) 2134 | (pin "5" (uuid 0d471552-d9a7-4488-9e4c-aa25524bd2aa)) 2135 | (pin "6" (uuid fc91c3f9-a130-4c64-b631-f8f52d2e31b7)) 2136 | (pin "7" (uuid 955b97fe-48a1-4edd-99a5-566768e8de9e)) 2137 | (pin "8" (uuid d0c58d31-2a97-433e-b52d-becea8ab02da)) 2138 | (pin "9" (uuid 8b365053-c415-430d-9abf-91d3adcc63fc)) 2139 | (instances 2140 | (project "SmartDiskII" 2141 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a" 2142 | (reference "J4") (unit 1) 2143 | ) 2144 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a/4d4100c6-4979-4191-9309-82d4f93e23eb" 2145 | (reference "J4") (unit 1) 2146 | ) 2147 | ) 2148 | ) 2149 | ) 2150 | 2151 | (symbol (lib_id "Connector:DB25_Plug") (at 160.02 60.96 0) (mirror x) (unit 1) 2152 | (in_bom yes) (on_board no) (dnp no) (fields_autoplaced) 2153 | (uuid 0fba6932-7bc9-4998-9572-fe662155f5af) 2154 | (property "Reference" "J7" (at 160.02 24.13 0) 2155 | (effects (font (size 1.27 1.27))) 2156 | ) 2157 | (property "Value" "DB25M" (at 160.02 26.67 0) 2158 | (effects (font (size 1.27 1.27))) 2159 | ) 2160 | (property "Footprint" "" (at 160.02 60.96 0) 2161 | (effects (font (size 1.27 1.27)) hide) 2162 | ) 2163 | (property "Datasheet" " ~" (at 160.02 60.96 0) 2164 | (effects (font (size 1.27 1.27)) hide) 2165 | ) 2166 | (pin "1" (uuid 0f152342-05e5-429f-bd57-9b550d3b06ff)) 2167 | (pin "10" (uuid 472f41ee-fd8c-408d-b9c7-bbd4704987c4)) 2168 | (pin "11" (uuid 154f1ada-db76-4990-9922-1fb1acbdc980)) 2169 | (pin "12" (uuid 4b738925-0cac-46ab-87b0-75ba082e218f)) 2170 | (pin "13" (uuid 255912ef-3356-43c5-86d9-143b6acbd5a4)) 2171 | (pin "14" (uuid 9c22e9ea-fd66-4611-9926-805affa084cb)) 2172 | (pin "15" (uuid d1bcb482-a1b2-4097-9a35-a2b88ca1d19e)) 2173 | (pin "16" (uuid 8b519b59-0848-4fa3-83f1-91f2d7c3fca4)) 2174 | (pin "17" (uuid 31b4be5c-09b7-47c1-840e-836bd7c7f9aa)) 2175 | (pin "18" (uuid 8f3f925a-b018-4cac-9220-0bc1090d55e9)) 2176 | (pin "19" (uuid 08bc4cdd-4616-4154-95f9-93c6941e571e)) 2177 | (pin "2" (uuid 23d25ff4-4d92-4395-9f17-ed5c131ec7dd)) 2178 | (pin "20" (uuid 577dc05f-e422-40cd-b773-ba4868b8657b)) 2179 | (pin "21" (uuid 04fa13e7-6fd7-48d9-ab94-a6b82713408f)) 2180 | (pin "22" (uuid badab01d-f1de-4bed-a95b-36054c628bcc)) 2181 | (pin "23" (uuid 694e0147-9d81-4149-9139-ac499a75bb71)) 2182 | (pin "24" (uuid d008613c-b1bb-47d6-98b0-2c4669a43c48)) 2183 | (pin "25" (uuid 4ce87742-c369-44d8-a148-486eabe2ed3e)) 2184 | (pin "3" (uuid cca03aef-bb9c-4730-9913-3fe323a51c77)) 2185 | (pin "4" (uuid 90b53f57-9644-44e1-b93c-8be72c7b7523)) 2186 | (pin "5" (uuid 0cf0a9f2-9769-4193-a14e-1767486b2823)) 2187 | (pin "6" (uuid 024a2e70-5183-43ab-ad66-fe79bf3004e2)) 2188 | (pin "7" (uuid 90e0c823-d6a9-4d19-8ece-3809a792dc33)) 2189 | (pin "8" (uuid 23f277a5-a162-47e6-8da3-46b2503b8eb4)) 2190 | (pin "9" (uuid a1ad5809-4a5a-4dfc-90f7-a83a7261b229)) 2191 | (instances 2192 | (project "SmartDiskII" 2193 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a" 2194 | (reference "J7") (unit 1) 2195 | ) 2196 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a/4d4100c6-4979-4191-9309-82d4f93e23eb" 2197 | (reference "J7") (unit 1) 2198 | ) 2199 | ) 2200 | ) 2201 | ) 2202 | 2203 | (symbol (lib_id "MyConnector:DSUB19_Male") (at 99.06 58.42 180) (unit 1) 2204 | (in_bom yes) (on_board no) (dnp no) (fields_autoplaced) 2205 | (uuid 12ccc549-2401-4e3a-ae2c-7ed9078d3945) 2206 | (property "Reference" "J6" (at 99.06 27.94 0) 2207 | (effects (font (size 1.27 1.27))) 2208 | ) 2209 | (property "Value" "DSUB19M" (at 99.06 30.48 0) 2210 | (effects (font (size 1.27 1.27))) 2211 | ) 2212 | (property "Footprint" "" (at 99.06 66.04 0) 2213 | (effects (font (size 1.27 1.27)) hide) 2214 | ) 2215 | (property "Datasheet" " ~" (at 99.06 58.42 0) 2216 | (effects (font (size 1.27 1.27)) hide) 2217 | ) 2218 | (pin "1" (uuid 18282e69-8d0e-4f9c-87f6-c01702db2580)) 2219 | (pin "10" (uuid 51806a1e-be34-4c24-8e52-e24dd88c211e)) 2220 | (pin "11" (uuid 5865cb75-d14b-4076-9f4d-1dbc637e50a1)) 2221 | (pin "12" (uuid 600e8115-0180-4e5f-8bfe-016623830a2d)) 2222 | (pin "13" (uuid cf5aff08-59ce-4628-994f-9faadbc82e59)) 2223 | (pin "14" (uuid 6c149920-f874-464f-8708-0754ee5d2912)) 2224 | (pin "15" (uuid bd4b2c74-a079-4f8b-ace0-c459c56c5932)) 2225 | (pin "16" (uuid ab1c2b59-e1d9-4b7b-9201-30e5e065c4ce)) 2226 | (pin "17" (uuid b16656b4-60cd-416f-a11b-293c3f5bd4b4)) 2227 | (pin "18" (uuid e6c7ef04-3c83-4eae-bb3f-97a04dfeddc5)) 2228 | (pin "19" (uuid aa2ed970-45e5-455a-a38f-1f197bbf91c7)) 2229 | (pin "2" (uuid 73b2d11d-3a31-4661-b35b-ececeb41f9ab)) 2230 | (pin "3" (uuid 752ef025-0f10-477f-9709-5e4f7914b1e1)) 2231 | (pin "4" (uuid 17c069d7-4e20-4e07-aa61-92b4e2e0a12c)) 2232 | (pin "5" (uuid c9ba806a-e8e4-4a25-aa79-4e6bf9465dea)) 2233 | (pin "6" (uuid 8ddf9729-2598-441b-a08c-dc978b260408)) 2234 | (pin "7" (uuid 8ce9e31d-4950-4add-8856-51de2dfd0129)) 2235 | (pin "8" (uuid 11d19f3f-1cdc-4a9f-8120-985fea043331)) 2236 | (pin "9" (uuid f25cad3d-54bf-49c6-8267-757787f430f7)) 2237 | (instances 2238 | (project "SmartDiskII" 2239 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a/4d4100c6-4979-4191-9309-82d4f93e23eb" 2240 | (reference "J6") (unit 1) 2241 | ) 2242 | ) 2243 | ) 2244 | ) 2245 | 2246 | (symbol (lib_id "MyConnector:DSUB19_Female") (at 78.74 58.42 0) (unit 1) 2247 | (in_bom yes) (on_board no) (dnp no) 2248 | (uuid 1a3e922c-817d-42dd-ae2d-271349265fd8) 2249 | (property "Reference" "J5" (at 76.2 27.94 0) 2250 | (effects (font (size 1.27 1.27)) (justify left)) 2251 | ) 2252 | (property "Value" "DSUB19F" (at 74.93 30.48 0) 2253 | (effects (font (size 1.27 1.27)) (justify left)) 2254 | ) 2255 | (property "Footprint" "" (at 78.74 45.72 0) 2256 | (effects (font (size 1.27 1.27)) hide) 2257 | ) 2258 | (property "Datasheet" " ~" (at 78.74 45.72 0) 2259 | (effects (font (size 1.27 1.27)) hide) 2260 | ) 2261 | (pin "1" (uuid 76382a07-9023-4426-b6c7-c442c511eb99)) 2262 | (pin "10" (uuid 0447fdb5-88d7-4fea-8be7-b500e46b9489)) 2263 | (pin "11" (uuid ac38e8ef-ac62-488d-b4b9-a6e436e9698d)) 2264 | (pin "12" (uuid 177ae202-0017-4f6e-a0da-b24eb1e22953)) 2265 | (pin "13" (uuid cfdf60ae-184e-4a43-9482-2c07eff8fb9f)) 2266 | (pin "14" (uuid 2b7ccc37-5d4a-45b9-9c25-266430850b1b)) 2267 | (pin "15" (uuid 8d177eb8-a350-4351-9e90-2a35aaae9bb6)) 2268 | (pin "16" (uuid f81b053b-3e65-4eb2-a179-73aef46796d3)) 2269 | (pin "17" (uuid 04a0e94a-0e78-487c-af93-e35c1a86ded1)) 2270 | (pin "18" (uuid b1d46467-7b82-4b29-8b17-ff761a3624c0)) 2271 | (pin "19" (uuid a6182cbb-24ce-4d4b-bbae-3f4a4d818309)) 2272 | (pin "2" (uuid 967469bf-f4bf-403e-89c2-c79148935e02)) 2273 | (pin "3" (uuid 6b98de1f-548a-477d-918a-67b5f407f82a)) 2274 | (pin "4" (uuid 681136a4-98eb-4983-afd9-16f73aff6211)) 2275 | (pin "5" (uuid 1ae27e28-8571-402f-8bc4-f163b3ccf76e)) 2276 | (pin "6" (uuid a7cd3a65-9ccc-41b6-b4da-b20b751e3e62)) 2277 | (pin "7" (uuid dab582c1-7c64-4dc6-80c3-57b5fb934fbb)) 2278 | (pin "8" (uuid 63ce67fd-ba6a-440d-9ed0-4e4f198d60c9)) 2279 | (pin "9" (uuid ef94fdb7-e479-43db-9d45-06b672441090)) 2280 | (instances 2281 | (project "SmartDiskII" 2282 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a" 2283 | (reference "J5") (unit 1) 2284 | ) 2285 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a/4d4100c6-4979-4191-9309-82d4f93e23eb" 2286 | (reference "J5") (unit 1) 2287 | ) 2288 | ) 2289 | ) 2290 | ) 2291 | 2292 | (symbol (lib_id "Connector:DB25_Plug") (at 96.52 144.78 0) (mirror x) (unit 1) 2293 | (in_bom yes) (on_board no) (dnp no) (fields_autoplaced) 2294 | (uuid 47367a20-7ae3-4242-ae74-f147c75527f0) 2295 | (property "Reference" "J7" (at 96.52 107.95 0) 2296 | (effects (font (size 1.27 1.27))) 2297 | ) 2298 | (property "Value" "DB25M" (at 96.52 110.49 0) 2299 | (effects (font (size 1.27 1.27))) 2300 | ) 2301 | (property "Footprint" "" (at 96.52 144.78 0) 2302 | (effects (font (size 1.27 1.27)) hide) 2303 | ) 2304 | (property "Datasheet" " ~" (at 96.52 144.78 0) 2305 | (effects (font (size 1.27 1.27)) hide) 2306 | ) 2307 | (pin "1" (uuid 0ecc49aa-9f52-43f1-8cdb-bd7b7898ea5b)) 2308 | (pin "10" (uuid 4dd32436-c3f3-4158-baa9-a1a4e045956e)) 2309 | (pin "11" (uuid 9cd30476-c36d-4b14-9ceb-b59a6e5290ca)) 2310 | (pin "12" (uuid 0a1c01cc-f6dd-46ec-95a4-b47d50b2f651)) 2311 | (pin "13" (uuid 82eae0f0-0dc5-4934-95e0-d5ae08457496)) 2312 | (pin "14" (uuid 9a02ed73-7547-41cd-b5bf-e0c227976aa3)) 2313 | (pin "15" (uuid 4f804a7e-0b61-4ee0-a999-48635076ee39)) 2314 | (pin "16" (uuid 35a6077d-25a8-406a-b638-a66dea4a0768)) 2315 | (pin "17" (uuid fe8e7e3d-223b-4e97-be22-72e46dcd33c3)) 2316 | (pin "18" (uuid 0a45f4ae-db3b-4e17-8c7e-e9054fe18638)) 2317 | (pin "19" (uuid 87c8a1ca-2cce-4faf-a838-90214f27f298)) 2318 | (pin "2" (uuid a0bc325f-1087-4839-8ade-81e7db460c7f)) 2319 | (pin "20" (uuid e07ee265-72e7-4ca0-a11f-3e6ab3dea15d)) 2320 | (pin "21" (uuid ec56e6d7-7a36-403e-96c3-29350942623a)) 2321 | (pin "22" (uuid 158b0f47-0038-4408-b168-a21b039fc277)) 2322 | (pin "23" (uuid a768b819-b8ab-4c6b-a53f-5b81e835e4e7)) 2323 | (pin "24" (uuid 52e5a8be-ebc4-42fd-82d1-c68e97924451)) 2324 | (pin "25" (uuid 009fcbe6-0c26-4e63-b28b-9b7d53699ed4)) 2325 | (pin "3" (uuid 55acbb6d-efb6-4a36-bb78-5e1a273502b6)) 2326 | (pin "4" (uuid 60a5a30a-2c8f-4daf-b035-e9e3de4955e8)) 2327 | (pin "5" (uuid 82964b80-de50-414c-a183-4c7b9a2b1819)) 2328 | (pin "6" (uuid 330ed1d8-fe95-4ba9-8dd7-d64659c10aa3)) 2329 | (pin "7" (uuid 634532b3-3143-4043-a528-6a2320b792a8)) 2330 | (pin "8" (uuid a4aec924-fb9f-4b76-8ba1-0d93f8ce70ec)) 2331 | (pin "9" (uuid b41a6b4a-4690-4f4a-a52b-af5e05807ab9)) 2332 | (instances 2333 | (project "SmartDiskII" 2334 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a" 2335 | (reference "J7") (unit 1) 2336 | ) 2337 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a/4d4100c6-4979-4191-9309-82d4f93e23eb" 2338 | (reference "J9") (unit 1) 2339 | ) 2340 | ) 2341 | ) 2342 | ) 2343 | 2344 | (symbol (lib_id "Connector_Generic:Conn_01x20") (at 30.48 142.24 0) (mirror y) (unit 1) 2345 | (in_bom yes) (on_board no) (dnp no) (fields_autoplaced) 2346 | (uuid dc2ddc81-5238-4cc2-904e-67015b69af64) 2347 | (property "Reference" "J4" (at 30.48 114.3 0) 2348 | (effects (font (size 1.27 1.27))) 2349 | ) 2350 | (property "Value" "IDC20F" (at 30.48 116.84 0) 2351 | (effects (font (size 1.27 1.27))) 2352 | ) 2353 | (property "Footprint" "" (at 30.48 142.24 0) 2354 | (effects (font (size 1.27 1.27)) hide) 2355 | ) 2356 | (property "Datasheet" "~" (at 30.48 142.24 0) 2357 | (effects (font (size 1.27 1.27)) hide) 2358 | ) 2359 | (pin "1" (uuid 256f0e02-01ec-4a55-b2ed-c77633a387af)) 2360 | (pin "10" (uuid 8e7712aa-208e-48f5-939a-19bb8ab30c78)) 2361 | (pin "11" (uuid ef713f39-3e69-4136-ab61-efebe41a3bbf)) 2362 | (pin "12" (uuid 3d8c1a09-baa2-4815-ab20-4d0d24edc294)) 2363 | (pin "13" (uuid 342fee70-4d70-41c2-9274-ed528b5df05f)) 2364 | (pin "14" (uuid 5ed81045-133a-418b-87f1-ad289897f209)) 2365 | (pin "15" (uuid 4e271581-712e-4d3c-9a48-8969a75ccdc1)) 2366 | (pin "16" (uuid 78121a04-d8b7-430f-95b2-0f10cbf310ef)) 2367 | (pin "17" (uuid e62d1912-ff10-489c-b339-3800b47b2a7e)) 2368 | (pin "18" (uuid dcdfc145-aaa6-40cf-a1c1-b2c21a96018b)) 2369 | (pin "19" (uuid d9beb24a-06ab-4115-ad9f-151ab0e0b17d)) 2370 | (pin "2" (uuid 70f1520c-7654-4924-9b43-f3a599335db5)) 2371 | (pin "20" (uuid 3bb35b72-612d-41c4-8220-27dabd9b4336)) 2372 | (pin "3" (uuid 8f2959a6-e272-4a75-ae49-9798f317f243)) 2373 | (pin "4" (uuid 7e89330b-e524-496c-acf0-fb47e101fab3)) 2374 | (pin "5" (uuid 568c2657-e681-4e18-9b47-95efd4248903)) 2375 | (pin "6" (uuid 00d26ca1-6bd5-414e-90cd-4fde11da0853)) 2376 | (pin "7" (uuid 6e0ea8a3-e406-4567-bde3-3523041873ea)) 2377 | (pin "8" (uuid ce9bbf55-e18d-44d9-bb7a-99e87484944c)) 2378 | (pin "9" (uuid 8a899c1b-16bc-453b-9f41-81cd719e2e0e)) 2379 | (instances 2380 | (project "SmartDiskII" 2381 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a" 2382 | (reference "J4") (unit 1) 2383 | ) 2384 | (path "/c5fa29fb-f00a-43d2-879f-1e361b003a2a/4d4100c6-4979-4191-9309-82d4f93e23eb" 2385 | (reference "J8") (unit 1) 2386 | ) 2387 | ) 2388 | ) 2389 | ) 2390 | ) 2391 | -------------------------------------------------------------------------------- /firmware/341-0128_P6A.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/341-0128_P6A.bin -------------------------------------------------------------------------------- /firmware/BOOT0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/BOOT0.bin -------------------------------------------------------------------------------- /firmware/Makefile: -------------------------------------------------------------------------------- 1 | # Build Firmware 2 | 3 | SmartDiskII.bin: SmartDiskII.o 4 | ld65 --config apple2-asm.cfg -o "$@" "$<" 5 | 6 | SmartDiskII.o: SmartDiskII.s BOOT0.bin \ 7 | SOFTSPROM_S1.bin SOFTSPROM_S2.bin SOFTSPROM_S3.bin SOFTSPROM_S4.bin \ 8 | SOFTSPROM_S5.bin SOFTSPROM_S6.bin SOFTSPROM_S7.bin 9 | 10 | ca65 --target apple2 -o "$@" "$<" 11 | 12 | clean: 13 | rm -f SmartDiskII.bin SmartDiskII.o 14 | -------------------------------------------------------------------------------- /firmware/SOFTSPROM_S1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/SOFTSPROM_S1.bin -------------------------------------------------------------------------------- /firmware/SOFTSPROM_S2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/SOFTSPROM_S2.bin -------------------------------------------------------------------------------- /firmware/SOFTSPROM_S3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/SOFTSPROM_S3.bin -------------------------------------------------------------------------------- /firmware/SOFTSPROM_S4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/SOFTSPROM_S4.bin -------------------------------------------------------------------------------- /firmware/SOFTSPROM_S5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/SOFTSPROM_S5.bin -------------------------------------------------------------------------------- /firmware/SOFTSPROM_S6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/SOFTSPROM_S6.bin -------------------------------------------------------------------------------- /firmware/SOFTSPROM_S7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/SOFTSPROM_S7.bin -------------------------------------------------------------------------------- /firmware/SmartDiskII.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/firmware/SmartDiskII.bin -------------------------------------------------------------------------------- /firmware/SmartDiskII.s: -------------------------------------------------------------------------------- 1 | 2 | .org $0000 3 | .byte "SmartPort firmware written by Michael Askins.", $0a 4 | .byte "SoftSP V6 conversion by MFA2 Labs. ", $0a 5 | .byte "SmartDiskII integration by Bradley Bell. ", $0a 6 | .byte "Inspiration from Adrian Black. ", $0a 7 | .byte $00 8 | 9 | .res $0100-*,$ff 10 | 11 | .incbin "BOOT0.bin" 12 | .incbin "BOOT0.bin" 13 | .incbin "BOOT0.bin" 14 | .incbin "BOOT0.bin" 15 | .incbin "BOOT0.bin" 16 | .incbin "BOOT0.bin" 17 | .incbin "BOOT0.bin" 18 | 19 | .res $1000-*,$ff 20 | 21 | .incbin "SOFTSPROM_S1.bin", $0800, $800 22 | .incbin "SOFTSPROM_S1.bin", $0000, $800 23 | .incbin "SOFTSPROM_S2.bin", $0800, $800 24 | .incbin "SOFTSPROM_S2.bin", $0000, $800 25 | .incbin "SOFTSPROM_S3.bin", $0800, $800 26 | .incbin "SOFTSPROM_S3.bin", $0000, $800 27 | .incbin "SOFTSPROM_S4.bin", $0800, $800 28 | .incbin "SOFTSPROM_S4.bin", $0000, $800 29 | .incbin "SOFTSPROM_S5.bin", $0800, $800 30 | .incbin "SOFTSPROM_S5.bin", $0000, $800 31 | .incbin "SOFTSPROM_S6.bin", $0800, $800 32 | .incbin "SOFTSPROM_S6.bin", $0000, $800 33 | .incbin "SOFTSPROM_S7.bin", $0800, $800 34 | .incbin "SOFTSPROM_S7.bin", $0000, $800 35 | -------------------------------------------------------------------------------- /gerbers/SmartDiskII_rev4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btb/SmartDiskII/0006d6a60d5679dac2e7046bd99e4f28759af5c8/gerbers/SmartDiskII_rev4.zip -------------------------------------------------------------------------------- /ibom.config.ini: -------------------------------------------------------------------------------- 1 | [html_defaults] 2 | dark_mode=0 3 | show_pads=1 4 | show_fabrication=1 5 | show_silkscreen=1 6 | highlight_pin1=1 7 | redraw_on_drag=1 8 | board_rotation=0 9 | checkboxes=Sourced,Placed 10 | bom_view=left-right 11 | layer_view=FB 12 | compression=1 13 | open_browser=1 14 | [general] 15 | bom_dest_dir=bom 16 | bom_name_format=%f_rev%r 17 | component_sort_order=C,R,L,D,U,Y,X,F,SW,A,~,HS,CNN,J,P,NT,MH 18 | component_blacklist= 19 | blacklist_virtual=1 20 | blacklist_empty_val=0 21 | include_tracks=0 22 | include_nets=0 23 | [fields] 24 | show_fields=Value,Footprint 25 | group_fields=Value,Footprint 26 | normalize_field_case=0 27 | board_variant_field= 28 | board_variant_whitelist= 29 | board_variant_blacklist= 30 | dnp_field= 31 | --------------------------------------------------------------------------------