├── .gitignore ├── HSLinkPro.kicad_pcb ├── HSLinkPro.kicad_pro ├── HSLinkPro.kicad_sch ├── Interface.kicad_sch ├── LICENSE ├── LogicTranslation.kicad_sch ├── Power.kicad_sch └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # ---> KiCad 2 | # For PCBs designed using KiCad: https://www.kicad.org/ 3 | # Format documentation: https://kicad.org/help/file-formats/ 4 | 5 | # Temporary files 6 | *.000 7 | *.bak 8 | *.bck 9 | *.kicad_pcb-bak 10 | *.kicad_sch-bak 11 | *-backups 12 | *.kicad_prl 13 | *.sch-bak 14 | *~ 15 | ~* 16 | _autosave-* 17 | *.tmp 18 | *-save.pro 19 | *-save.kicad_pcb 20 | fp-info-cache 21 | 22 | # Netlist files (exported from Eeschema) 23 | *.net 24 | 25 | # Autorouter files (exported from Pcbnew) 26 | *.dsn 27 | *.ses 28 | 29 | # Exported BOM files 30 | *.xml 31 | *.csv 32 | 33 | *.pdf 34 | 35 | \#auto_saved_files# 36 | 37 | Gerber.zip 38 | 39 | PCB3D/* 40 | 41 | production/ 42 | -------------------------------------------------------------------------------- /HSLinkPro.kicad_pro: -------------------------------------------------------------------------------- 1 | { 2 | "board": { 3 | "3dviewports": [], 4 | "design_settings": { 5 | "defaults": { 6 | "apply_defaults_to_fp_fields": false, 7 | "apply_defaults_to_fp_shapes": false, 8 | "apply_defaults_to_fp_text": false, 9 | "board_outline_line_width": 0.1, 10 | "copper_line_width": 0.2, 11 | "copper_text_italic": false, 12 | "copper_text_size_h": 1.5, 13 | "copper_text_size_v": 1.5, 14 | "copper_text_thickness": 0.3, 15 | "copper_text_upright": false, 16 | "courtyard_line_width": 0.05, 17 | "dimension_precision": 4, 18 | "dimension_units": 3, 19 | "dimensions": { 20 | "arrow_length": 1270000, 21 | "extension_offset": 500000, 22 | "keep_text_aligned": true, 23 | "suppress_zeroes": false, 24 | "text_position": 0, 25 | "units_format": 1 26 | }, 27 | "fab_line_width": 0.1, 28 | "fab_text_italic": false, 29 | "fab_text_size_h": 1.0, 30 | "fab_text_size_v": 1.0, 31 | "fab_text_thickness": 0.15, 32 | "fab_text_upright": false, 33 | "other_line_width": 0.15, 34 | "other_text_italic": false, 35 | "other_text_size_h": 1.0, 36 | "other_text_size_v": 1.0, 37 | "other_text_thickness": 0.15, 38 | "other_text_upright": false, 39 | "pads": { 40 | "drill": 0.762, 41 | "height": 1.524, 42 | "width": 1.524 43 | }, 44 | "silk_line_width": 0.15, 45 | "silk_text_italic": false, 46 | "silk_text_size_h": 1.0, 47 | "silk_text_size_v": 1.0, 48 | "silk_text_thickness": 0.15, 49 | "silk_text_upright": false, 50 | "zones": { 51 | "min_clearance": 0.2032 52 | } 53 | }, 54 | "diff_pair_dimensions": [ 55 | { 56 | "gap": 0.0, 57 | "via_gap": 0.0, 58 | "width": 0.0 59 | } 60 | ], 61 | "drc_exclusions": [], 62 | "meta": { 63 | "version": 2 64 | }, 65 | "rule_severities": { 66 | "annular_width": "error", 67 | "clearance": "error", 68 | "connection_width": "warning", 69 | "copper_edge_clearance": "error", 70 | "copper_sliver": "warning", 71 | "courtyards_overlap": "warning", 72 | "diff_pair_gap_out_of_range": "error", 73 | "diff_pair_uncoupled_length_too_long": "error", 74 | "drill_out_of_range": "error", 75 | "duplicate_footprints": "warning", 76 | "extra_footprint": "warning", 77 | "footprint": "error", 78 | "footprint_symbol_mismatch": "warning", 79 | "footprint_type_mismatch": "ignore", 80 | "hole_clearance": "error", 81 | "hole_near_hole": "error", 82 | "holes_co_located": "warning", 83 | "invalid_outline": "error", 84 | "isolated_copper": "warning", 85 | "item_on_disabled_layer": "error", 86 | "items_not_allowed": "error", 87 | "length_out_of_range": "error", 88 | "lib_footprint_issues": "warning", 89 | "lib_footprint_mismatch": "warning", 90 | "malformed_courtyard": "error", 91 | "microvia_drill_out_of_range": "error", 92 | "missing_courtyard": "ignore", 93 | "missing_footprint": "warning", 94 | "net_conflict": "warning", 95 | "npth_inside_courtyard": "ignore", 96 | "padstack": "warning", 97 | "pth_inside_courtyard": "ignore", 98 | "shorting_items": "error", 99 | "silk_edge_clearance": "warning", 100 | "silk_over_copper": "warning", 101 | "silk_overlap": "warning", 102 | "skew_out_of_range": "error", 103 | "solder_mask_bridge": "warning", 104 | "starved_thermal": "error", 105 | "text_height": "warning", 106 | "text_thickness": "warning", 107 | "through_hole_pad_without_hole": "error", 108 | "too_many_vias": "error", 109 | "track_dangling": "warning", 110 | "track_width": "error", 111 | "tracks_crossing": "error", 112 | "unconnected_items": "error", 113 | "unresolved_variable": "error", 114 | "via_dangling": "warning", 115 | "zones_intersect": "error" 116 | }, 117 | "rules": { 118 | "max_error": 0.005, 119 | "min_clearance": 0.0889, 120 | "min_connection": 0.0762, 121 | "min_copper_edge_clearance": 0.0, 122 | "min_hole_clearance": 0.1016, 123 | "min_hole_to_hole": 0.254, 124 | "min_microvia_diameter": 0.2, 125 | "min_microvia_drill": 0.1, 126 | "min_resolved_spokes": 2, 127 | "min_silk_clearance": 0.0, 128 | "min_text_height": 0.8, 129 | "min_text_thickness": 0.08, 130 | "min_through_hole_diameter": 0.254, 131 | "min_track_width": 0.0889, 132 | "min_via_annular_width": 0.1, 133 | "min_via_diameter": 0.5, 134 | "solder_mask_to_copper_clearance": 0.005, 135 | "use_height_for_length_calcs": true 136 | }, 137 | "teardrop_options": [ 138 | { 139 | "td_onpadsmd": true, 140 | "td_onroundshapesonly": false, 141 | "td_ontrackend": false, 142 | "td_onviapad": true 143 | } 144 | ], 145 | "teardrop_parameters": [ 146 | { 147 | "td_allow_use_two_tracks": true, 148 | "td_curve_segcount": 0, 149 | "td_height_ratio": 1.0, 150 | "td_length_ratio": 0.5, 151 | "td_maxheight": 2.0, 152 | "td_maxlen": 1.0, 153 | "td_on_pad_in_zone": false, 154 | "td_target_name": "td_round_shape", 155 | "td_width_to_size_filter_ratio": 0.9 156 | }, 157 | { 158 | "td_allow_use_two_tracks": true, 159 | "td_curve_segcount": 0, 160 | "td_height_ratio": 1.0, 161 | "td_length_ratio": 0.5, 162 | "td_maxheight": 2.0, 163 | "td_maxlen": 1.0, 164 | "td_on_pad_in_zone": false, 165 | "td_target_name": "td_rect_shape", 166 | "td_width_to_size_filter_ratio": 0.9 167 | }, 168 | { 169 | "td_allow_use_two_tracks": true, 170 | "td_curve_segcount": 0, 171 | "td_height_ratio": 1.0, 172 | "td_length_ratio": 0.5, 173 | "td_maxheight": 2.0, 174 | "td_maxlen": 1.0, 175 | "td_on_pad_in_zone": false, 176 | "td_target_name": "td_track_end", 177 | "td_width_to_size_filter_ratio": 0.9 178 | } 179 | ], 180 | "track_widths": [ 181 | 0.0, 182 | 0.0889, 183 | 0.1016, 184 | 0.127, 185 | 0.1524, 186 | 0.2032, 187 | 0.254, 188 | 0.381, 189 | 0.508, 190 | 0.635, 191 | 1.016 192 | ], 193 | "tuning_pattern_settings": { 194 | "diff_pair_defaults": { 195 | "corner_radius_percentage": 100, 196 | "corner_style": 1, 197 | "max_amplitude": 1.0, 198 | "min_amplitude": 0.1, 199 | "single_sided": false, 200 | "spacing": 0.6 201 | }, 202 | "diff_pair_skew_defaults": { 203 | "corner_radius_percentage": 100, 204 | "corner_style": 1, 205 | "max_amplitude": 1.0, 206 | "min_amplitude": 0.1, 207 | "single_sided": false, 208 | "spacing": 0.6 209 | }, 210 | "single_track_defaults": { 211 | "corner_radius_percentage": 100, 212 | "corner_style": 1, 213 | "max_amplitude": 1.0, 214 | "min_amplitude": 0.1, 215 | "single_sided": false, 216 | "spacing": 0.6 217 | } 218 | }, 219 | "via_dimensions": [ 220 | { 221 | "diameter": 0.0, 222 | "drill": 0.0 223 | }, 224 | { 225 | "diameter": 0.508, 226 | "drill": 0.254 227 | }, 228 | { 229 | "diameter": 0.5588, 230 | "drill": 0.3048 231 | }, 232 | { 233 | "diameter": 0.6096, 234 | "drill": 0.3048 235 | } 236 | ], 237 | "zones_allow_external_fillets": true 238 | }, 239 | "ipc2581": { 240 | "dist": "", 241 | "distpn": "", 242 | "internal_id": "", 243 | "mfg": "", 244 | "mpn": "" 245 | }, 246 | "layer_presets": [], 247 | "viewports": [] 248 | }, 249 | "boards": [], 250 | "cvpcb": { 251 | "equivalence_files": [] 252 | }, 253 | "erc": { 254 | "erc_exclusions": [], 255 | "meta": { 256 | "version": 0 257 | }, 258 | "pin_map": [ 259 | [ 260 | 0, 261 | 0, 262 | 0, 263 | 0, 264 | 0, 265 | 0, 266 | 1, 267 | 0, 268 | 0, 269 | 0, 270 | 0, 271 | 2 272 | ], 273 | [ 274 | 0, 275 | 2, 276 | 0, 277 | 1, 278 | 0, 279 | 0, 280 | 1, 281 | 0, 282 | 2, 283 | 2, 284 | 2, 285 | 2 286 | ], 287 | [ 288 | 0, 289 | 0, 290 | 0, 291 | 0, 292 | 0, 293 | 0, 294 | 1, 295 | 0, 296 | 1, 297 | 0, 298 | 1, 299 | 2 300 | ], 301 | [ 302 | 0, 303 | 1, 304 | 0, 305 | 0, 306 | 0, 307 | 0, 308 | 1, 309 | 1, 310 | 2, 311 | 1, 312 | 1, 313 | 2 314 | ], 315 | [ 316 | 0, 317 | 0, 318 | 0, 319 | 0, 320 | 0, 321 | 0, 322 | 1, 323 | 0, 324 | 0, 325 | 0, 326 | 0, 327 | 2 328 | ], 329 | [ 330 | 0, 331 | 0, 332 | 0, 333 | 0, 334 | 0, 335 | 0, 336 | 0, 337 | 0, 338 | 0, 339 | 0, 340 | 0, 341 | 2 342 | ], 343 | [ 344 | 1, 345 | 1, 346 | 1, 347 | 1, 348 | 1, 349 | 0, 350 | 1, 351 | 1, 352 | 1, 353 | 1, 354 | 1, 355 | 2 356 | ], 357 | [ 358 | 0, 359 | 0, 360 | 0, 361 | 1, 362 | 0, 363 | 0, 364 | 1, 365 | 0, 366 | 0, 367 | 0, 368 | 0, 369 | 2 370 | ], 371 | [ 372 | 0, 373 | 2, 374 | 1, 375 | 2, 376 | 0, 377 | 0, 378 | 1, 379 | 0, 380 | 2, 381 | 2, 382 | 2, 383 | 2 384 | ], 385 | [ 386 | 0, 387 | 2, 388 | 0, 389 | 1, 390 | 0, 391 | 0, 392 | 1, 393 | 0, 394 | 2, 395 | 0, 396 | 0, 397 | 2 398 | ], 399 | [ 400 | 0, 401 | 2, 402 | 1, 403 | 1, 404 | 0, 405 | 0, 406 | 1, 407 | 0, 408 | 2, 409 | 0, 410 | 0, 411 | 2 412 | ], 413 | [ 414 | 2, 415 | 2, 416 | 2, 417 | 2, 418 | 2, 419 | 2, 420 | 2, 421 | 2, 422 | 2, 423 | 2, 424 | 2, 425 | 2 426 | ] 427 | ], 428 | "rule_severities": { 429 | "bus_definition_conflict": "error", 430 | "bus_entry_needed": "error", 431 | "bus_to_bus_conflict": "error", 432 | "bus_to_net_conflict": "error", 433 | "conflicting_netclasses": "error", 434 | "different_unit_footprint": "error", 435 | "different_unit_net": "error", 436 | "duplicate_reference": "error", 437 | "duplicate_sheet_names": "error", 438 | "endpoint_off_grid": "warning", 439 | "extra_units": "error", 440 | "global_label_dangling": "warning", 441 | "hier_label_mismatch": "error", 442 | "label_dangling": "error", 443 | "lib_symbol_issues": "warning", 444 | "missing_bidi_pin": "warning", 445 | "missing_input_pin": "warning", 446 | "missing_power_pin": "error", 447 | "missing_unit": "warning", 448 | "multiple_net_names": "warning", 449 | "net_not_bus_member": "warning", 450 | "no_connect_connected": "warning", 451 | "no_connect_dangling": "warning", 452 | "pin_not_connected": "error", 453 | "pin_not_driven": "error", 454 | "pin_to_pin": "warning", 455 | "power_pin_not_driven": "warning", 456 | "similar_labels": "warning", 457 | "simulation_model_issue": "ignore", 458 | "unannotated": "error", 459 | "unit_value_mismatch": "error", 460 | "unresolved_variable": "error", 461 | "wire_dangling": "error" 462 | } 463 | }, 464 | "libraries": { 465 | "pinned_footprint_libs": [], 466 | "pinned_symbol_libs": [] 467 | }, 468 | "meta": { 469 | "filename": "HSLinkPro.kicad_pro", 470 | "version": 1 471 | }, 472 | "net_settings": { 473 | "classes": [ 474 | { 475 | "bus_width": 12, 476 | "clearance": 0.1016, 477 | "diff_pair_gap": 0.25, 478 | "diff_pair_via_gap": 0.25, 479 | "diff_pair_width": 0.2, 480 | "line_style": 0, 481 | "microvia_diameter": 0.3, 482 | "microvia_drill": 0.1, 483 | "name": "Default", 484 | "pcb_color": "rgba(0, 0, 0, 0.000)", 485 | "schematic_color": "rgba(0, 0, 0, 0.000)", 486 | "track_width": 0.1016, 487 | "via_diameter": 0.4572, 488 | "via_drill": 0.254, 489 | "wire_width": 6 490 | } 491 | ], 492 | "meta": { 493 | "version": 3 494 | }, 495 | "net_colors": null, 496 | "netclass_assignments": null, 497 | "netclass_patterns": [] 498 | }, 499 | "pcbnew": { 500 | "last_paths": { 501 | "gencad": "", 502 | "idf": "", 503 | "netlist": "", 504 | "plot": "", 505 | "pos_files": "", 506 | "specctra_dsn": "", 507 | "step": "", 508 | "svg": "", 509 | "vrml": "" 510 | }, 511 | "page_layout_descr_file": "" 512 | }, 513 | "schematic": { 514 | "annotate_start_num": 0, 515 | "bom_export_filename": "", 516 | "bom_fmt_presets": [], 517 | "bom_fmt_settings": { 518 | "field_delimiter": ",", 519 | "keep_line_breaks": false, 520 | "keep_tabs": false, 521 | "name": "CSV", 522 | "ref_delimiter": ",", 523 | "ref_range_delimiter": "", 524 | "string_delimiter": "\"" 525 | }, 526 | "bom_presets": [], 527 | "bom_settings": { 528 | "exclude_dnp": false, 529 | "fields_ordered": [ 530 | { 531 | "group_by": false, 532 | "label": "Reference", 533 | "name": "Reference", 534 | "show": true 535 | }, 536 | { 537 | "group_by": true, 538 | "label": "Value", 539 | "name": "Value", 540 | "show": true 541 | }, 542 | { 543 | "group_by": false, 544 | "label": "Datasheet", 545 | "name": "Datasheet", 546 | "show": true 547 | }, 548 | { 549 | "group_by": false, 550 | "label": "Footprint", 551 | "name": "Footprint", 552 | "show": true 553 | }, 554 | { 555 | "group_by": false, 556 | "label": "Qty", 557 | "name": "${QUANTITY}", 558 | "show": true 559 | }, 560 | { 561 | "group_by": true, 562 | "label": "DNP", 563 | "name": "${DNP}", 564 | "show": true 565 | } 566 | ], 567 | "filter_string": "", 568 | "group_symbols": true, 569 | "name": "Grouped By Value", 570 | "sort_asc": true, 571 | "sort_field": "位号" 572 | }, 573 | "connection_grid_size": 50.0, 574 | "drawing": { 575 | "dashed_lines_dash_length_ratio": 12.0, 576 | "dashed_lines_gap_length_ratio": 3.0, 577 | "default_line_thickness": 6.0, 578 | "default_text_size": 50.0, 579 | "field_names": [], 580 | "intersheets_ref_own_page": false, 581 | "intersheets_ref_prefix": "", 582 | "intersheets_ref_short": false, 583 | "intersheets_ref_show": false, 584 | "intersheets_ref_suffix": "", 585 | "junction_size_choice": 3, 586 | "label_size_ratio": 0.375, 587 | "operating_point_overlay_i_precision": 3, 588 | "operating_point_overlay_i_range": "~A", 589 | "operating_point_overlay_v_precision": 3, 590 | "operating_point_overlay_v_range": "~V", 591 | "overbar_offset_ratio": 1.23, 592 | "pin_symbol_size": 25.0, 593 | "text_offset_ratio": 0.15 594 | }, 595 | "legacy_lib_dir": "", 596 | "legacy_lib_list": [], 597 | "meta": { 598 | "version": 1 599 | }, 600 | "net_format_name": "", 601 | "page_layout_descr_file": "", 602 | "plot_directory": "", 603 | "spice_current_sheet_as_root": false, 604 | "spice_external_command": "spice \"%I\"", 605 | "spice_model_current_sheet_as_root": true, 606 | "spice_save_all_currents": false, 607 | "spice_save_all_dissipations": false, 608 | "spice_save_all_voltages": false, 609 | "subpart_first_id": 65, 610 | "subpart_id_separator": 0 611 | }, 612 | "sheets": [ 613 | [ 614 | "5e2c1440-f6a4-4887-af75-aa6afc882006", 615 | "根目录" 616 | ], 617 | [ 618 | "730f2898-4f63-4d81-8a12-972da09fb379", 619 | "Interface " 620 | ], 621 | [ 622 | "abca0319-9393-450d-b9c4-cdce6b44cd17", 623 | "Logic Translation" 624 | ], 625 | [ 626 | "d31437bf-2808-4f02-aab9-6400267805be", 627 | "Power" 628 | ] 629 | ], 630 | "text_variables": {} 631 | } 632 | -------------------------------------------------------------------------------- /HSLinkPro.kicad_sch: -------------------------------------------------------------------------------- 1 | (kicad_sch 2 | (version 20231120) 3 | (generator "eeschema") 4 | (generator_version "8.0") 5 | (uuid "5e2c1440-f6a4-4887-af75-aa6afc882006") 6 | (paper "A4") 7 | (lib_symbols 8 | (symbol "Connector_Generic:Conn_01x04" 9 | (pin_names 10 | (offset 1.016) hide) 11 | (exclude_from_sim no) 12 | (in_bom yes) 13 | (on_board yes) 14 | (property "Reference" "J" 15 | (at 0 5.08 0) 16 | (effects 17 | (font 18 | (size 1.27 1.27) 19 | ) 20 | ) 21 | ) 22 | (property "Value" "Conn_01x04" 23 | (at 0 -7.62 0) 24 | (effects 25 | (font 26 | (size 1.27 1.27) 27 | ) 28 | ) 29 | ) 30 | (property "Footprint" "" 31 | (at 0 0 0) 32 | (effects 33 | (font 34 | (size 1.27 1.27) 35 | ) 36 | (hide yes) 37 | ) 38 | ) 39 | (property "Datasheet" "~" 40 | (at 0 0 0) 41 | (effects 42 | (font 43 | (size 1.27 1.27) 44 | ) 45 | (hide yes) 46 | ) 47 | ) 48 | (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" 49 | (at 0 0 0) 50 | (effects 51 | (font 52 | (size 1.27 1.27) 53 | ) 54 | (hide yes) 55 | ) 56 | ) 57 | (property "ki_keywords" "connector" 58 | (at 0 0 0) 59 | (effects 60 | (font 61 | (size 1.27 1.27) 62 | ) 63 | (hide yes) 64 | ) 65 | ) 66 | (property "ki_fp_filters" "Connector*:*_1x??_*" 67 | (at 0 0 0) 68 | (effects 69 | (font 70 | (size 1.27 1.27) 71 | ) 72 | (hide yes) 73 | ) 74 | ) 75 | (symbol "Conn_01x04_1_1" 76 | (rectangle 77 | (start -1.27 -4.953) 78 | (end 0 -5.207) 79 | (stroke 80 | (width 0.1524) 81 | (type default) 82 | ) 83 | (fill 84 | (type none) 85 | ) 86 | ) 87 | (rectangle 88 | (start -1.27 -2.413) 89 | (end 0 -2.667) 90 | (stroke 91 | (width 0.1524) 92 | (type default) 93 | ) 94 | (fill 95 | (type none) 96 | ) 97 | ) 98 | (rectangle 99 | (start -1.27 0.127) 100 | (end 0 -0.127) 101 | (stroke 102 | (width 0.1524) 103 | (type default) 104 | ) 105 | (fill 106 | (type none) 107 | ) 108 | ) 109 | (rectangle 110 | (start -1.27 2.667) 111 | (end 0 2.413) 112 | (stroke 113 | (width 0.1524) 114 | (type default) 115 | ) 116 | (fill 117 | (type none) 118 | ) 119 | ) 120 | (rectangle 121 | (start -1.27 3.81) 122 | (end 1.27 -6.35) 123 | (stroke 124 | (width 0.254) 125 | (type default) 126 | ) 127 | (fill 128 | (type background) 129 | ) 130 | ) 131 | (pin passive line 132 | (at -5.08 2.54 0) 133 | (length 3.81) 134 | (name "Pin_1" 135 | (effects 136 | (font 137 | (size 1.27 1.27) 138 | ) 139 | ) 140 | ) 141 | (number "1" 142 | (effects 143 | (font 144 | (size 1.27 1.27) 145 | ) 146 | ) 147 | ) 148 | ) 149 | (pin passive line 150 | (at -5.08 0 0) 151 | (length 3.81) 152 | (name "Pin_2" 153 | (effects 154 | (font 155 | (size 1.27 1.27) 156 | ) 157 | ) 158 | ) 159 | (number "2" 160 | (effects 161 | (font 162 | (size 1.27 1.27) 163 | ) 164 | ) 165 | ) 166 | ) 167 | (pin passive line 168 | (at -5.08 -2.54 0) 169 | (length 3.81) 170 | (name "Pin_3" 171 | (effects 172 | (font 173 | (size 1.27 1.27) 174 | ) 175 | ) 176 | ) 177 | (number "3" 178 | (effects 179 | (font 180 | (size 1.27 1.27) 181 | ) 182 | ) 183 | ) 184 | ) 185 | (pin passive line 186 | (at -5.08 -5.08 0) 187 | (length 3.81) 188 | (name "Pin_4" 189 | (effects 190 | (font 191 | (size 1.27 1.27) 192 | ) 193 | ) 194 | ) 195 | (number "4" 196 | (effects 197 | (font 198 | (size 1.27 1.27) 199 | ) 200 | ) 201 | ) 202 | ) 203 | ) 204 | ) 205 | (symbol "Device:C" 206 | (pin_numbers hide) 207 | (pin_names 208 | (offset 0.254) 209 | ) 210 | (exclude_from_sim no) 211 | (in_bom yes) 212 | (on_board yes) 213 | (property "Reference" "C" 214 | (at 0.635 2.54 0) 215 | (effects 216 | (font 217 | (size 1.27 1.27) 218 | ) 219 | (justify left) 220 | ) 221 | ) 222 | (property "Value" "C" 223 | (at 0.635 -2.54 0) 224 | (effects 225 | (font 226 | (size 1.27 1.27) 227 | ) 228 | (justify left) 229 | ) 230 | ) 231 | (property "Footprint" "" 232 | (at 0.9652 -3.81 0) 233 | (effects 234 | (font 235 | (size 1.27 1.27) 236 | ) 237 | (hide yes) 238 | ) 239 | ) 240 | (property "Datasheet" "~" 241 | (at 0 0 0) 242 | (effects 243 | (font 244 | (size 1.27 1.27) 245 | ) 246 | (hide yes) 247 | ) 248 | ) 249 | (property "Description" "Unpolarized capacitor" 250 | (at 0 0 0) 251 | (effects 252 | (font 253 | (size 1.27 1.27) 254 | ) 255 | (hide yes) 256 | ) 257 | ) 258 | (property "ki_keywords" "cap capacitor" 259 | (at 0 0 0) 260 | (effects 261 | (font 262 | (size 1.27 1.27) 263 | ) 264 | (hide yes) 265 | ) 266 | ) 267 | (property "ki_fp_filters" "C_*" 268 | (at 0 0 0) 269 | (effects 270 | (font 271 | (size 1.27 1.27) 272 | ) 273 | (hide yes) 274 | ) 275 | ) 276 | (symbol "C_0_1" 277 | (polyline 278 | (pts 279 | (xy -2.032 -0.762) (xy 2.032 -0.762) 280 | ) 281 | (stroke 282 | (width 0.508) 283 | (type default) 284 | ) 285 | (fill 286 | (type none) 287 | ) 288 | ) 289 | (polyline 290 | (pts 291 | (xy -2.032 0.762) (xy 2.032 0.762) 292 | ) 293 | (stroke 294 | (width 0.508) 295 | (type default) 296 | ) 297 | (fill 298 | (type none) 299 | ) 300 | ) 301 | ) 302 | (symbol "C_1_1" 303 | (pin passive line 304 | (at 0 3.81 270) 305 | (length 2.794) 306 | (name "~" 307 | (effects 308 | (font 309 | (size 1.27 1.27) 310 | ) 311 | ) 312 | ) 313 | (number "1" 314 | (effects 315 | (font 316 | (size 1.27 1.27) 317 | ) 318 | ) 319 | ) 320 | ) 321 | (pin passive line 322 | (at 0 -3.81 90) 323 | (length 2.794) 324 | (name "~" 325 | (effects 326 | (font 327 | (size 1.27 1.27) 328 | ) 329 | ) 330 | ) 331 | (number "2" 332 | (effects 333 | (font 334 | (size 1.27 1.27) 335 | ) 336 | ) 337 | ) 338 | ) 339 | ) 340 | ) 341 | (symbol "Device:Crystal_GND24" 342 | (pin_names 343 | (offset 1.016) hide) 344 | (exclude_from_sim no) 345 | (in_bom yes) 346 | (on_board yes) 347 | (property "Reference" "Y" 348 | (at 3.175 5.08 0) 349 | (effects 350 | (font 351 | (size 1.27 1.27) 352 | ) 353 | (justify left) 354 | ) 355 | ) 356 | (property "Value" "Crystal_GND24" 357 | (at 3.175 3.175 0) 358 | (effects 359 | (font 360 | (size 1.27 1.27) 361 | ) 362 | (justify left) 363 | ) 364 | ) 365 | (property "Footprint" "" 366 | (at 0 0 0) 367 | (effects 368 | (font 369 | (size 1.27 1.27) 370 | ) 371 | (hide yes) 372 | ) 373 | ) 374 | (property "Datasheet" "~" 375 | (at 0 0 0) 376 | (effects 377 | (font 378 | (size 1.27 1.27) 379 | ) 380 | (hide yes) 381 | ) 382 | ) 383 | (property "Description" "Four pin crystal, GND on pins 2 and 4" 384 | (at 0 0 0) 385 | (effects 386 | (font 387 | (size 1.27 1.27) 388 | ) 389 | (hide yes) 390 | ) 391 | ) 392 | (property "ki_keywords" "quartz ceramic resonator oscillator" 393 | (at 0 0 0) 394 | (effects 395 | (font 396 | (size 1.27 1.27) 397 | ) 398 | (hide yes) 399 | ) 400 | ) 401 | (property "ki_fp_filters" "Crystal*" 402 | (at 0 0 0) 403 | (effects 404 | (font 405 | (size 1.27 1.27) 406 | ) 407 | (hide yes) 408 | ) 409 | ) 410 | (symbol "Crystal_GND24_0_1" 411 | (rectangle 412 | (start -1.143 2.54) 413 | (end 1.143 -2.54) 414 | (stroke 415 | (width 0.3048) 416 | (type default) 417 | ) 418 | (fill 419 | (type none) 420 | ) 421 | ) 422 | (polyline 423 | (pts 424 | (xy -2.54 0) (xy -2.032 0) 425 | ) 426 | (stroke 427 | (width 0) 428 | (type default) 429 | ) 430 | (fill 431 | (type none) 432 | ) 433 | ) 434 | (polyline 435 | (pts 436 | (xy -2.032 -1.27) (xy -2.032 1.27) 437 | ) 438 | (stroke 439 | (width 0.508) 440 | (type default) 441 | ) 442 | (fill 443 | (type none) 444 | ) 445 | ) 446 | (polyline 447 | (pts 448 | (xy 0 -3.81) (xy 0 -3.556) 449 | ) 450 | (stroke 451 | (width 0) 452 | (type default) 453 | ) 454 | (fill 455 | (type none) 456 | ) 457 | ) 458 | (polyline 459 | (pts 460 | (xy 0 3.556) (xy 0 3.81) 461 | ) 462 | (stroke 463 | (width 0) 464 | (type default) 465 | ) 466 | (fill 467 | (type none) 468 | ) 469 | ) 470 | (polyline 471 | (pts 472 | (xy 2.032 -1.27) (xy 2.032 1.27) 473 | ) 474 | (stroke 475 | (width 0.508) 476 | (type default) 477 | ) 478 | (fill 479 | (type none) 480 | ) 481 | ) 482 | (polyline 483 | (pts 484 | (xy 2.032 0) (xy 2.54 0) 485 | ) 486 | (stroke 487 | (width 0) 488 | (type default) 489 | ) 490 | (fill 491 | (type none) 492 | ) 493 | ) 494 | (polyline 495 | (pts 496 | (xy -2.54 -2.286) (xy -2.54 -3.556) (xy 2.54 -3.556) (xy 2.54 -2.286) 497 | ) 498 | (stroke 499 | (width 0) 500 | (type default) 501 | ) 502 | (fill 503 | (type none) 504 | ) 505 | ) 506 | (polyline 507 | (pts 508 | (xy -2.54 2.286) (xy -2.54 3.556) (xy 2.54 3.556) (xy 2.54 2.286) 509 | ) 510 | (stroke 511 | (width 0) 512 | (type default) 513 | ) 514 | (fill 515 | (type none) 516 | ) 517 | ) 518 | ) 519 | (symbol "Crystal_GND24_1_1" 520 | (pin passive line 521 | (at -3.81 0 0) 522 | (length 1.27) 523 | (name "1" 524 | (effects 525 | (font 526 | (size 1.27 1.27) 527 | ) 528 | ) 529 | ) 530 | (number "1" 531 | (effects 532 | (font 533 | (size 1.27 1.27) 534 | ) 535 | ) 536 | ) 537 | ) 538 | (pin passive line 539 | (at 0 5.08 270) 540 | (length 1.27) 541 | (name "2" 542 | (effects 543 | (font 544 | (size 1.27 1.27) 545 | ) 546 | ) 547 | ) 548 | (number "2" 549 | (effects 550 | (font 551 | (size 1.27 1.27) 552 | ) 553 | ) 554 | ) 555 | ) 556 | (pin passive line 557 | (at 3.81 0 180) 558 | (length 1.27) 559 | (name "3" 560 | (effects 561 | (font 562 | (size 1.27 1.27) 563 | ) 564 | ) 565 | ) 566 | (number "3" 567 | (effects 568 | (font 569 | (size 1.27 1.27) 570 | ) 571 | ) 572 | ) 573 | ) 574 | (pin passive line 575 | (at 0 -5.08 90) 576 | (length 1.27) 577 | (name "4" 578 | (effects 579 | (font 580 | (size 1.27 1.27) 581 | ) 582 | ) 583 | ) 584 | (number "4" 585 | (effects 586 | (font 587 | (size 1.27 1.27) 588 | ) 589 | ) 590 | ) 591 | ) 592 | ) 593 | ) 594 | (symbol "Device:R" 595 | (pin_numbers hide) 596 | (pin_names 597 | (offset 0) 598 | ) 599 | (exclude_from_sim no) 600 | (in_bom yes) 601 | (on_board yes) 602 | (property "Reference" "R" 603 | (at 2.032 0 90) 604 | (effects 605 | (font 606 | (size 1.27 1.27) 607 | ) 608 | ) 609 | ) 610 | (property "Value" "R" 611 | (at 0 0 90) 612 | (effects 613 | (font 614 | (size 1.27 1.27) 615 | ) 616 | ) 617 | ) 618 | (property "Footprint" "" 619 | (at -1.778 0 90) 620 | (effects 621 | (font 622 | (size 1.27 1.27) 623 | ) 624 | (hide yes) 625 | ) 626 | ) 627 | (property "Datasheet" "~" 628 | (at 0 0 0) 629 | (effects 630 | (font 631 | (size 1.27 1.27) 632 | ) 633 | (hide yes) 634 | ) 635 | ) 636 | (property "Description" "Resistor" 637 | (at 0 0 0) 638 | (effects 639 | (font 640 | (size 1.27 1.27) 641 | ) 642 | (hide yes) 643 | ) 644 | ) 645 | (property "ki_keywords" "R res resistor" 646 | (at 0 0 0) 647 | (effects 648 | (font 649 | (size 1.27 1.27) 650 | ) 651 | (hide yes) 652 | ) 653 | ) 654 | (property "ki_fp_filters" "R_*" 655 | (at 0 0 0) 656 | (effects 657 | (font 658 | (size 1.27 1.27) 659 | ) 660 | (hide yes) 661 | ) 662 | ) 663 | (symbol "R_0_1" 664 | (rectangle 665 | (start -1.016 -2.54) 666 | (end 1.016 2.54) 667 | (stroke 668 | (width 0.254) 669 | (type default) 670 | ) 671 | (fill 672 | (type none) 673 | ) 674 | ) 675 | ) 676 | (symbol "R_1_1" 677 | (pin passive line 678 | (at 0 3.81 270) 679 | (length 1.27) 680 | (name "~" 681 | (effects 682 | (font 683 | (size 1.27 1.27) 684 | ) 685 | ) 686 | ) 687 | (number "1" 688 | (effects 689 | (font 690 | (size 1.27 1.27) 691 | ) 692 | ) 693 | ) 694 | ) 695 | (pin passive line 696 | (at 0 -3.81 90) 697 | (length 1.27) 698 | (name "~" 699 | (effects 700 | (font 701 | (size 1.27 1.27) 702 | ) 703 | ) 704 | ) 705 | (number "2" 706 | (effects 707 | (font 708 | (size 1.27 1.27) 709 | ) 710 | ) 711 | ) 712 | ) 713 | ) 714 | ) 715 | (symbol "HPM5300_Library:HPM5301IEG1" 716 | (exclude_from_sim no) 717 | (in_bom yes) 718 | (on_board yes) 719 | (property "Reference" "U" 720 | (at -39.624 54.356 0) 721 | (effects 722 | (font 723 | (size 1.27 1.27) 724 | ) 725 | ) 726 | ) 727 | (property "Value" "HPM5301IEG1" 728 | (at -25.654 54.356 0) 729 | (effects 730 | (font 731 | (size 1.27 1.27) 732 | ) 733 | ) 734 | ) 735 | (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm" 736 | (at -24.13 63.5 0) 737 | (effects 738 | (font 739 | (size 1.27 1.27) 740 | ) 741 | (hide yes) 742 | ) 743 | ) 744 | (property "Datasheet" "http://www.hpmicro.com/down.aspx?DId=b9f427fc-7856-4897-8a2b-247d1845c1b1&LId=091cdc4f-0cbe-4040-87bc-79f1448ed356&SkipL=T" 745 | (at -45.72 11.43 0) 746 | (effects 747 | (font 748 | (size 1.27 1.27) 749 | ) 750 | (hide yes) 751 | ) 752 | ) 753 | (property "Description" "Hpmicro High Performance Motion Control MCU, QFN48" 754 | (at -40.64 50.8 0) 755 | (effects 756 | (font 757 | (size 1.27 1.27) 758 | ) 759 | (hide yes) 760 | ) 761 | ) 762 | (property "ki_locked" "" 763 | (at 0 0 0) 764 | (effects 765 | (font 766 | (size 1.27 1.27) 767 | ) 768 | ) 769 | ) 770 | (property "ki_keywords" "hpmicro MCU" 771 | (at 0 0 0) 772 | (effects 773 | (font 774 | (size 1.27 1.27) 775 | ) 776 | (hide yes) 777 | ) 778 | ) 779 | (property "ki_fp_filters" "*QFN*48*1EP*6x6mm*P0.4mm*EP4.2x4.2mm*" 780 | (at 0 0 0) 781 | (effects 782 | (font 783 | (size 1.27 1.27) 784 | ) 785 | (hide yes) 786 | ) 787 | ) 788 | (symbol "HPM5301IEG1_1_0" 789 | (pin power_in line 790 | (at 22.86 -17.78 180) 791 | (length 5.08) 792 | (name "VSS" 793 | (effects 794 | (font 795 | (size 1.27 1.27) 796 | ) 797 | ) 798 | ) 799 | (number "49" 800 | (effects 801 | (font 802 | (size 1.27 1.27) 803 | ) 804 | ) 805 | ) 806 | ) 807 | ) 808 | (symbol "HPM5301IEG1_1_1" 809 | (rectangle 810 | (start -17.78 22.86) 811 | (end 17.78 -22.86) 812 | (stroke 813 | (width 0.254) 814 | (type default) 815 | ) 816 | (fill 817 | (type background) 818 | ) 819 | ) 820 | (rectangle 821 | (start -16.51 8.89) 822 | (end -8.89 6.35) 823 | (stroke 824 | (width 0) 825 | (type default) 826 | ) 827 | (fill 828 | (type none) 829 | ) 830 | ) 831 | (rectangle 832 | (start -7.62 3.81) 833 | (end 0 1.27) 834 | (stroke 835 | (width 0) 836 | (type default) 837 | ) 838 | (fill 839 | (type none) 840 | ) 841 | ) 842 | (rectangle 843 | (start -7.62 13.97) 844 | (end -2.54 11.43) 845 | (stroke 846 | (width 0) 847 | (type default) 848 | ) 849 | (fill 850 | (type none) 851 | ) 852 | ) 853 | (rectangle 854 | (start -7.62 19.05) 855 | (end -2.54 16.51) 856 | (stroke 857 | (width 0) 858 | (type default) 859 | ) 860 | (fill 861 | (type none) 862 | ) 863 | ) 864 | (polyline 865 | (pts 866 | (xy -7.62 12.7) (xy -8.255 12.065) 867 | ) 868 | (stroke 869 | (width 0) 870 | (type default) 871 | ) 872 | (fill 873 | (type none) 874 | ) 875 | ) 876 | (polyline 877 | (pts 878 | (xy -7.62 12.7) (xy -8.255 13.335) 879 | ) 880 | (stroke 881 | (width 0) 882 | (type default) 883 | ) 884 | (fill 885 | (type none) 886 | ) 887 | ) 888 | (polyline 889 | (pts 890 | (xy -7.62 17.78) (xy -8.255 17.145) 891 | ) 892 | (stroke 893 | (width 0) 894 | (type default) 895 | ) 896 | (fill 897 | (type none) 898 | ) 899 | ) 900 | (polyline 901 | (pts 902 | (xy -7.62 17.78) (xy -8.255 18.415) 903 | ) 904 | (stroke 905 | (width 0) 906 | (type default) 907 | ) 908 | (fill 909 | (type none) 910 | ) 911 | ) 912 | (polyline 913 | (pts 914 | (xy -2.54 17.78) (xy 4.445 17.78) 915 | ) 916 | (stroke 917 | (width 0) 918 | (type default) 919 | ) 920 | (fill 921 | (type none) 922 | ) 923 | ) 924 | (polyline 925 | (pts 926 | (xy 4.445 12.7) (xy -2.54 12.7) 927 | ) 928 | (stroke 929 | (width 0) 930 | (type default) 931 | ) 932 | (fill 933 | (type none) 934 | ) 935 | ) 936 | (polyline 937 | (pts 938 | (xy 4.445 12.7) (xy 3.81 12.065) 939 | ) 940 | (stroke 941 | (width 0) 942 | (type default) 943 | ) 944 | (fill 945 | (type none) 946 | ) 947 | ) 948 | (polyline 949 | (pts 950 | (xy 4.445 12.7) (xy 3.81 13.335) 951 | ) 952 | (stroke 953 | (width 0) 954 | (type default) 955 | ) 956 | (fill 957 | (type none) 958 | ) 959 | ) 960 | (polyline 961 | (pts 962 | (xy 4.445 17.78) (xy 3.81 17.145) 963 | ) 964 | (stroke 965 | (width 0) 966 | (type default) 967 | ) 968 | (fill 969 | (type none) 970 | ) 971 | ) 972 | (polyline 973 | (pts 974 | (xy 4.445 17.78) (xy 3.81 18.415) 975 | ) 976 | (stroke 977 | (width 0) 978 | (type default) 979 | ) 980 | (fill 981 | (type none) 982 | ) 983 | ) 984 | (polyline 985 | (pts 986 | (xy -7.62 17.78) (xy -11.43 17.78) (xy -11.43 12.7) (xy -7.62 12.7) 987 | ) 988 | (stroke 989 | (width 0) 990 | (type default) 991 | ) 992 | (fill 993 | (type none) 994 | ) 995 | ) 996 | (polyline 997 | (pts 998 | (xy -8.89 7.62) (xy -3.175 7.62) (xy -3.175 3.81) (xy -3.81 4.445) (xy -3.175 3.81) (xy -2.54 4.445) 999 | ) 1000 | (stroke 1001 | (width 0) 1002 | (type default) 1003 | ) 1004 | (fill 1005 | (type none) 1006 | ) 1007 | ) 1008 | (polyline 1009 | (pts 1010 | (xy -3.175 1.27) (xy -3.175 -2.54) (xy -8.89 -2.54) (xy -8.255 -1.905) (xy -8.89 -2.54) (xy -8.255 -3.175) 1011 | ) 1012 | (stroke 1013 | (width 0) 1014 | (type default) 1015 | ) 1016 | (fill 1017 | (type none) 1018 | ) 1019 | ) 1020 | (text "DCDC" 1021 | (at -3.81 2.54 0) 1022 | (effects 1023 | (font 1024 | (size 1.27 1.27) 1025 | ) 1026 | ) 1027 | ) 1028 | (text "Internal" 1029 | (at -12.7 7.62 0) 1030 | (effects 1031 | (font 1032 | (size 1.27 1.27) 1033 | ) 1034 | ) 1035 | ) 1036 | (text "LDO" 1037 | (at -5.08 12.7 0) 1038 | (effects 1039 | (font 1040 | (size 1.27 1.27) 1041 | ) 1042 | ) 1043 | ) 1044 | (text "LDO" 1045 | (at -5.08 17.78 0) 1046 | (effects 1047 | (font 1048 | (size 1.27 1.27) 1049 | ) 1050 | ) 1051 | ) 1052 | (pin power_out line 1053 | (at 22.86 12.7 180) 1054 | (length 5.08) 1055 | (name "VDD_OTPCAP" 1056 | (effects 1057 | (font 1058 | (size 1.27 1.27) 1059 | ) 1060 | ) 1061 | ) 1062 | (number "10" 1063 | (effects 1064 | (font 1065 | (size 1.27 1.27) 1066 | ) 1067 | ) 1068 | ) 1069 | ) 1070 | (pin power_in line 1071 | (at -22.86 -2.54 0) 1072 | (length 5.08) 1073 | (name "DCDC_LP" 1074 | (effects 1075 | (font 1076 | (size 1.27 1.27) 1077 | ) 1078 | ) 1079 | ) 1080 | (number "15" 1081 | (effects 1082 | (font 1083 | (size 1.27 1.27) 1084 | ) 1085 | ) 1086 | ) 1087 | ) 1088 | (pin power_in line 1089 | (at -22.86 15.24 0) 1090 | (length 5.08) 1091 | (name "VPMC" 1092 | (effects 1093 | (font 1094 | (size 1.27 1.27) 1095 | ) 1096 | ) 1097 | ) 1098 | (number "16" 1099 | (effects 1100 | (font 1101 | (size 1.27 1.27) 1102 | ) 1103 | ) 1104 | ) 1105 | ) 1106 | (pin power_out line 1107 | (at 22.86 17.78 180) 1108 | (length 5.08) 1109 | (name "VDD_PMCCAP" 1110 | (effects 1111 | (font 1112 | (size 1.27 1.27) 1113 | ) 1114 | ) 1115 | ) 1116 | (number "17" 1117 | (effects 1118 | (font 1119 | (size 1.27 1.27) 1120 | ) 1121 | ) 1122 | ) 1123 | ) 1124 | (pin power_in line 1125 | (at 22.86 2.54 180) 1126 | (length 5.08) 1127 | (name "VDD_SOC" 1128 | (effects 1129 | (font 1130 | (size 1.27 1.27) 1131 | ) 1132 | ) 1133 | ) 1134 | (number "28" 1135 | (effects 1136 | (font 1137 | (size 1.27 1.27) 1138 | ) 1139 | ) 1140 | ) 1141 | ) 1142 | (pin power_in line 1143 | (at 22.86 -12.7 180) 1144 | (length 5.08) 1145 | (name "VIO_B01" 1146 | (effects 1147 | (font 1148 | (size 1.27 1.27) 1149 | ) 1150 | ) 1151 | ) 1152 | (number "29" 1153 | (effects 1154 | (font 1155 | (size 1.27 1.27) 1156 | ) 1157 | ) 1158 | ) 1159 | ) 1160 | (pin power_in line 1161 | (at -22.86 -17.78 0) 1162 | (length 5.08) 1163 | (name "VREFL" 1164 | (effects 1165 | (font 1166 | (size 1.27 1.27) 1167 | ) 1168 | ) 1169 | ) 1170 | (number "30" 1171 | (effects 1172 | (font 1173 | (size 1.27 1.27) 1174 | ) 1175 | ) 1176 | ) 1177 | ) 1178 | (pin power_in line 1179 | (at -22.86 -15.24 0) 1180 | (length 5.08) 1181 | (name "VREFH" 1182 | (effects 1183 | (font 1184 | (size 1.27 1.27) 1185 | ) 1186 | ) 1187 | ) 1188 | (number "31" 1189 | (effects 1190 | (font 1191 | (size 1.27 1.27) 1192 | ) 1193 | ) 1194 | ) 1195 | ) 1196 | (pin power_in line 1197 | (at -22.86 -12.7 0) 1198 | (length 5.08) 1199 | (name "VANA" 1200 | (effects 1201 | (font 1202 | (size 1.27 1.27) 1203 | ) 1204 | ) 1205 | ) 1206 | (number "32" 1207 | (effects 1208 | (font 1209 | (size 1.27 1.27) 1210 | ) 1211 | ) 1212 | ) 1213 | ) 1214 | (pin power_in line 1215 | (at 22.86 0 180) 1216 | (length 5.08) 1217 | (name "VDD_SOC" 1218 | (effects 1219 | (font 1220 | (size 1.27 1.27) 1221 | ) 1222 | ) 1223 | ) 1224 | (number "33" 1225 | (effects 1226 | (font 1227 | (size 1.27 1.27) 1228 | ) 1229 | ) 1230 | ) 1231 | ) 1232 | (pin power_in line 1233 | (at 22.86 -10.16 180) 1234 | (length 5.08) 1235 | (name "VIO_B00" 1236 | (effects 1237 | (font 1238 | (size 1.27 1.27) 1239 | ) 1240 | ) 1241 | ) 1242 | (number "34" 1243 | (effects 1244 | (font 1245 | (size 1.27 1.27) 1246 | ) 1247 | ) 1248 | ) 1249 | ) 1250 | (pin power_in line 1251 | (at 22.86 -2.54 180) 1252 | (length 5.08) 1253 | (name "VDD_SOC" 1254 | (effects 1255 | (font 1256 | (size 1.27 1.27) 1257 | ) 1258 | ) 1259 | ) 1260 | (number "45" 1261 | (effects 1262 | (font 1263 | (size 1.27 1.27) 1264 | ) 1265 | ) 1266 | ) 1267 | ) 1268 | (pin power_in line 1269 | (at 22.86 7.62 180) 1270 | (length 5.08) 1271 | (name "VDD_SOC" 1272 | (effects 1273 | (font 1274 | (size 1.27 1.27) 1275 | ) 1276 | ) 1277 | ) 1278 | (number "5" 1279 | (effects 1280 | (font 1281 | (size 1.27 1.27) 1282 | ) 1283 | ) 1284 | ) 1285 | ) 1286 | (pin power_in line 1287 | (at 22.86 -7.62 180) 1288 | (length 5.08) 1289 | (name "VIO_B00" 1290 | (effects 1291 | (font 1292 | (size 1.27 1.27) 1293 | ) 1294 | ) 1295 | ) 1296 | (number "6" 1297 | (effects 1298 | (font 1299 | (size 1.27 1.27) 1300 | ) 1301 | ) 1302 | ) 1303 | ) 1304 | (pin power_in line 1305 | (at 22.86 5.08 180) 1306 | (length 5.08) 1307 | (name "VDD_SOC" 1308 | (effects 1309 | (font 1310 | (size 1.27 1.27) 1311 | ) 1312 | ) 1313 | ) 1314 | (number "9" 1315 | (effects 1316 | (font 1317 | (size 1.27 1.27) 1318 | ) 1319 | ) 1320 | ) 1321 | ) 1322 | ) 1323 | (symbol "HPM5301IEG1_2_1" 1324 | (rectangle 1325 | (start -53.34 53.34) 1326 | (end 53.34 -53.34) 1327 | (stroke 1328 | (width 0.254) 1329 | (type default) 1330 | ) 1331 | (fill 1332 | (type background) 1333 | ) 1334 | ) 1335 | (pin bidirectional line 1336 | (at -58.42 33.02 0) 1337 | (length 5.08) 1338 | (name "PA04/URT1.CTS/SPI0.CS0/TRGM0.P04/JTAG.TDO" 1339 | (effects 1340 | (font 1341 | (size 1.27 1.27) 1342 | ) 1343 | ) 1344 | ) 1345 | (number "1" 1346 | (effects 1347 | (font 1348 | (size 1.27 1.27) 1349 | ) 1350 | ) 1351 | ) 1352 | ) 1353 | (pin bidirectional line 1354 | (at -58.42 40.64 0) 1355 | (length 5.08) 1356 | (name "PA01/TMR1.CAPT0/URT0.RXD/TRGM0.P01/ACMP.COMP0" 1357 | (effects 1358 | (font 1359 | (size 1.27 1.27) 1360 | ) 1361 | ) 1362 | ) 1363 | (number "11" 1364 | (effects 1365 | (font 1366 | (size 1.27 1.27) 1367 | ) 1368 | ) 1369 | ) 1370 | ) 1371 | (pin bidirectional line 1372 | (at -58.42 43.18 0) 1373 | (length 5.08) 1374 | (name "PA00/TMR1.COMP0/URT0.TXD/TRGM0.P00" 1375 | (effects 1376 | (font 1377 | (size 1.27 1.27) 1378 | ) 1379 | ) 1380 | ) 1381 | (number "12" 1382 | (effects 1383 | (font 1384 | (size 1.27 1.27) 1385 | ) 1386 | ) 1387 | ) 1388 | ) 1389 | (pin input line 1390 | (at -58.42 -45.72 0) 1391 | (length 5.08) 1392 | (name "~{RESETN}" 1393 | (effects 1394 | (font 1395 | (size 1.27 1.27) 1396 | ) 1397 | ) 1398 | ) 1399 | (number "13" 1400 | (effects 1401 | (font 1402 | (size 1.27 1.27) 1403 | ) 1404 | ) 1405 | ) 1406 | ) 1407 | (pin input line 1408 | (at -58.42 -48.26 0) 1409 | (length 5.08) 1410 | (name "WAKEUP" 1411 | (effects 1412 | (font 1413 | (size 1.27 1.27) 1414 | ) 1415 | ) 1416 | ) 1417 | (number "14" 1418 | (effects 1419 | (font 1420 | (size 1.27 1.27) 1421 | ) 1422 | ) 1423 | ) 1424 | ) 1425 | (pin bidirectional line 1426 | (at -58.42 -33.02 0) 1427 | (length 5.08) 1428 | (name "PY01/URT0.RXD/WDG0.RST/USB0.OC/PMIC_PY01/PURT.RXD/PTMR.COMP1/SOC.GPIO_Y01" 1429 | (effects 1430 | (font 1431 | (size 1.27 1.27) 1432 | ) 1433 | ) 1434 | ) 1435 | (number "18" 1436 | (effects 1437 | (font 1438 | (size 1.27 1.27) 1439 | ) 1440 | ) 1441 | ) 1442 | ) 1443 | (pin bidirectional line 1444 | (at -58.42 -30.48 0) 1445 | (length 5.08) 1446 | (name "PY00/URT0.TXD/USB0.ID/PMIC_PY00/PURT.TXD/PTMR.COMP0/SOC.GPIO_Y00" 1447 | (effects 1448 | (font 1449 | (size 1.27 1.27) 1450 | ) 1451 | ) 1452 | ) 1453 | (number "19" 1454 | (effects 1455 | (font 1456 | (size 1.27 1.27) 1457 | ) 1458 | ) 1459 | ) 1460 | ) 1461 | (pin bidirectional line 1462 | (at -58.42 22.86 0) 1463 | (length 5.08) 1464 | (name "PA08/TMR0.COMP1/URT2.TXD/I2C2.SCL/SPI3.CS2/JTAG.TRST" 1465 | (effects 1466 | (font 1467 | (size 1.27 1.27) 1468 | ) 1469 | ) 1470 | ) 1471 | (number "2" 1472 | (effects 1473 | (font 1474 | (size 1.27 1.27) 1475 | ) 1476 | ) 1477 | ) 1478 | ) 1479 | (pin bidirectional line 1480 | (at -58.42 -25.4 0) 1481 | (length 5.08) 1482 | (name "PB15/TMR0.COMP3/URT3.TXD/SPI2.DAT3/TRGM0.P03/ADC0.IN7/CMP0.INP1/CMP1.INP1" 1483 | (effects 1484 | (font 1485 | (size 1.27 1.27) 1486 | ) 1487 | ) 1488 | ) 1489 | (number "20" 1490 | (effects 1491 | (font 1492 | (size 1.27 1.27) 1493 | ) 1494 | ) 1495 | ) 1496 | ) 1497 | (pin bidirectional line 1498 | (at -58.42 -22.86 0) 1499 | (length 5.08) 1500 | (name "PB14/URT3.RXD/SPI2.DAT2/TRGM0.P02/ADC0.IN6/CMP0.INN1/CMP1.INN1" 1501 | (effects 1502 | (font 1503 | (size 1.27 1.27) 1504 | ) 1505 | ) 1506 | ) 1507 | (number "21" 1508 | (effects 1509 | (font 1510 | (size 1.27 1.27) 1511 | ) 1512 | ) 1513 | ) 1514 | ) 1515 | (pin bidirectional line 1516 | (at -58.42 -20.32 0) 1517 | (length 5.08) 1518 | (name "PB13/TMR1.COMP3/URT3.DE/URT3.RTS/I2C3.SCL/SPI2.MOSI/TRGM0.P01/ADC0.IN5/CMP0.INP2/CMP1.INP2" 1519 | (effects 1520 | (font 1521 | (size 1.27 1.27) 1522 | ) 1523 | ) 1524 | ) 1525 | (number "22" 1526 | (effects 1527 | (font 1528 | (size 1.27 1.27) 1529 | ) 1530 | ) 1531 | ) 1532 | ) 1533 | (pin bidirectional line 1534 | (at -58.42 -17.78 0) 1535 | (length 5.08) 1536 | (name "PB12/URT3.CTS/I2C3.SDA/SPI2.MISO/TRGM0.P00/ADC0.IN4/CMP0.INN2/CMP1.INN2" 1537 | (effects 1538 | (font 1539 | (size 1.27 1.27) 1540 | ) 1541 | ) 1542 | ) 1543 | (number "23" 1544 | (effects 1545 | (font 1546 | (size 1.27 1.27) 1547 | ) 1548 | ) 1549 | ) 1550 | ) 1551 | (pin bidirectional line 1552 | (at -58.42 -15.24 0) 1553 | (length 5.08) 1554 | (name "PB11/URT2.CTS/SPI2.SCLK/ACMP.COMP1/ADC0.IN3/CMP0.INN4/CMP1.INN4" 1555 | (effects 1556 | (font 1557 | (size 1.27 1.27) 1558 | ) 1559 | ) 1560 | ) 1561 | (number "24" 1562 | (effects 1563 | (font 1564 | (size 1.27 1.27) 1565 | ) 1566 | ) 1567 | ) 1568 | ) 1569 | (pin bidirectional line 1570 | (at -58.42 -12.7 0) 1571 | (length 5.08) 1572 | (name "PB10/TMR0.COMP2/URT2.DE/URT2.RTS/SPI2.CS0/ACMP.COMP0/USB0.PWR/ADC0.IN2/CMP0.INP4/CMP1.INP4" 1573 | (effects 1574 | (font 1575 | (size 1.27 1.27) 1576 | ) 1577 | ) 1578 | ) 1579 | (number "25" 1580 | (effects 1581 | (font 1582 | (size 1.27 1.27) 1583 | ) 1584 | ) 1585 | ) 1586 | ) 1587 | (pin bidirectional line 1588 | (at -58.42 -10.16 0) 1589 | (length 5.08) 1590 | (name "PB09/TMR0.CAPT1/URT2.RXD/I2C2.SDA/SPI2.CS1/ACMP.COMP1/USB0.OC/ADC0.IN1/CMP0.INP6/CMP1.INP6" 1591 | (effects 1592 | (font 1593 | (size 1.27 1.27) 1594 | ) 1595 | ) 1596 | ) 1597 | (number "26" 1598 | (effects 1599 | (font 1600 | (size 1.27 1.27) 1601 | ) 1602 | ) 1603 | ) 1604 | ) 1605 | (pin bidirectional line 1606 | (at -58.42 -7.62 0) 1607 | (length 5.08) 1608 | (name "PB08/TMR0.COMP1/URT2.TXD/I2C2.SCL/SPI2.CS2/ACMP.COMP0/USB0.ID/ADC0.IN11/CMP0.INN6/CMP1.INN6" 1609 | (effects 1610 | (font 1611 | (size 1.27 1.27) 1612 | ) 1613 | ) 1614 | ) 1615 | (number "27" 1616 | (effects 1617 | (font 1618 | (size 1.27 1.27) 1619 | ) 1620 | ) 1621 | ) 1622 | ) 1623 | (pin bidirectional line 1624 | (at -58.42 20.32 0) 1625 | (length 5.08) 1626 | (name "PA09/TMR0.CAPT1/URT2.RXD/I2C2.SDA/SPI3.CS1" 1627 | (effects 1628 | (font 1629 | (size 1.27 1.27) 1630 | ) 1631 | ) 1632 | ) 1633 | (number "3" 1634 | (effects 1635 | (font 1636 | (size 1.27 1.27) 1637 | ) 1638 | ) 1639 | ) 1640 | ) 1641 | (pin input line 1642 | (at -58.42 -38.1 0) 1643 | (length 5.08) 1644 | (name "XTALI" 1645 | (effects 1646 | (font 1647 | (size 1.27 1.27) 1648 | ) 1649 | ) 1650 | ) 1651 | (number "35" 1652 | (effects 1653 | (font 1654 | (size 1.27 1.27) 1655 | ) 1656 | ) 1657 | ) 1658 | ) 1659 | (pin output line 1660 | (at -58.42 -40.64 0) 1661 | (length 5.08) 1662 | (name "XTALO" 1663 | (effects 1664 | (font 1665 | (size 1.27 1.27) 1666 | ) 1667 | ) 1668 | ) 1669 | (number "36" 1670 | (effects 1671 | (font 1672 | (size 1.27 1.27) 1673 | ) 1674 | ) 1675 | ) 1676 | ) 1677 | (pin bidirectional line 1678 | (at -58.42 -2.54 0) 1679 | (length 5.08) 1680 | (name "PA31/SPI1.DAT3/XPI0.CA_CS0/TRGM0.P07/USB0.ID" 1681 | (effects 1682 | (font 1683 | (size 1.27 1.27) 1684 | ) 1685 | ) 1686 | ) 1687 | (number "37" 1688 | (effects 1689 | (font 1690 | (size 1.27 1.27) 1691 | ) 1692 | ) 1693 | ) 1694 | ) 1695 | (pin bidirectional line 1696 | (at -58.42 0 0) 1697 | (length 5.08) 1698 | (name "PA30/SPI1.DAT2/XPI0.CA_D1/TRGM0.P06/USB0.PWR" 1699 | (effects 1700 | (font 1701 | (size 1.27 1.27) 1702 | ) 1703 | ) 1704 | ) 1705 | (number "38" 1706 | (effects 1707 | (font 1708 | (size 1.27 1.27) 1709 | ) 1710 | ) 1711 | ) 1712 | ) 1713 | (pin bidirectional line 1714 | (at -58.42 2.54 0) 1715 | (length 5.08) 1716 | (name "PA29/I2C3.SCL/SPI1.MOSI/XPI0.CA_D2/TRGM0.P05/USB0.OC" 1717 | (effects 1718 | (font 1719 | (size 1.27 1.27) 1720 | ) 1721 | ) 1722 | ) 1723 | (number "39" 1724 | (effects 1725 | (font 1726 | (size 1.27 1.27) 1727 | ) 1728 | ) 1729 | ) 1730 | ) 1731 | (pin bidirectional line 1732 | (at -58.42 17.78 0) 1733 | (length 5.08) 1734 | (name "PA10/TMR0.COMP2/URT2.DE/URT2.RTS/SPI3.CS0/ACMP.COMP0" 1735 | (effects 1736 | (font 1737 | (size 1.27 1.27) 1738 | ) 1739 | ) 1740 | ) 1741 | (number "4" 1742 | (effects 1743 | (font 1744 | (size 1.27 1.27) 1745 | ) 1746 | ) 1747 | ) 1748 | ) 1749 | (pin bidirectional line 1750 | (at -58.42 5.08 0) 1751 | (length 5.08) 1752 | (name "PA28/I2C3.SDA/SPI1.MISO/XPI0.CA_D0/TRGM0.P04" 1753 | (effects 1754 | (font 1755 | (size 1.27 1.27) 1756 | ) 1757 | ) 1758 | ) 1759 | (number "40" 1760 | (effects 1761 | (font 1762 | (size 1.27 1.27) 1763 | ) 1764 | ) 1765 | ) 1766 | ) 1767 | (pin bidirectional line 1768 | (at -58.42 7.62 0) 1769 | (length 5.08) 1770 | (name "PA27/SPI1.SCLK/XPI0.CA_SCLK/TRGM0.P03" 1771 | (effects 1772 | (font 1773 | (size 1.27 1.27) 1774 | ) 1775 | ) 1776 | ) 1777 | (number "41" 1778 | (effects 1779 | (font 1780 | (size 1.27 1.27) 1781 | ) 1782 | ) 1783 | ) 1784 | ) 1785 | (pin bidirectional line 1786 | (at -58.42 10.16 0) 1787 | (length 5.08) 1788 | (name "PA26/SPI1.CS0/XPI0.CA_D3/TRGM0.P02" 1789 | (effects 1790 | (font 1791 | (size 1.27 1.27) 1792 | ) 1793 | ) 1794 | ) 1795 | (number "42" 1796 | (effects 1797 | (font 1798 | (size 1.27 1.27) 1799 | ) 1800 | ) 1801 | ) 1802 | ) 1803 | (pin bidirectional line 1804 | (at -58.42 12.7 0) 1805 | (length 5.08) 1806 | (name "PA25/I2C2.SDA/SPI1.CS1/XPI0.CA_DQS/TRGM0.P01" 1807 | (effects 1808 | (font 1809 | (size 1.27 1.27) 1810 | ) 1811 | ) 1812 | ) 1813 | (number "43" 1814 | (effects 1815 | (font 1816 | (size 1.27 1.27) 1817 | ) 1818 | ) 1819 | ) 1820 | ) 1821 | (pin bidirectional line 1822 | (at -58.42 15.24 0) 1823 | (length 5.08) 1824 | (name "PA24/I2C2.SCL/SPI1.CS2/XPI0.CA_CS1/TRGM0.P00" 1825 | (effects 1826 | (font 1827 | (size 1.27 1.27) 1828 | ) 1829 | ) 1830 | ) 1831 | (number "44" 1832 | (effects 1833 | (font 1834 | (size 1.27 1.27) 1835 | ) 1836 | ) 1837 | ) 1838 | ) 1839 | (pin bidirectional line 1840 | (at -58.42 25.4 0) 1841 | (length 5.08) 1842 | (name "PA07/TMR0.COMP0/URT1.TXD/I2C1.SCL/SPI0.MOSI/TRGM0.P07/JTAG.TMS" 1843 | (effects 1844 | (font 1845 | (size 1.27 1.27) 1846 | ) 1847 | ) 1848 | ) 1849 | (number "46" 1850 | (effects 1851 | (font 1852 | (size 1.27 1.27) 1853 | ) 1854 | ) 1855 | ) 1856 | ) 1857 | (pin bidirectional line 1858 | (at -58.42 27.94 0) 1859 | (length 5.08) 1860 | (name "PA06/TMR0.CAPT0/URT1.RXD/I2C1.SDA/SPI0.MISO/TRGM0.P06/JTAG.TCK" 1861 | (effects 1862 | (font 1863 | (size 1.27 1.27) 1864 | ) 1865 | ) 1866 | ) 1867 | (number "47" 1868 | (effects 1869 | (font 1870 | (size 1.27 1.27) 1871 | ) 1872 | ) 1873 | ) 1874 | ) 1875 | (pin bidirectional line 1876 | (at -58.42 30.48 0) 1877 | (length 5.08) 1878 | (name "PA05/TMR1.COMP2/URT1.DE/URT1.RTS/SPI0.SCLK/TRGM0.P05/JTAG.TDI" 1879 | (effects 1880 | (font 1881 | (size 1.27 1.27) 1882 | ) 1883 | ) 1884 | ) 1885 | (number "48" 1886 | (effects 1887 | (font 1888 | (size 1.27 1.27) 1889 | ) 1890 | ) 1891 | ) 1892 | ) 1893 | (pin bidirectional line 1894 | (at -58.42 35.56 0) 1895 | (length 5.08) 1896 | (name "PA03/TMR1.CAPT1/URT0.CTS/I2C0.SDA/SPI3.CS3/ACMP.COMP1/TRGM0.P03/ADC0.DBG" 1897 | (effects 1898 | (font 1899 | (size 1.27 1.27) 1900 | ) 1901 | ) 1902 | ) 1903 | (number "7" 1904 | (effects 1905 | (font 1906 | (size 1.27 1.27) 1907 | ) 1908 | ) 1909 | ) 1910 | ) 1911 | (pin bidirectional line 1912 | (at -58.42 38.1 0) 1913 | (length 5.08) 1914 | (name "PA02/TMR1.COMP1/URT0.DE/URT0.RTS/I2C0.SCL/ACMP.COMP0/TRGM0.P02/ACMP.COMP1" 1915 | (effects 1916 | (font 1917 | (size 1.27 1.27) 1918 | ) 1919 | ) 1920 | ) 1921 | (number "8" 1922 | (effects 1923 | (font 1924 | (size 1.27 1.27) 1925 | ) 1926 | ) 1927 | ) 1928 | ) 1929 | ) 1930 | ) 1931 | (symbol "LED:WS2812B" 1932 | (pin_names 1933 | (offset 0.254) 1934 | ) 1935 | (exclude_from_sim no) 1936 | (in_bom yes) 1937 | (on_board yes) 1938 | (property "Reference" "D" 1939 | (at 5.08 5.715 0) 1940 | (effects 1941 | (font 1942 | (size 1.27 1.27) 1943 | ) 1944 | (justify right bottom) 1945 | ) 1946 | ) 1947 | (property "Value" "WS2812B" 1948 | (at 1.27 -5.715 0) 1949 | (effects 1950 | (font 1951 | (size 1.27 1.27) 1952 | ) 1953 | (justify left top) 1954 | ) 1955 | ) 1956 | (property "Footprint" "LED_SMD:LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm" 1957 | (at 1.27 -7.62 0) 1958 | (effects 1959 | (font 1960 | (size 1.27 1.27) 1961 | ) 1962 | (justify left top) 1963 | (hide yes) 1964 | ) 1965 | ) 1966 | (property "Datasheet" "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" 1967 | (at 2.54 -9.525 0) 1968 | (effects 1969 | (font 1970 | (size 1.27 1.27) 1971 | ) 1972 | (justify left top) 1973 | (hide yes) 1974 | ) 1975 | ) 1976 | (property "Description" "RGB LED with integrated controller" 1977 | (at 0 0 0) 1978 | (effects 1979 | (font 1980 | (size 1.27 1.27) 1981 | ) 1982 | (hide yes) 1983 | ) 1984 | ) 1985 | (property "ki_keywords" "RGB LED NeoPixel addressable" 1986 | (at 0 0 0) 1987 | (effects 1988 | (font 1989 | (size 1.27 1.27) 1990 | ) 1991 | (hide yes) 1992 | ) 1993 | ) 1994 | (property "ki_fp_filters" "LED*WS2812*PLCC*5.0x5.0mm*P3.2mm*" 1995 | (at 0 0 0) 1996 | (effects 1997 | (font 1998 | (size 1.27 1.27) 1999 | ) 2000 | (hide yes) 2001 | ) 2002 | ) 2003 | (symbol "WS2812B_0_0" 2004 | (text "RGB" 2005 | (at 2.286 -4.191 0) 2006 | (effects 2007 | (font 2008 | (size 0.762 0.762) 2009 | ) 2010 | ) 2011 | ) 2012 | ) 2013 | (symbol "WS2812B_0_1" 2014 | (polyline 2015 | (pts 2016 | (xy 1.27 -3.556) (xy 1.778 -3.556) 2017 | ) 2018 | (stroke 2019 | (width 0) 2020 | (type default) 2021 | ) 2022 | (fill 2023 | (type none) 2024 | ) 2025 | ) 2026 | (polyline 2027 | (pts 2028 | (xy 1.27 -2.54) (xy 1.778 -2.54) 2029 | ) 2030 | (stroke 2031 | (width 0) 2032 | (type default) 2033 | ) 2034 | (fill 2035 | (type none) 2036 | ) 2037 | ) 2038 | (polyline 2039 | (pts 2040 | (xy 4.699 -3.556) (xy 2.667 -3.556) 2041 | ) 2042 | (stroke 2043 | (width 0) 2044 | (type default) 2045 | ) 2046 | (fill 2047 | (type none) 2048 | ) 2049 | ) 2050 | (polyline 2051 | (pts 2052 | (xy 2.286 -2.54) (xy 1.27 -3.556) (xy 1.27 -3.048) 2053 | ) 2054 | (stroke 2055 | (width 0) 2056 | (type default) 2057 | ) 2058 | (fill 2059 | (type none) 2060 | ) 2061 | ) 2062 | (polyline 2063 | (pts 2064 | (xy 2.286 -1.524) (xy 1.27 -2.54) (xy 1.27 -2.032) 2065 | ) 2066 | (stroke 2067 | (width 0) 2068 | (type default) 2069 | ) 2070 | (fill 2071 | (type none) 2072 | ) 2073 | ) 2074 | (polyline 2075 | (pts 2076 | (xy 3.683 -1.016) (xy 3.683 -3.556) (xy 3.683 -4.064) 2077 | ) 2078 | (stroke 2079 | (width 0) 2080 | (type default) 2081 | ) 2082 | (fill 2083 | (type none) 2084 | ) 2085 | ) 2086 | (polyline 2087 | (pts 2088 | (xy 4.699 -1.524) (xy 2.667 -1.524) (xy 3.683 -3.556) (xy 4.699 -1.524) 2089 | ) 2090 | (stroke 2091 | (width 0) 2092 | (type default) 2093 | ) 2094 | (fill 2095 | (type none) 2096 | ) 2097 | ) 2098 | (rectangle 2099 | (start 5.08 5.08) 2100 | (end -5.08 -5.08) 2101 | (stroke 2102 | (width 0.254) 2103 | (type default) 2104 | ) 2105 | (fill 2106 | (type background) 2107 | ) 2108 | ) 2109 | ) 2110 | (symbol "WS2812B_1_1" 2111 | (pin power_in line 2112 | (at 0 7.62 270) 2113 | (length 2.54) 2114 | (name "VDD" 2115 | (effects 2116 | (font 2117 | (size 1.27 1.27) 2118 | ) 2119 | ) 2120 | ) 2121 | (number "1" 2122 | (effects 2123 | (font 2124 | (size 1.27 1.27) 2125 | ) 2126 | ) 2127 | ) 2128 | ) 2129 | (pin output line 2130 | (at 7.62 0 180) 2131 | (length 2.54) 2132 | (name "DOUT" 2133 | (effects 2134 | (font 2135 | (size 1.27 1.27) 2136 | ) 2137 | ) 2138 | ) 2139 | (number "2" 2140 | (effects 2141 | (font 2142 | (size 1.27 1.27) 2143 | ) 2144 | ) 2145 | ) 2146 | ) 2147 | (pin power_in line 2148 | (at 0 -7.62 90) 2149 | (length 2.54) 2150 | (name "VSS" 2151 | (effects 2152 | (font 2153 | (size 1.27 1.27) 2154 | ) 2155 | ) 2156 | ) 2157 | (number "3" 2158 | (effects 2159 | (font 2160 | (size 1.27 1.27) 2161 | ) 2162 | ) 2163 | ) 2164 | ) 2165 | (pin input line 2166 | (at -7.62 0 0) 2167 | (length 2.54) 2168 | (name "DIN" 2169 | (effects 2170 | (font 2171 | (size 1.27 1.27) 2172 | ) 2173 | ) 2174 | ) 2175 | (number "4" 2176 | (effects 2177 | (font 2178 | (size 1.27 1.27) 2179 | ) 2180 | ) 2181 | ) 2182 | ) 2183 | ) 2184 | ) 2185 | (symbol "Switch:SW_Push" 2186 | (pin_numbers hide) 2187 | (pin_names 2188 | (offset 1.016) hide) 2189 | (exclude_from_sim no) 2190 | (in_bom yes) 2191 | (on_board yes) 2192 | (property "Reference" "SW" 2193 | (at 1.27 2.54 0) 2194 | (effects 2195 | (font 2196 | (size 1.27 1.27) 2197 | ) 2198 | (justify left) 2199 | ) 2200 | ) 2201 | (property "Value" "SW_Push" 2202 | (at 0 -1.524 0) 2203 | (effects 2204 | (font 2205 | (size 1.27 1.27) 2206 | ) 2207 | ) 2208 | ) 2209 | (property "Footprint" "" 2210 | (at 0 5.08 0) 2211 | (effects 2212 | (font 2213 | (size 1.27 1.27) 2214 | ) 2215 | (hide yes) 2216 | ) 2217 | ) 2218 | (property "Datasheet" "~" 2219 | (at 0 5.08 0) 2220 | (effects 2221 | (font 2222 | (size 1.27 1.27) 2223 | ) 2224 | (hide yes) 2225 | ) 2226 | ) 2227 | (property "Description" "Push button switch, generic, two pins" 2228 | (at 0 0 0) 2229 | (effects 2230 | (font 2231 | (size 1.27 1.27) 2232 | ) 2233 | (hide yes) 2234 | ) 2235 | ) 2236 | (property "ki_keywords" "switch normally-open pushbutton push-button" 2237 | (at 0 0 0) 2238 | (effects 2239 | (font 2240 | (size 1.27 1.27) 2241 | ) 2242 | (hide yes) 2243 | ) 2244 | ) 2245 | (symbol "SW_Push_0_1" 2246 | (circle 2247 | (center -2.032 0) 2248 | (radius 0.508) 2249 | (stroke 2250 | (width 0) 2251 | (type default) 2252 | ) 2253 | (fill 2254 | (type none) 2255 | ) 2256 | ) 2257 | (polyline 2258 | (pts 2259 | (xy 0 1.27) (xy 0 3.048) 2260 | ) 2261 | (stroke 2262 | (width 0) 2263 | (type default) 2264 | ) 2265 | (fill 2266 | (type none) 2267 | ) 2268 | ) 2269 | (polyline 2270 | (pts 2271 | (xy 2.54 1.27) (xy -2.54 1.27) 2272 | ) 2273 | (stroke 2274 | (width 0) 2275 | (type default) 2276 | ) 2277 | (fill 2278 | (type none) 2279 | ) 2280 | ) 2281 | (circle 2282 | (center 2.032 0) 2283 | (radius 0.508) 2284 | (stroke 2285 | (width 0) 2286 | (type default) 2287 | ) 2288 | (fill 2289 | (type none) 2290 | ) 2291 | ) 2292 | (pin passive line 2293 | (at -5.08 0 0) 2294 | (length 2.54) 2295 | (name "1" 2296 | (effects 2297 | (font 2298 | (size 1.27 1.27) 2299 | ) 2300 | ) 2301 | ) 2302 | (number "1" 2303 | (effects 2304 | (font 2305 | (size 1.27 1.27) 2306 | ) 2307 | ) 2308 | ) 2309 | ) 2310 | (pin passive line 2311 | (at 5.08 0 180) 2312 | (length 2.54) 2313 | (name "2" 2314 | (effects 2315 | (font 2316 | (size 1.27 1.27) 2317 | ) 2318 | ) 2319 | ) 2320 | (number "2" 2321 | (effects 2322 | (font 2323 | (size 1.27 1.27) 2324 | ) 2325 | ) 2326 | ) 2327 | ) 2328 | ) 2329 | ) 2330 | (symbol "power:+3V3" 2331 | (power) 2332 | (pin_numbers hide) 2333 | (pin_names 2334 | (offset 0) hide) 2335 | (exclude_from_sim no) 2336 | (in_bom yes) 2337 | (on_board yes) 2338 | (property "Reference" "#PWR" 2339 | (at 0 -3.81 0) 2340 | (effects 2341 | (font 2342 | (size 1.27 1.27) 2343 | ) 2344 | (hide yes) 2345 | ) 2346 | ) 2347 | (property "Value" "+3V3" 2348 | (at 0 3.556 0) 2349 | (effects 2350 | (font 2351 | (size 1.27 1.27) 2352 | ) 2353 | ) 2354 | ) 2355 | (property "Footprint" "" 2356 | (at 0 0 0) 2357 | (effects 2358 | (font 2359 | (size 1.27 1.27) 2360 | ) 2361 | (hide yes) 2362 | ) 2363 | ) 2364 | (property "Datasheet" "" 2365 | (at 0 0 0) 2366 | (effects 2367 | (font 2368 | (size 1.27 1.27) 2369 | ) 2370 | (hide yes) 2371 | ) 2372 | ) 2373 | (property "Description" "Power symbol creates a global label with name \"+3V3\"" 2374 | (at 0 0 0) 2375 | (effects 2376 | (font 2377 | (size 1.27 1.27) 2378 | ) 2379 | (hide yes) 2380 | ) 2381 | ) 2382 | (property "ki_keywords" "global power" 2383 | (at 0 0 0) 2384 | (effects 2385 | (font 2386 | (size 1.27 1.27) 2387 | ) 2388 | (hide yes) 2389 | ) 2390 | ) 2391 | (symbol "+3V3_0_1" 2392 | (polyline 2393 | (pts 2394 | (xy -0.762 1.27) (xy 0 2.54) 2395 | ) 2396 | (stroke 2397 | (width 0) 2398 | (type default) 2399 | ) 2400 | (fill 2401 | (type none) 2402 | ) 2403 | ) 2404 | (polyline 2405 | (pts 2406 | (xy 0 0) (xy 0 2.54) 2407 | ) 2408 | (stroke 2409 | (width 0) 2410 | (type default) 2411 | ) 2412 | (fill 2413 | (type none) 2414 | ) 2415 | ) 2416 | (polyline 2417 | (pts 2418 | (xy 0 2.54) (xy 0.762 1.27) 2419 | ) 2420 | (stroke 2421 | (width 0) 2422 | (type default) 2423 | ) 2424 | (fill 2425 | (type none) 2426 | ) 2427 | ) 2428 | ) 2429 | (symbol "+3V3_1_1" 2430 | (pin power_in line 2431 | (at 0 0 90) 2432 | (length 0) 2433 | (name "~" 2434 | (effects 2435 | (font 2436 | (size 1.27 1.27) 2437 | ) 2438 | ) 2439 | ) 2440 | (number "1" 2441 | (effects 2442 | (font 2443 | (size 1.27 1.27) 2444 | ) 2445 | ) 2446 | ) 2447 | ) 2448 | ) 2449 | ) 2450 | (symbol "power:GND" 2451 | (power) 2452 | (pin_numbers hide) 2453 | (pin_names 2454 | (offset 0) hide) 2455 | (exclude_from_sim no) 2456 | (in_bom yes) 2457 | (on_board yes) 2458 | (property "Reference" "#PWR" 2459 | (at 0 -6.35 0) 2460 | (effects 2461 | (font 2462 | (size 1.27 1.27) 2463 | ) 2464 | (hide yes) 2465 | ) 2466 | ) 2467 | (property "Value" "GND" 2468 | (at 0 -3.81 0) 2469 | (effects 2470 | (font 2471 | (size 1.27 1.27) 2472 | ) 2473 | ) 2474 | ) 2475 | (property "Footprint" "" 2476 | (at 0 0 0) 2477 | (effects 2478 | (font 2479 | (size 1.27 1.27) 2480 | ) 2481 | (hide yes) 2482 | ) 2483 | ) 2484 | (property "Datasheet" "" 2485 | (at 0 0 0) 2486 | (effects 2487 | (font 2488 | (size 1.27 1.27) 2489 | ) 2490 | (hide yes) 2491 | ) 2492 | ) 2493 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 2494 | (at 0 0 0) 2495 | (effects 2496 | (font 2497 | (size 1.27 1.27) 2498 | ) 2499 | (hide yes) 2500 | ) 2501 | ) 2502 | (property "ki_keywords" "global power" 2503 | (at 0 0 0) 2504 | (effects 2505 | (font 2506 | (size 1.27 1.27) 2507 | ) 2508 | (hide yes) 2509 | ) 2510 | ) 2511 | (symbol "GND_0_1" 2512 | (polyline 2513 | (pts 2514 | (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) 2515 | ) 2516 | (stroke 2517 | (width 0) 2518 | (type default) 2519 | ) 2520 | (fill 2521 | (type none) 2522 | ) 2523 | ) 2524 | ) 2525 | (symbol "GND_1_1" 2526 | (pin power_in line 2527 | (at 0 0 270) 2528 | (length 0) 2529 | (name "~" 2530 | (effects 2531 | (font 2532 | (size 1.27 1.27) 2533 | ) 2534 | ) 2535 | ) 2536 | (number "1" 2537 | (effects 2538 | (font 2539 | (size 1.27 1.27) 2540 | ) 2541 | ) 2542 | ) 2543 | ) 2544 | ) 2545 | ) 2546 | (symbol "power:VCC" 2547 | (power) 2548 | (pin_numbers hide) 2549 | (pin_names 2550 | (offset 0) hide) 2551 | (exclude_from_sim no) 2552 | (in_bom yes) 2553 | (on_board yes) 2554 | (property "Reference" "#PWR" 2555 | (at 0 -3.81 0) 2556 | (effects 2557 | (font 2558 | (size 1.27 1.27) 2559 | ) 2560 | (hide yes) 2561 | ) 2562 | ) 2563 | (property "Value" "VCC" 2564 | (at 0 3.556 0) 2565 | (effects 2566 | (font 2567 | (size 1.27 1.27) 2568 | ) 2569 | ) 2570 | ) 2571 | (property "Footprint" "" 2572 | (at 0 0 0) 2573 | (effects 2574 | (font 2575 | (size 1.27 1.27) 2576 | ) 2577 | (hide yes) 2578 | ) 2579 | ) 2580 | (property "Datasheet" "" 2581 | (at 0 0 0) 2582 | (effects 2583 | (font 2584 | (size 1.27 1.27) 2585 | ) 2586 | (hide yes) 2587 | ) 2588 | ) 2589 | (property "Description" "Power symbol creates a global label with name \"VCC\"" 2590 | (at 0 0 0) 2591 | (effects 2592 | (font 2593 | (size 1.27 1.27) 2594 | ) 2595 | (hide yes) 2596 | ) 2597 | ) 2598 | (property "ki_keywords" "global power" 2599 | (at 0 0 0) 2600 | (effects 2601 | (font 2602 | (size 1.27 1.27) 2603 | ) 2604 | (hide yes) 2605 | ) 2606 | ) 2607 | (symbol "VCC_0_1" 2608 | (polyline 2609 | (pts 2610 | (xy -0.762 1.27) (xy 0 2.54) 2611 | ) 2612 | (stroke 2613 | (width 0) 2614 | (type default) 2615 | ) 2616 | (fill 2617 | (type none) 2618 | ) 2619 | ) 2620 | (polyline 2621 | (pts 2622 | (xy 0 0) (xy 0 2.54) 2623 | ) 2624 | (stroke 2625 | (width 0) 2626 | (type default) 2627 | ) 2628 | (fill 2629 | (type none) 2630 | ) 2631 | ) 2632 | (polyline 2633 | (pts 2634 | (xy 0 2.54) (xy 0.762 1.27) 2635 | ) 2636 | (stroke 2637 | (width 0) 2638 | (type default) 2639 | ) 2640 | (fill 2641 | (type none) 2642 | ) 2643 | ) 2644 | ) 2645 | (symbol "VCC_1_1" 2646 | (pin power_in line 2647 | (at 0 0 90) 2648 | (length 0) 2649 | (name "~" 2650 | (effects 2651 | (font 2652 | (size 1.27 1.27) 2653 | ) 2654 | ) 2655 | ) 2656 | (number "1" 2657 | (effects 2658 | (font 2659 | (size 1.27 1.27) 2660 | ) 2661 | ) 2662 | ) 2663 | ) 2664 | ) 2665 | ) 2666 | ) 2667 | (junction 2668 | (at 30.48 144.78) 2669 | (diameter 0) 2670 | (color 0 0 0 0) 2671 | (uuid "04ebd2a8-1f3b-4783-b738-26cdd31f9ba9") 2672 | ) 2673 | (junction 2674 | (at 86.36 129.54) 2675 | (diameter 0) 2676 | (color 0 0 0 0) 2677 | (uuid "05efbd29-518d-4ba9-99ed-607be56e1564") 2678 | ) 2679 | (junction 2680 | (at 30.48 127) 2681 | (diameter 0) 2682 | (color 0 0 0 0) 2683 | (uuid "2b85d7cb-6b1d-45c6-8c21-7b63749e222f") 2684 | ) 2685 | (junction 2686 | (at 22.86 144.78) 2687 | (diameter 0) 2688 | (color 0 0 0 0) 2689 | (uuid "2c885b20-0505-4ca7-8a83-3623de18b0d0") 2690 | ) 2691 | (junction 2692 | (at 105.41 139.7) 2693 | (diameter 0) 2694 | (color 0 0 0 0) 2695 | (uuid "3dc63ffe-d703-4c0f-8c3e-0e122450ab44") 2696 | ) 2697 | (junction 2698 | (at 38.1 144.78) 2699 | (diameter 0) 2700 | (color 0 0 0 0) 2701 | (uuid "43dcf618-420c-4369-9058-ac52fe8143d1") 2702 | ) 2703 | (junction 2704 | (at 123.19 139.7) 2705 | (diameter 0) 2706 | (color 0 0 0 0) 2707 | (uuid "4c3275f7-5d81-479c-a0f9-49f82f77401b") 2708 | ) 2709 | (junction 2710 | (at 86.36 132.08) 2711 | (diameter 0) 2712 | (color 0 0 0 0) 2713 | (uuid "4e77cac8-56ed-4b9a-9cce-a27fab8a71c2") 2714 | ) 2715 | (junction 2716 | (at 74.93 162.56) 2717 | (diameter 0) 2718 | (color 0 0 0 0) 2719 | (uuid "6d598537-53d6-446c-9d56-eaae7d530536") 2720 | ) 2721 | (junction 2722 | (at 138.43 139.7) 2723 | (diameter 0) 2724 | (color 0 0 0 0) 2725 | (uuid "bc65b0c6-4cdb-4fa7-87fd-41ca3b703bbd") 2726 | ) 2727 | (junction 2728 | (at 21.59 63.5) 2729 | (diameter 0) 2730 | (color 0 0 0 0) 2731 | (uuid "ed0f9907-8215-4373-b550-c3687b1810e6") 2732 | ) 2733 | (no_connect 2734 | (at 82.55 171.45) 2735 | (uuid "542a9147-b548-4f1c-bf2f-143f121f4573") 2736 | ) 2737 | (no_connect 2738 | (at 34.29 97.79) 2739 | (uuid "735ed186-c9cc-4ef7-8f1e-8cfcbf6a08ce") 2740 | ) 2741 | (no_connect 2742 | (at 34.29 100.33) 2743 | (uuid "7d7f5377-03ea-43c6-b76e-4eb5aa4a8e8e") 2744 | ) 2745 | (no_connect 2746 | (at 34.29 34.29) 2747 | (uuid "8c86dc38-2b91-4c80-9c5d-1e2375a78a9b") 2748 | ) 2749 | (no_connect 2750 | (at 34.29 115.57) 2751 | (uuid "9c75c60c-0778-460b-963c-3b5428b0a5fd") 2752 | ) 2753 | (no_connect 2754 | (at 34.29 36.83) 2755 | (uuid "cdf09c49-382e-4821-aa56-6e4d85a8351e") 2756 | ) 2757 | (wire 2758 | (pts 2759 | (xy 236.22 48.26) (xy 243.84 48.26) 2760 | ) 2761 | (stroke 2762 | (width 0) 2763 | (type default) 2764 | ) 2765 | (uuid "00fbbbff-b254-4a72-9d17-e4ad6f037e99") 2766 | ) 2767 | (wire 2768 | (pts 2769 | (xy 236.22 43.18) (xy 243.84 43.18) 2770 | ) 2771 | (stroke 2772 | (width 0) 2773 | (type default) 2774 | ) 2775 | (uuid "04836306-123c-4bee-a357-870930907562") 2776 | ) 2777 | (wire 2778 | (pts 2779 | (xy 22.86 133.35) (xy 26.67 133.35) 2780 | ) 2781 | (stroke 2782 | (width 0) 2783 | (type default) 2784 | ) 2785 | (uuid "052d8d88-92b0-44dc-869c-e13f5ac3b161") 2786 | ) 2787 | (wire 2788 | (pts 2789 | (xy 138.43 139.7) (xy 139.7 139.7) 2790 | ) 2791 | (stroke 2792 | (width 0) 2793 | (type default) 2794 | ) 2795 | (uuid "053180cf-c9e2-46f5-a8bb-85a9386e2b24") 2796 | ) 2797 | (wire 2798 | (pts 2799 | (xy 276.86 27.94) (xy 279.4 27.94) 2800 | ) 2801 | (stroke 2802 | (width 0) 2803 | (type default) 2804 | ) 2805 | (uuid "059a4398-8d87-495d-aadb-b3412f8027a9") 2806 | ) 2807 | (wire 2808 | (pts 2809 | (xy 17.78 144.78) (xy 22.86 144.78) 2810 | ) 2811 | (stroke 2812 | (width 0) 2813 | (type default) 2814 | ) 2815 | (uuid "08a86a18-5723-4dce-a62a-e599543de5a2") 2816 | ) 2817 | (wire 2818 | (pts 2819 | (xy 276.86 50.8) (xy 279.4 50.8) 2820 | ) 2821 | (stroke 2822 | (width 0) 2823 | (type default) 2824 | ) 2825 | (uuid "0988b46d-51ae-4b7d-963d-e81a27587d8e") 2826 | ) 2827 | (wire 2828 | (pts 2829 | (xy 86.36 127) (xy 86.36 129.54) 2830 | ) 2831 | (stroke 2832 | (width 0) 2833 | (type default) 2834 | ) 2835 | (uuid "09d64ce3-3077-4b71-80ec-815bdd9e5673") 2836 | ) 2837 | (wire 2838 | (pts 2839 | (xy 22.86 41.91) (xy 34.29 41.91) 2840 | ) 2841 | (stroke 2842 | (width 0) 2843 | (type default) 2844 | ) 2845 | (uuid "0d42d5e2-9a6f-4be0-a433-36d5f149b020") 2846 | ) 2847 | (wire 2848 | (pts 2849 | (xy 86.36 132.08) (xy 86.36 134.62) 2850 | ) 2851 | (stroke 2852 | (width 0) 2853 | (type default) 2854 | ) 2855 | (uuid "0d6c4ff1-6947-4a40-b986-4250d4a469bb") 2856 | ) 2857 | (wire 2858 | (pts 2859 | (xy 22.86 144.78) (xy 30.48 144.78) 2860 | ) 2861 | (stroke 2862 | (width 0) 2863 | (type default) 2864 | ) 2865 | (uuid "161b34b9-433e-43f7-b2f6-a6d3c8488881") 2866 | ) 2867 | (wire 2868 | (pts 2869 | (xy 22.86 144.78) (xy 22.86 143.51) 2870 | ) 2871 | (stroke 2872 | (width 0) 2873 | (type default) 2874 | ) 2875 | (uuid "163c1c97-d478-461d-8f72-a57b7c5f5204") 2876 | ) 2877 | (wire 2878 | (pts 2879 | (xy 238.76 20.32) (xy 243.84 20.32) 2880 | ) 2881 | (stroke 2882 | (width 0) 2883 | (type default) 2884 | ) 2885 | (uuid "171f688f-21fb-412e-b9ac-498baad3201e") 2886 | ) 2887 | (wire 2888 | (pts 2889 | (xy 43.18 127) (xy 43.18 144.78) 2890 | ) 2891 | (stroke 2892 | (width 0) 2893 | (type default) 2894 | ) 2895 | (uuid "1f9acc05-20e4-401a-a48e-521ef7bc0365") 2896 | ) 2897 | (wire 2898 | (pts 2899 | (xy 105.41 138.43) (xy 105.41 139.7) 2900 | ) 2901 | (stroke 2902 | (width 0) 2903 | (type default) 2904 | ) 2905 | (uuid "21a1a19c-0337-4c08-97e7-eb1f1accfac8") 2906 | ) 2907 | (wire 2908 | (pts 2909 | (xy 83.82 129.54) (xy 86.36 129.54) 2910 | ) 2911 | (stroke 2912 | (width 0) 2913 | (type default) 2914 | ) 2915 | (uuid "22dade10-9f30-454d-93dc-289e398a4ca3") 2916 | ) 2917 | (wire 2918 | (pts 2919 | (xy 22.86 67.31) (xy 34.29 67.31) 2920 | ) 2921 | (stroke 2922 | (width 0) 2923 | (type default) 2924 | ) 2925 | (uuid "23de58b2-ed9a-4994-b1ea-755b98d197c3") 2926 | ) 2927 | (wire 2928 | (pts 2929 | (xy 22.86 105.41) (xy 34.29 105.41) 2930 | ) 2931 | (stroke 2932 | (width 0) 2933 | (type default) 2934 | ) 2935 | (uuid "251fb904-ba11-4123-91cd-5bba2b2e9932") 2936 | ) 2937 | (wire 2938 | (pts 2939 | (xy 35.56 163.83) (xy 38.1 163.83) 2940 | ) 2941 | (stroke 2942 | (width 0) 2943 | (type default) 2944 | ) 2945 | (uuid "27fea4f7-5c66-4faa-9f2e-87f230c1a9c4") 2946 | ) 2947 | (wire 2948 | (pts 2949 | (xy 105.41 139.7) (xy 105.41 140.97) 2950 | ) 2951 | (stroke 2952 | (width 0) 2953 | (type default) 2954 | ) 2955 | (uuid "2c3adbd9-00ac-4718-a1c4-6fcc0b722a5b") 2956 | ) 2957 | (wire 2958 | (pts 2959 | (xy 138.43 148.59) (xy 138.43 149.86) 2960 | ) 2961 | (stroke 2962 | (width 0) 2963 | (type default) 2964 | ) 2965 | (uuid "2e5f1492-3887-4103-9954-1c38a629370b") 2966 | ) 2967 | (wire 2968 | (pts 2969 | (xy 180.34 27.94) (xy 193.04 27.94) 2970 | ) 2971 | (stroke 2972 | (width 0) 2973 | (type default) 2974 | ) 2975 | (uuid "2e76cbf8-6ed0-4705-b9c8-103c7f8112ab") 2976 | ) 2977 | (wire 2978 | (pts 2979 | (xy 22.86 31.75) (xy 34.29 31.75) 2980 | ) 2981 | (stroke 2982 | (width 0) 2983 | (type default) 2984 | ) 2985 | (uuid "2ec17b2c-4bfe-4c3d-9321-d7c75899127f") 2986 | ) 2987 | (wire 2988 | (pts 2989 | (xy 74.93 161.29) (xy 74.93 162.56) 2990 | ) 2991 | (stroke 2992 | (width 0) 2993 | (type default) 2994 | ) 2995 | (uuid "3130f51a-2801-4df2-a655-556dd2435b94") 2996 | ) 2997 | (wire 2998 | (pts 2999 | (xy 105.41 139.7) (xy 106.68 139.7) 3000 | ) 3001 | (stroke 3002 | (width 0) 3003 | (type default) 3004 | ) 3005 | (uuid "32b6cf69-50d5-43ba-8467-677d2b4f654b") 3006 | ) 3007 | (wire 3008 | (pts 3009 | (xy 22.86 90.17) (xy 34.29 90.17) 3010 | ) 3011 | (stroke 3012 | (width 0) 3013 | (type default) 3014 | ) 3015 | (uuid "3a3a1c40-87fc-411e-ab97-f410b1a72e60") 3016 | ) 3017 | (wire 3018 | (pts 3019 | (xy 105.41 148.59) (xy 105.41 149.86) 3020 | ) 3021 | (stroke 3022 | (width 0) 3023 | (type default) 3024 | ) 3025 | (uuid "3d975267-e1f5-45e2-8416-e6267f8bb9e6") 3026 | ) 3027 | (wire 3028 | (pts 3029 | (xy 85.09 162.56) (xy 87.63 162.56) 3030 | ) 3031 | (stroke 3032 | (width 0) 3033 | (type default) 3034 | ) 3035 | (uuid "3e87b515-9363-4830-b2a3-f43501a75eb2") 3036 | ) 3037 | (wire 3038 | (pts 3039 | (xy 123.19 127) (xy 123.19 130.81) 3040 | ) 3041 | (stroke 3042 | (width 0) 3043 | (type default) 3044 | ) 3045 | (uuid "3eafae01-807c-45b7-acb2-6da285faf8f2") 3046 | ) 3047 | (wire 3048 | (pts 3049 | (xy 180.34 30.48) (xy 193.04 30.48) 3050 | ) 3051 | (stroke 3052 | (width 0) 3053 | (type default) 3054 | ) 3055 | (uuid "3f36085a-956b-48f6-bc46-2346ce29d247") 3056 | ) 3057 | (wire 3058 | (pts 3059 | (xy 22.86 87.63) (xy 34.29 87.63) 3060 | ) 3061 | (stroke 3062 | (width 0) 3063 | (type default) 3064 | ) 3065 | (uuid "3f444713-345f-4dc1-aaad-64037648739a") 3066 | ) 3067 | (wire 3068 | (pts 3069 | (xy 22.86 52.07) (xy 34.29 52.07) 3070 | ) 3071 | (stroke 3072 | (width 0) 3073 | (type default) 3074 | ) 3075 | (uuid "43c8119b-5c49-464b-b7a7-1c287c158ed3") 3076 | ) 3077 | (wire 3078 | (pts 3079 | (xy 105.41 129.54) (xy 105.41 130.81) 3080 | ) 3081 | (stroke 3082 | (width 0) 3083 | (type default) 3084 | ) 3085 | (uuid "453184d3-e9de-4da4-932c-2d76010a4ed7") 3086 | ) 3087 | (wire 3088 | (pts 3089 | (xy 236.22 25.4) (xy 243.84 25.4) 3090 | ) 3091 | (stroke 3092 | (width 0) 3093 | (type default) 3094 | ) 3095 | (uuid "470bd0f7-f577-4fd6-94f7-f48bbc78e0ab") 3096 | ) 3097 | (wire 3098 | (pts 3099 | (xy 60.96 147.32) (xy 67.31 147.32) 3100 | ) 3101 | (stroke 3102 | (width 0) 3103 | (type default) 3104 | ) 3105 | (uuid "4957c33c-715d-49b7-8cb2-a32b01ee9b48") 3106 | ) 3107 | (wire 3108 | (pts 3109 | (xy 180.34 22.86) (xy 193.04 22.86) 3110 | ) 3111 | (stroke 3112 | (width 0) 3113 | (type default) 3114 | ) 3115 | (uuid "4acdf16d-26c9-4133-b26b-30b30fe6e7f6") 3116 | ) 3117 | (wire 3118 | (pts 3119 | (xy 22.86 107.95) (xy 34.29 107.95) 3120 | ) 3121 | (stroke 3122 | (width 0) 3123 | (type default) 3124 | ) 3125 | (uuid "4b0f42a4-4082-448c-b020-6b136734219f") 3126 | ) 3127 | (wire 3128 | (pts 3129 | (xy 30.48 138.43) (xy 30.48 144.78) 3130 | ) 3131 | (stroke 3132 | (width 0) 3133 | (type default) 3134 | ) 3135 | (uuid "4fbed87b-6fa3-49ff-b066-c5d44752b2e7") 3136 | ) 3137 | (wire 3138 | (pts 3139 | (xy 180.34 36.83) (xy 193.04 36.83) 3140 | ) 3141 | (stroke 3142 | (width 0) 3143 | (type default) 3144 | ) 3145 | (uuid "507087d1-43a1-4c6e-a44d-eaa1a397161b") 3146 | ) 3147 | (wire 3148 | (pts 3149 | (xy 22.86 24.13) (xy 34.29 24.13) 3150 | ) 3151 | (stroke 3152 | (width 0) 3153 | (type default) 3154 | ) 3155 | (uuid "508b40f0-54fb-4db2-aa0e-69a310689127") 3156 | ) 3157 | (wire 3158 | (pts 3159 | (xy 30.48 144.78) (xy 38.1 144.78) 3160 | ) 3161 | (stroke 3162 | (width 0) 3163 | (type default) 3164 | ) 3165 | (uuid "51b19a6f-0fcf-4660-8de1-0db2cf900f3c") 3166 | ) 3167 | (wire 3168 | (pts 3169 | (xy 123.19 148.59) (xy 123.19 149.86) 3170 | ) 3171 | (stroke 3172 | (width 0) 3173 | (type default) 3174 | ) 3175 | (uuid "51f54201-e8f4-44b5-9d2a-2dbbbc5d78b4") 3176 | ) 3177 | (wire 3178 | (pts 3179 | (xy 86.36 129.54) (xy 86.36 132.08) 3180 | ) 3181 | (stroke 3182 | (width 0) 3183 | (type default) 3184 | ) 3185 | (uuid "5206cff0-da8f-42bd-b49a-d285c83c2d5c") 3186 | ) 3187 | (wire 3188 | (pts 3189 | (xy 38.1 144.78) (xy 38.1 143.51) 3190 | ) 3191 | (stroke 3192 | (width 0) 3193 | (type default) 3194 | ) 3195 | (uuid "588cd2a9-0587-484c-97f8-ccb24d041c5c") 3196 | ) 3197 | (wire 3198 | (pts 3199 | (xy 181.61 82.55) (xy 193.04 82.55) 3200 | ) 3201 | (stroke 3202 | (width 0) 3203 | (type default) 3204 | ) 3205 | (uuid "590daa58-c47a-4207-9134-0c80fbc92ea1") 3206 | ) 3207 | (wire 3208 | (pts 3209 | (xy 31.75 62.23) (xy 34.29 62.23) 3210 | ) 3211 | (stroke 3212 | (width 0) 3213 | (type default) 3214 | ) 3215 | (uuid "5acafccf-5ce1-4f06-ba74-0ab3ba79f447") 3216 | ) 3217 | (wire 3218 | (pts 3219 | (xy 38.1 156.21) (xy 38.1 158.75) 3220 | ) 3221 | (stroke 3222 | (width 0) 3223 | (type default) 3224 | ) 3225 | (uuid "5ba19d70-bc86-4f1b-b27a-6cce91cd5bd4") 3226 | ) 3227 | (wire 3228 | (pts 3229 | (xy 35.56 166.37) (xy 38.1 166.37) 3230 | ) 3231 | (stroke 3232 | (width 0) 3233 | (type default) 3234 | ) 3235 | (uuid "5f36b555-c0ed-4ffe-935a-c5ff65efe350") 3236 | ) 3237 | (wire 3238 | (pts 3239 | (xy 236.22 30.48) (xy 243.84 30.48) 3240 | ) 3241 | (stroke 3242 | (width 0) 3243 | (type default) 3244 | ) 3245 | (uuid "64022811-7579-4653-bb8c-7d116b6af774") 3246 | ) 3247 | (wire 3248 | (pts 3249 | (xy 22.86 74.93) (xy 34.29 74.93) 3250 | ) 3251 | (stroke 3252 | (width 0) 3253 | (type default) 3254 | ) 3255 | (uuid "6ab8033b-719c-4945-bbf0-d19bbcd578d2") 3256 | ) 3257 | (wire 3258 | (pts 3259 | (xy 22.86 82.55) (xy 34.29 82.55) 3260 | ) 3261 | (stroke 3262 | (width 0) 3263 | (type default) 3264 | ) 3265 | (uuid "6c936a7e-bf37-47b3-acfc-8d0c1939fcd2") 3266 | ) 3267 | (wire 3268 | (pts 3269 | (xy 123.19 138.43) (xy 123.19 139.7) 3270 | ) 3271 | (stroke 3272 | (width 0) 3273 | (type default) 3274 | ) 3275 | (uuid "6d371f94-41f1-453f-bdbc-8c918e4d604f") 3276 | ) 3277 | (wire 3278 | (pts 3279 | (xy 138.43 129.54) (xy 138.43 130.81) 3280 | ) 3281 | (stroke 3282 | (width 0) 3283 | (type default) 3284 | ) 3285 | (uuid "741d6248-7d17-4139-b874-90f7e25664e4") 3286 | ) 3287 | (wire 3288 | (pts 3289 | (xy 30.48 128.27) (xy 30.48 127) 3290 | ) 3291 | (stroke 3292 | (width 0) 3293 | (type default) 3294 | ) 3295 | (uuid "754d3a20-2c96-4f30-80b9-b8e8b1bddbd2") 3296 | ) 3297 | (wire 3298 | (pts 3299 | (xy 38.1 166.37) (xy 38.1 168.91) 3300 | ) 3301 | (stroke 3302 | (width 0) 3303 | (type default) 3304 | ) 3305 | (uuid "772c49a9-5b56-4d00-8134-3ca3190aced7") 3306 | ) 3307 | (wire 3308 | (pts 3309 | (xy 276.86 30.48) (xy 279.4 30.48) 3310 | ) 3311 | (stroke 3312 | (width 0) 3313 | (type default) 3314 | ) 3315 | (uuid "77bcba40-0c26-4558-a304-65f3f8fae186") 3316 | ) 3317 | (wire 3318 | (pts 3319 | (xy 87.63 162.56) (xy 87.63 165.1) 3320 | ) 3321 | (stroke 3322 | (width 0) 3323 | (type default) 3324 | ) 3325 | (uuid "798bee8f-d5ba-4732-9e19-7dcf9615b7ea") 3326 | ) 3327 | (wire 3328 | (pts 3329 | (xy 180.34 43.18) (xy 193.04 43.18) 3330 | ) 3331 | (stroke 3332 | (width 0) 3333 | (type default) 3334 | ) 3335 | (uuid "7b8958e4-e986-4398-b22a-1e729c7b0ea1") 3336 | ) 3337 | (wire 3338 | (pts 3339 | (xy 74.93 162.56) (xy 77.47 162.56) 3340 | ) 3341 | (stroke 3342 | (width 0) 3343 | (type default) 3344 | ) 3345 | (uuid "7ce3d879-173b-43a9-8506-35ec16482b86") 3346 | ) 3347 | (wire 3348 | (pts 3349 | (xy 83.82 127) (xy 86.36 127) 3350 | ) 3351 | (stroke 3352 | (width 0) 3353 | (type default) 3354 | ) 3355 | (uuid "7d222fc4-5d22-40de-abab-284db6b87992") 3356 | ) 3357 | (wire 3358 | (pts 3359 | (xy 180.34 48.26) (xy 193.04 48.26) 3360 | ) 3361 | (stroke 3362 | (width 0) 3363 | (type default) 3364 | ) 3365 | (uuid "80aeca9a-2a5d-4854-a1d3-a177f35e0e31") 3366 | ) 3367 | (wire 3368 | (pts 3369 | (xy 123.19 139.7) (xy 123.19 140.97) 3370 | ) 3371 | (stroke 3372 | (width 0) 3373 | (type default) 3374 | ) 3375 | (uuid "8221da54-db11-4d0b-bdb6-e4b4ff1de53c") 3376 | ) 3377 | (wire 3378 | (pts 3379 | (xy 35.56 158.75) (xy 38.1 158.75) 3380 | ) 3381 | (stroke 3382 | (width 0) 3383 | (type default) 3384 | ) 3385 | (uuid "8420af43-5339-4005-a3f2-79f1ae3d13b4") 3386 | ) 3387 | (wire 3388 | (pts 3389 | (xy 67.31 132.08) (xy 76.2 132.08) 3390 | ) 3391 | (stroke 3392 | (width 0) 3393 | (type default) 3394 | ) 3395 | (uuid "88bd9999-4174-4bbc-be46-7bed73d5a466") 3396 | ) 3397 | (wire 3398 | (pts 3399 | (xy 60.96 171.45) (xy 67.31 171.45) 3400 | ) 3401 | (stroke 3402 | (width 0) 3403 | (type default) 3404 | ) 3405 | (uuid "89e182e7-fe6f-4c01-889d-44fe3ac8413d") 3406 | ) 3407 | (wire 3408 | (pts 3409 | (xy 236.22 22.86) (xy 243.84 22.86) 3410 | ) 3411 | (stroke 3412 | (width 0) 3413 | (type default) 3414 | ) 3415 | (uuid "8cb59fbb-eddf-466e-a4d3-c66a4db1c2ab") 3416 | ) 3417 | (wire 3418 | (pts 3419 | (xy 22.86 26.67) (xy 34.29 26.67) 3420 | ) 3421 | (stroke 3422 | (width 0) 3423 | (type default) 3424 | ) 3425 | (uuid "8cb6c1f2-d722-4f79-a4cf-d94e8e437eb6") 3426 | ) 3427 | (wire 3428 | (pts 3429 | (xy 87.63 147.32) (xy 77.47 147.32) 3430 | ) 3431 | (stroke 3432 | (width 0) 3433 | (type default) 3434 | ) 3435 | (uuid "8e9ec117-2183-4c40-947a-c449a1ab0a5a") 3436 | ) 3437 | (wire 3438 | (pts 3439 | (xy 12.7 63.5) (xy 21.59 63.5) 3440 | ) 3441 | (stroke 3442 | (width 0) 3443 | (type default) 3444 | ) 3445 | (uuid "8ed4be6f-ec34-47f3-8784-1dd71293d22a") 3446 | ) 3447 | (wire 3448 | (pts 3449 | (xy 138.43 138.43) (xy 138.43 139.7) 3450 | ) 3451 | (stroke 3452 | (width 0) 3453 | (type default) 3454 | ) 3455 | (uuid "8feb2bbe-7a2c-4194-a8f5-4b1bd13c9527") 3456 | ) 3457 | (wire 3458 | (pts 3459 | (xy 34.29 133.35) (xy 38.1 133.35) 3460 | ) 3461 | (stroke 3462 | (width 0) 3463 | (type default) 3464 | ) 3465 | (uuid "92e46ef1-850d-41f9-b5f8-478fea6f80ef") 3466 | ) 3467 | (wire 3468 | (pts 3469 | (xy 180.34 33.02) (xy 193.04 33.02) 3470 | ) 3471 | (stroke 3472 | (width 0) 3473 | (type default) 3474 | ) 3475 | (uuid "92ee5a5b-0027-4fb5-86f9-721fb3511a29") 3476 | ) 3477 | (wire 3478 | (pts 3479 | (xy 22.86 92.71) (xy 34.29 92.71) 3480 | ) 3481 | (stroke 3482 | (width 0) 3483 | (type default) 3484 | ) 3485 | (uuid "93ce73f6-1427-41f6-91b1-788232e97a14") 3486 | ) 3487 | (wire 3488 | (pts 3489 | (xy 236.22 45.72) (xy 243.84 45.72) 3490 | ) 3491 | (stroke 3492 | (width 0) 3493 | (type default) 3494 | ) 3495 | (uuid "943cd00b-53a8-4af2-9a8f-358a718871c1") 3496 | ) 3497 | (wire 3498 | (pts 3499 | (xy 74.93 162.56) (xy 74.93 163.83) 3500 | ) 3501 | (stroke 3502 | (width 0) 3503 | (type default) 3504 | ) 3505 | (uuid "966f3758-cfd5-4b9e-9ca3-1d7d42d1cb5e") 3506 | ) 3507 | (wire 3508 | (pts 3509 | (xy 22.86 29.21) (xy 34.29 29.21) 3510 | ) 3511 | (stroke 3512 | (width 0) 3513 | (type default) 3514 | ) 3515 | (uuid "97b69d05-91b1-49bb-bc7f-c0d3198a55b4") 3516 | ) 3517 | (wire 3518 | (pts 3519 | (xy 22.86 113.03) (xy 34.29 113.03) 3520 | ) 3521 | (stroke 3522 | (width 0) 3523 | (type default) 3524 | ) 3525 | (uuid "9cff3215-9f4a-4210-8203-cf03e709a262") 3526 | ) 3527 | (wire 3528 | (pts 3529 | (xy 17.78 57.15) (xy 34.29 57.15) 3530 | ) 3531 | (stroke 3532 | (width 0) 3533 | (type default) 3534 | ) 3535 | (uuid "a2e004de-1081-4a10-950b-f861ae7418a7") 3536 | ) 3537 | (wire 3538 | (pts 3539 | (xy 22.86 85.09) (xy 34.29 85.09) 3540 | ) 3541 | (stroke 3542 | (width 0) 3543 | (type default) 3544 | ) 3545 | (uuid "a35815c6-7660-440f-8819-afd199ea6de6") 3546 | ) 3547 | (wire 3548 | (pts 3549 | (xy 236.22 50.8) (xy 243.84 50.8) 3550 | ) 3551 | (stroke 3552 | (width 0) 3553 | (type default) 3554 | ) 3555 | (uuid "a47d2338-5de1-4bd4-baf6-9d783daa4b91") 3556 | ) 3557 | (wire 3558 | (pts 3559 | (xy 22.86 49.53) (xy 34.29 49.53) 3560 | ) 3561 | (stroke 3562 | (width 0) 3563 | (type default) 3564 | ) 3565 | (uuid "a6f927e7-78f5-47ae-a224-264117d57c1d") 3566 | ) 3567 | (wire 3568 | (pts 3569 | (xy 24.13 64.77) (xy 21.59 64.77) 3570 | ) 3571 | (stroke 3572 | (width 0) 3573 | (type default) 3574 | ) 3575 | (uuid "a73127cd-c550-4b5d-8bfd-4d80690402a7") 3576 | ) 3577 | (wire 3578 | (pts 3579 | (xy 22.86 46.99) (xy 34.29 46.99) 3580 | ) 3581 | (stroke 3582 | (width 0) 3583 | (type default) 3584 | ) 3585 | (uuid "ac1a7bdd-ee89-4521-b546-f563ed520a5a") 3586 | ) 3587 | (wire 3588 | (pts 3589 | (xy 138.43 139.7) (xy 138.43 140.97) 3590 | ) 3591 | (stroke 3592 | (width 0) 3593 | (type default) 3594 | ) 3595 | (uuid "acf8cb8a-e2a8-4a0d-b1dc-31cabbef11ed") 3596 | ) 3597 | (wire 3598 | (pts 3599 | (xy 67.31 127) (xy 76.2 127) 3600 | ) 3601 | (stroke 3602 | (width 0) 3603 | (type default) 3604 | ) 3605 | (uuid "adafc324-e916-471e-a51f-13568afc07b7") 3606 | ) 3607 | (wire 3608 | (pts 3609 | (xy 236.22 36.83) (xy 243.84 36.83) 3610 | ) 3611 | (stroke 3612 | (width 0) 3613 | (type default) 3614 | ) 3615 | (uuid "af77d64d-70e6-403d-aced-6bd224f75f07") 3616 | ) 3617 | (wire 3618 | (pts 3619 | (xy 35.56 161.29) (xy 38.1 161.29) 3620 | ) 3621 | (stroke 3622 | (width 0) 3623 | (type default) 3624 | ) 3625 | (uuid "af940471-210a-4ab5-98bf-fff7e20b854b") 3626 | ) 3627 | (wire 3628 | (pts 3629 | (xy 74.93 179.07) (xy 74.93 180.34) 3630 | ) 3631 | (stroke 3632 | (width 0) 3633 | (type default) 3634 | ) 3635 | (uuid "b15fa6ad-9ad1-41c9-99d7-3b1c472fac52") 3636 | ) 3637 | (wire 3638 | (pts 3639 | (xy 17.78 80.01) (xy 34.29 80.01) 3640 | ) 3641 | (stroke 3642 | (width 0) 3643 | (type default) 3644 | ) 3645 | (uuid "b5ed34c8-fcde-44fa-90e2-7a1499630620") 3646 | ) 3647 | (wire 3648 | (pts 3649 | (xy 22.86 77.47) (xy 34.29 77.47) 3650 | ) 3651 | (stroke 3652 | (width 0) 3653 | (type default) 3654 | ) 3655 | (uuid "b89f5adc-fa87-4fd0-8d84-8da2a7de1880") 3656 | ) 3657 | (wire 3658 | (pts 3659 | (xy 21.59 63.5) (xy 21.59 62.23) 3660 | ) 3661 | (stroke 3662 | (width 0) 3663 | (type default) 3664 | ) 3665 | (uuid "bd90da4f-c6aa-4990-92a0-256d5212ad6b") 3666 | ) 3667 | (wire 3668 | (pts 3669 | (xy 38.1 133.35) (xy 38.1 135.89) 3670 | ) 3671 | (stroke 3672 | (width 0) 3673 | (type default) 3674 | ) 3675 | (uuid "bdd4be34-db70-4ecc-8f5b-77dc5f932be7") 3676 | ) 3677 | (wire 3678 | (pts 3679 | (xy 67.31 129.54) (xy 76.2 129.54) 3680 | ) 3681 | (stroke 3682 | (width 0) 3683 | (type default) 3684 | ) 3685 | (uuid "c09e7b46-3943-437f-b93e-5d914a59fe38") 3686 | ) 3687 | (wire 3688 | (pts 3689 | (xy 87.63 144.78) (xy 87.63 147.32) 3690 | ) 3691 | (stroke 3692 | (width 0) 3693 | (type default) 3694 | ) 3695 | (uuid "c32b8934-e950-4c33-a29c-790d41544b3e") 3696 | ) 3697 | (wire 3698 | (pts 3699 | (xy 22.86 54.61) (xy 34.29 54.61) 3700 | ) 3701 | (stroke 3702 | (width 0) 3703 | (type default) 3704 | ) 3705 | (uuid "c48ac3cc-aa08-44ae-bf01-67a11f9a41a5") 3706 | ) 3707 | (wire 3708 | (pts 3709 | (xy 21.59 62.23) (xy 24.13 62.23) 3710 | ) 3711 | (stroke 3712 | (width 0) 3713 | (type default) 3714 | ) 3715 | (uuid "c85257d1-db8a-42a4-bac6-91849c34208d") 3716 | ) 3717 | (wire 3718 | (pts 3719 | (xy 30.48 144.78) (xy 30.48 146.05) 3720 | ) 3721 | (stroke 3722 | (width 0) 3723 | (type default) 3724 | ) 3725 | (uuid "c92aa5fe-5f0c-4bd7-bb4b-7a348187ac5a") 3726 | ) 3727 | (wire 3728 | (pts 3729 | (xy 22.86 133.35) (xy 22.86 135.89) 3730 | ) 3731 | (stroke 3732 | (width 0) 3733 | (type default) 3734 | ) 3735 | (uuid "c963b4ac-3655-4b08-979a-6c987acac095") 3736 | ) 3737 | (wire 3738 | (pts 3739 | (xy 17.78 57.15) (xy 17.78 80.01) 3740 | ) 3741 | (stroke 3742 | (width 0) 3743 | (type default) 3744 | ) 3745 | (uuid "cfe7531a-c45b-40d1-bcdb-d522aace8393") 3746 | ) 3747 | (wire 3748 | (pts 3749 | (xy 31.75 64.77) (xy 34.29 64.77) 3750 | ) 3751 | (stroke 3752 | (width 0) 3753 | (type default) 3754 | ) 3755 | (uuid "d1fb572b-94a6-4c87-b850-261c1d086637") 3756 | ) 3757 | (wire 3758 | (pts 3759 | (xy 22.86 69.85) (xy 34.29 69.85) 3760 | ) 3761 | (stroke 3762 | (width 0) 3763 | (type default) 3764 | ) 3765 | (uuid "d53a3ef2-3440-488a-8e61-4367a499e099") 3766 | ) 3767 | (wire 3768 | (pts 3769 | (xy 180.34 17.78) (xy 193.04 17.78) 3770 | ) 3771 | (stroke 3772 | (width 0) 3773 | (type default) 3774 | ) 3775 | (uuid "d9437fca-b603-4ca6-ba82-ac73bcc71edc") 3776 | ) 3777 | (wire 3778 | (pts 3779 | (xy 43.18 144.78) (xy 38.1 144.78) 3780 | ) 3781 | (stroke 3782 | (width 0) 3783 | (type default) 3784 | ) 3785 | (uuid "d97e8c0d-69b9-42a6-bf6d-007295459be2") 3786 | ) 3787 | (wire 3788 | (pts 3789 | (xy 180.34 45.72) (xy 193.04 45.72) 3790 | ) 3791 | (stroke 3792 | (width 0) 3793 | (type default) 3794 | ) 3795 | (uuid "db9b1455-ed78-434e-9c3e-b7bf66d36ae1") 3796 | ) 3797 | (wire 3798 | (pts 3799 | (xy 236.22 33.02) (xy 243.84 33.02) 3800 | ) 3801 | (stroke 3802 | (width 0) 3803 | (type default) 3804 | ) 3805 | (uuid "df209eba-74bd-4e94-b6d7-f9d59cff97ad") 3806 | ) 3807 | (wire 3808 | (pts 3809 | (xy 83.82 132.08) (xy 86.36 132.08) 3810 | ) 3811 | (stroke 3812 | (width 0) 3813 | (type default) 3814 | ) 3815 | (uuid "e0f27fda-6d62-436a-a8c8-6cbe975439e9") 3816 | ) 3817 | (wire 3818 | (pts 3819 | (xy 21.59 64.77) (xy 21.59 63.5) 3820 | ) 3821 | (stroke 3822 | (width 0) 3823 | (type default) 3824 | ) 3825 | (uuid "e4e29d5c-08d8-4f1f-b064-b4412872528a") 3826 | ) 3827 | (wire 3828 | (pts 3829 | (xy 180.34 50.8) (xy 193.04 50.8) 3830 | ) 3831 | (stroke 3832 | (width 0) 3833 | (type default) 3834 | ) 3835 | (uuid "e55c3161-8dab-40a7-9fe7-fa63ea6234c4") 3836 | ) 3837 | (wire 3838 | (pts 3839 | (xy 123.19 139.7) (xy 124.46 139.7) 3840 | ) 3841 | (stroke 3842 | (width 0) 3843 | (type default) 3844 | ) 3845 | (uuid "e86e21b5-6a61-4c5a-b8e7-30840804bc5a") 3846 | ) 3847 | (wire 3848 | (pts 3849 | (xy 22.86 59.69) (xy 34.29 59.69) 3850 | ) 3851 | (stroke 3852 | (width 0) 3853 | (type default) 3854 | ) 3855 | (uuid "e89350e9-b566-4e5d-ac6d-591d86a93168") 3856 | ) 3857 | (wire 3858 | (pts 3859 | (xy 30.48 127) (xy 17.78 127) 3860 | ) 3861 | (stroke 3862 | (width 0) 3863 | (type default) 3864 | ) 3865 | (uuid "e8e746c1-2e66-47c4-8332-a3588fb23faf") 3866 | ) 3867 | (wire 3868 | (pts 3869 | (xy 22.86 44.45) (xy 34.29 44.45) 3870 | ) 3871 | (stroke 3872 | (width 0) 3873 | (type default) 3874 | ) 3875 | (uuid "e8edb99f-4973-4429-aa7a-29de5784ae55") 3876 | ) 3877 | (wire 3878 | (pts 3879 | (xy 236.22 27.94) (xy 243.84 27.94) 3880 | ) 3881 | (stroke 3882 | (width 0) 3883 | (type default) 3884 | ) 3885 | (uuid "efc87c02-707b-4386-a01f-9f489cde56dd") 3886 | ) 3887 | (wire 3888 | (pts 3889 | (xy 30.48 127) (xy 43.18 127) 3890 | ) 3891 | (stroke 3892 | (width 0) 3893 | (type default) 3894 | ) 3895 | (uuid "f5be8894-5be0-40e0-a4ef-32bb859b8991") 3896 | ) 3897 | (wire 3898 | (pts 3899 | (xy 180.34 25.4) (xy 193.04 25.4) 3900 | ) 3901 | (stroke 3902 | (width 0) 3903 | (type default) 3904 | ) 3905 | (uuid "f679db86-2bae-4a53-a2e0-0abe5b7040d2") 3906 | ) 3907 | (wire 3908 | (pts 3909 | (xy 22.86 39.37) (xy 34.29 39.37) 3910 | ) 3911 | (stroke 3912 | (width 0) 3913 | (type default) 3914 | ) 3915 | (uuid "fbcbb521-c0a8-48f8-adc9-80702e4e3014") 3916 | ) 3917 | (wire 3918 | (pts 3919 | (xy 17.78 127) (xy 17.78 144.78) 3920 | ) 3921 | (stroke 3922 | (width 0) 3923 | (type default) 3924 | ) 3925 | (uuid "ffe99d5c-0bd7-43d3-8d4c-2a39b34ace0f") 3926 | ) 3927 | (label "XOUT" 3928 | (at 38.1 133.35 0) 3929 | (fields_autoplaced yes) 3930 | (effects 3931 | (font 3932 | (size 1.27 1.27) 3933 | ) 3934 | (justify left bottom) 3935 | ) 3936 | (uuid "05302b9d-6afe-465f-a751-2e71444c751d") 3937 | ) 3938 | (label "P_EN" 3939 | (at 22.86 69.85 0) 3940 | (fields_autoplaced yes) 3941 | (effects 3942 | (font 3943 | (size 1.27 1.27) 3944 | ) 3945 | (justify left bottom) 3946 | ) 3947 | (uuid "0b58fd94-b475-4c13-bba6-6a5bf5c3a474") 3948 | ) 3949 | (label "UART_DTR" 3950 | (at 180.34 43.18 0) 3951 | (fields_autoplaced yes) 3952 | (effects 3953 | (font 3954 | (size 1.27 1.27) 3955 | ) 3956 | (justify left bottom) 3957 | ) 3958 | (uuid "10abde88-8fbf-4b87-b1ea-ba13b3720d0e") 3959 | ) 3960 | (label "SWCLK{slash}TCK" 3961 | (at 180.34 25.4 0) 3962 | (fields_autoplaced yes) 3963 | (effects 3964 | (font 3965 | (size 1.27 1.27) 3966 | ) 3967 | (justify left bottom) 3968 | ) 3969 | (uuid "186bc111-ce25-4f46-8baf-4347231acffb") 3970 | ) 3971 | (label "BOOT0" 3972 | (at 60.96 171.45 0) 3973 | (fields_autoplaced yes) 3974 | (effects 3975 | (font 3976 | (size 1.27 1.27) 3977 | ) 3978 | (justify left bottom) 3979 | ) 3980 | (uuid "1eefed20-f97c-4c6e-a12d-9d345cbb611c") 3981 | ) 3982 | (label "UART_RTS" 3983 | (at 22.86 41.91 0) 3984 | (fields_autoplaced yes) 3985 | (effects 3986 | (font 3987 | (size 1.27 1.27) 3988 | ) 3989 | (justify left bottom) 3990 | ) 3991 | (uuid "21c01fd0-eb30-4727-a6d4-f2080024b247") 3992 | ) 3993 | (label "ISP_TX" 3994 | (at 38.1 161.29 0) 3995 | (fields_autoplaced yes) 3996 | (effects 3997 | (font 3998 | (size 1.27 1.27) 3999 | ) 4000 | (justify left bottom) 4001 | ) 4002 | (uuid "2710b475-5888-4d91-ad5f-68191a2a1438") 4003 | ) 4004 | (label "UART_RTS" 4005 | (at 180.34 45.72 0) 4006 | (fields_autoplaced yes) 4007 | (effects 4008 | (font 4009 | (size 1.27 1.27) 4010 | ) 4011 | (justify left bottom) 4012 | ) 4013 | (uuid "279a4c88-7932-4a1b-86ad-ddf05cc84870") 4014 | ) 4015 | (label "SWDIO/TMS" 4016 | (at 180.34 22.86 0) 4017 | (fields_autoplaced yes) 4018 | (effects 4019 | (font 4020 | (size 1.27 1.27) 4021 | ) 4022 | (justify left bottom) 4023 | ) 4024 | (uuid "2cd02c9a-eee8-4888-a232-b6c5111a5b92") 4025 | ) 4026 | (label "TRANS_PWM" 4027 | (at 22.86 49.53 0) 4028 | (fields_autoplaced yes) 4029 | (effects 4030 | (font 4031 | (size 1.27 1.27) 4032 | ) 4033 | (justify left bottom) 4034 | ) 4035 | (uuid "2f29a1b3-db45-42d3-9435-9e65ee9be1a2") 4036 | ) 4037 | (label "P_EN" 4038 | (at 67.31 132.08 0) 4039 | (fields_autoplaced yes) 4040 | (effects 4041 | (font 4042 | (size 1.27 1.27) 4043 | ) 4044 | (justify left bottom) 4045 | ) 4046 | (uuid "3347d697-f74d-4892-afea-d5d952351005") 4047 | ) 4048 | (label "SWDIO_DIR" 4049 | (at 22.86 67.31 0) 4050 | (fields_autoplaced yes) 4051 | (effects 4052 | (font 4053 | (size 1.27 1.27) 4054 | ) 4055 | (justify left bottom) 4056 | ) 4057 | (uuid "33dc0933-faed-4cc3-a6e9-328cdc1fd8d0") 4058 | ) 4059 | (label "UART_TX" 4060 | (at 22.86 44.45 0) 4061 | (fields_autoplaced yes) 4062 | (effects 4063 | (font 4064 | (size 1.27 1.27) 4065 | ) 4066 | (justify left bottom) 4067 | ) 4068 | (uuid "34113bed-8f84-491a-af69-e774f4c78050") 4069 | ) 4070 | (label "XIN" 4071 | (at 22.86 133.35 0) 4072 | (fields_autoplaced yes) 4073 | (effects 4074 | (font 4075 | (size 1.27 1.27) 4076 | ) 4077 | (justify left bottom) 4078 | ) 4079 | (uuid "34261472-d547-4c06-9036-4e4742d73074") 4080 | ) 4081 | (label "ISP_RX" 4082 | (at 38.1 163.83 0) 4083 | (fields_autoplaced yes) 4084 | (effects 4085 | (font 4086 | (size 1.27 1.27) 4087 | ) 4088 | (justify left bottom) 4089 | ) 4090 | (uuid "4244c115-601f-4602-a253-16182f98f0fe") 4091 | ) 4092 | (label "P_EN" 4093 | (at 279.4 50.8 0) 4094 | (fields_autoplaced yes) 4095 | (effects 4096 | (font 4097 | (size 1.27 1.27) 4098 | ) 4099 | (justify left bottom) 4100 | ) 4101 | (uuid "495f53cd-d8bb-41dc-932e-cee96a99b40a") 4102 | ) 4103 | (label "UART_RX" 4104 | (at 22.86 46.99 0) 4105 | (fields_autoplaced yes) 4106 | (effects 4107 | (font 4108 | (size 1.27 1.27) 4109 | ) 4110 | (justify left bottom) 4111 | ) 4112 | (uuid "4dc7d253-678f-4537-b178-55513b058a5e") 4113 | ) 4114 | (label "UART_TX" 4115 | (at 180.34 48.26 0) 4116 | (fields_autoplaced yes) 4117 | (effects 4118 | (font 4119 | (size 1.27 1.27) 4120 | ) 4121 | (justify left bottom) 4122 | ) 4123 | (uuid "50361d30-83e4-4066-b38e-85c2bf37bdb1") 4124 | ) 4125 | (label "NRST" 4126 | (at 22.86 113.03 0) 4127 | (fields_autoplaced yes) 4128 | (effects 4129 | (font 4130 | (size 1.27 1.27) 4131 | ) 4132 | (justify left bottom) 4133 | ) 4134 | (uuid "50a89f2c-b155-456b-b8de-3c066937c929") 4135 | ) 4136 | (label "USB_D+" 4137 | (at 22.86 52.07 0) 4138 | (fields_autoplaced yes) 4139 | (effects 4140 | (font 4141 | (size 1.27 1.27) 4142 | ) 4143 | (justify left bottom) 4144 | ) 4145 | (uuid "50e5f5d4-1f5f-46f3-96e9-26b73a69db21") 4146 | ) 4147 | (label "XOUT" 4148 | (at 22.86 107.95 0) 4149 | (fields_autoplaced yes) 4150 | (effects 4151 | (font 4152 | (size 1.27 1.27) 4153 | ) 4154 | (justify left bottom) 4155 | ) 4156 | (uuid "530add24-b9ee-4f73-bd2c-cb54d42e0fa5") 4157 | ) 4158 | (label "NRST" 4159 | (at 106.68 139.7 0) 4160 | (fields_autoplaced yes) 4161 | (effects 4162 | (font 4163 | (size 1.27 1.27) 4164 | ) 4165 | (justify left bottom) 4166 | ) 4167 | (uuid "5501b6db-4fca-4287-b956-62b97d84a67d") 4168 | ) 4169 | (label "SWDIO_DIR" 4170 | (at 180.34 17.78 0) 4171 | (fields_autoplaced yes) 4172 | (effects 4173 | (font 4174 | (size 1.27 1.27) 4175 | ) 4176 | (justify left bottom) 4177 | ) 4178 | (uuid "625a1a05-168f-4a1f-b47e-d458e06d439a") 4179 | ) 4180 | (label "BOOT0" 4181 | (at 22.86 29.21 0) 4182 | (fields_autoplaced yes) 4183 | (effects 4184 | (font 4185 | (size 1.27 1.27) 4186 | ) 4187 | (justify left bottom) 4188 | ) 4189 | (uuid "6a1367e3-8910-47bf-b9b0-8dafafa6b389") 4190 | ) 4191 | (label "BOOT1" 4192 | (at 60.96 147.32 0) 4193 | (fields_autoplaced yes) 4194 | (effects 4195 | (font 4196 | (size 1.27 1.27) 4197 | ) 4198 | (justify left bottom) 4199 | ) 4200 | (uuid "6b324989-4179-4b10-8aa6-e64d8c484366") 4201 | ) 4202 | (label "BOOT1" 4203 | (at 67.31 129.54 0) 4204 | (fields_autoplaced yes) 4205 | (effects 4206 | (font 4207 | (size 1.27 1.27) 4208 | ) 4209 | (justify left bottom) 4210 | ) 4211 | (uuid "6d0f4e00-f5ab-42b3-86f8-8115db3be80f") 4212 | ) 4213 | (label "XIN" 4214 | (at 22.86 105.41 0) 4215 | (fields_autoplaced yes) 4216 | (effects 4217 | (font 4218 | (size 1.27 1.27) 4219 | ) 4220 | (justify left bottom) 4221 | ) 4222 | (uuid "6ed1201a-1c48-47bf-a5e8-8c5ebb126a91") 4223 | ) 4224 | (label "TDI" 4225 | (at 22.86 87.63 0) 4226 | (fields_autoplaced yes) 4227 | (effects 4228 | (font 4229 | (size 1.27 1.27) 4230 | ) 4231 | (justify left bottom) 4232 | ) 4233 | (uuid "72941233-5d9d-4abb-a8f5-02270f07406e") 4234 | ) 4235 | (label "USB_D-" 4236 | (at 279.4 30.48 0) 4237 | (fields_autoplaced yes) 4238 | (effects 4239 | (font 4240 | (size 1.27 1.27) 4241 | ) 4242 | (justify left bottom) 4243 | ) 4244 | (uuid "754b3d48-a215-4180-9494-e901dc7998a0") 4245 | ) 4246 | (label "SWCLK{slash}TCK" 4247 | (at 22.86 82.55 0) 4248 | (fields_autoplaced yes) 4249 | (effects 4250 | (font 4251 | (size 1.27 1.27) 4252 | ) 4253 | (justify left bottom) 4254 | ) 4255 | (uuid "755f5ca0-d7d1-41e4-be0b-7111b56c32e2") 4256 | ) 4257 | (label "BOOT0" 4258 | (at 67.31 127 0) 4259 | (fields_autoplaced yes) 4260 | (effects 4261 | (font 4262 | (size 1.27 1.27) 4263 | ) 4264 | (justify left bottom) 4265 | ) 4266 | (uuid "793b2c09-00df-4f09-98d9-debe15845537") 4267 | ) 4268 | (label "VREF" 4269 | (at 123.19 127 0) 4270 | (fields_autoplaced yes) 4271 | (effects 4272 | (font 4273 | (size 1.27 1.27) 4274 | ) 4275 | (justify left bottom) 4276 | ) 4277 | (uuid "794375c5-9885-444d-8454-ab978e8a48e2") 4278 | ) 4279 | (label "ISP_TX" 4280 | (at 22.86 24.13 0) 4281 | (fields_autoplaced yes) 4282 | (effects 4283 | (font 4284 | (size 1.27 1.27) 4285 | ) 4286 | (justify left bottom) 4287 | ) 4288 | (uuid "7fb3671d-8727-45d7-84ec-583dbe215871") 4289 | ) 4290 | (label "TRST" 4291 | (at 180.34 33.02 0) 4292 | (fields_autoplaced yes) 4293 | (effects 4294 | (font 4295 | (size 1.27 1.27) 4296 | ) 4297 | (justify left bottom) 4298 | ) 4299 | (uuid "8019182b-0623-439e-bf2a-ee7d0e9401d7") 4300 | ) 4301 | (label "ADC_VREF" 4302 | (at 124.46 139.7 0) 4303 | (fields_autoplaced yes) 4304 | (effects 4305 | (font 4306 | (size 1.27 1.27) 4307 | ) 4308 | (justify left bottom) 4309 | ) 4310 | (uuid "862a8172-d11e-481c-8fdc-d9a5a8f13b28") 4311 | ) 4312 | (label "SRST" 4313 | (at 180.34 36.83 0) 4314 | (fields_autoplaced yes) 4315 | (effects 4316 | (font 4317 | (size 1.27 1.27) 4318 | ) 4319 | (justify left bottom) 4320 | ) 4321 | (uuid "96fd2882-61b4-40a7-8fc4-0be717c4ab01") 4322 | ) 4323 | (label "TDO" 4324 | (at 22.86 85.09 0) 4325 | (fields_autoplaced yes) 4326 | (effects 4327 | (font 4328 | (size 1.27 1.27) 4329 | ) 4330 | (justify left bottom) 4331 | ) 4332 | (uuid "98cf1abd-490f-4696-aef7-19cc9acad07f") 4333 | ) 4334 | (label "SWDIO/TMS" 4335 | (at 12.7 63.5 0) 4336 | (fields_autoplaced yes) 4337 | (effects 4338 | (font 4339 | (size 1.27 1.27) 4340 | ) 4341 | (justify left bottom) 4342 | ) 4343 | (uuid "98d06ae8-c2c5-4ac4-b748-6c5ae1c57c49") 4344 | ) 4345 | (label "SRST" 4346 | (at 22.86 92.71 0) 4347 | (fields_autoplaced yes) 4348 | (effects 4349 | (font 4350 | (size 1.27 1.27) 4351 | ) 4352 | (justify left bottom) 4353 | ) 4354 | (uuid "9b8cd5e0-0e05-48a5-a2c0-d1e503e3e631") 4355 | ) 4356 | (label "TDO" 4357 | (at 180.34 30.48 0) 4358 | (fields_autoplaced yes) 4359 | (effects 4360 | (font 4361 | (size 1.27 1.27) 4362 | ) 4363 | (justify left bottom) 4364 | ) 4365 | (uuid "a183cd9f-0100-484d-9fc2-ac43edadfb81") 4366 | ) 4367 | (label "SWCLK{slash}TCK" 4368 | (at 22.86 59.69 0) 4369 | (fields_autoplaced yes) 4370 | (effects 4371 | (font 4372 | (size 1.27 1.27) 4373 | ) 4374 | (justify left bottom) 4375 | ) 4376 | (uuid "adfce9e6-4e6c-4377-8be8-dda02e3a3075") 4377 | ) 4378 | (label "TDI" 4379 | (at 180.34 27.94 0) 4380 | (fields_autoplaced yes) 4381 | (effects 4382 | (font 4383 | (size 1.27 1.27) 4384 | ) 4385 | (justify left bottom) 4386 | ) 4387 | (uuid "b545e581-af65-4c78-825e-2e76d9c36199") 4388 | ) 4389 | (label "USB_D+" 4390 | (at 279.4 27.94 0) 4391 | (fields_autoplaced yes) 4392 | (effects 4393 | (font 4394 | (size 1.27 1.27) 4395 | ) 4396 | (justify left bottom) 4397 | ) 4398 | (uuid "bae23972-3249-4661-91a3-a5aee8560bde") 4399 | ) 4400 | (label "ISP_RX" 4401 | (at 22.86 26.67 0) 4402 | (fields_autoplaced yes) 4403 | (effects 4404 | (font 4405 | (size 1.27 1.27) 4406 | ) 4407 | (justify left bottom) 4408 | ) 4409 | (uuid "bbb93546-d39a-4402-9148-0d14ed65f1b2") 4410 | ) 4411 | (label "TRST" 4412 | (at 22.86 90.17 0) 4413 | (fields_autoplaced yes) 4414 | (effects 4415 | (font 4416 | (size 1.27 1.27) 4417 | ) 4418 | (justify left bottom) 4419 | ) 4420 | (uuid "be022609-e44c-48ff-aad4-937b5d7583ba") 4421 | ) 4422 | (label "VREF" 4423 | (at 238.76 20.32 0) 4424 | (fields_autoplaced yes) 4425 | (effects 4426 | (font 4427 | (size 1.27 1.27) 4428 | ) 4429 | (justify left bottom) 4430 | ) 4431 | (uuid "c09332ff-9c93-49a0-9e8d-da90eff8ddd1") 4432 | ) 4433 | (label "TRANS_PWM" 4434 | (at 181.61 82.55 0) 4435 | (fields_autoplaced yes) 4436 | (effects 4437 | (font 4438 | (size 1.27 1.27) 4439 | ) 4440 | (justify left bottom) 4441 | ) 4442 | (uuid "c21a2433-b3e9-4d7d-8c79-d5f7fd80519f") 4443 | ) 4444 | (label "UART_DTR" 4445 | (at 22.86 39.37 0) 4446 | (fields_autoplaced yes) 4447 | (effects 4448 | (font 4449 | (size 1.27 1.27) 4450 | ) 4451 | (justify left bottom) 4452 | ) 4453 | (uuid "c32f1e8b-06f3-4dc7-bd0d-121a8e620deb") 4454 | ) 4455 | (label "UART_RX" 4456 | (at 180.34 50.8 0) 4457 | (fields_autoplaced yes) 4458 | (effects 4459 | (font 4460 | (size 1.27 1.27) 4461 | ) 4462 | (justify left bottom) 4463 | ) 4464 | (uuid "c5cf1723-2d01-4a57-8cd6-669ae8ad5ad6") 4465 | ) 4466 | (label "BOOT1" 4467 | (at 22.86 31.75 0) 4468 | (fields_autoplaced yes) 4469 | (effects 4470 | (font 4471 | (size 1.27 1.27) 4472 | ) 4473 | (justify left bottom) 4474 | ) 4475 | (uuid "d8332b4c-9986-4b02-8f9f-74075d04dcf8") 4476 | ) 4477 | (label "ADC_VREF" 4478 | (at 22.86 74.93 0) 4479 | (fields_autoplaced yes) 4480 | (effects 4481 | (font 4482 | (size 1.27 1.27) 4483 | ) 4484 | (justify left bottom) 4485 | ) 4486 | (uuid "d9222a05-95e5-4f62-94dd-10f7eb51ddea") 4487 | ) 4488 | (label "ADC_TVCC" 4489 | (at 139.7 139.7 0) 4490 | (fields_autoplaced yes) 4491 | (effects 4492 | (font 4493 | (size 1.27 1.27) 4494 | ) 4495 | (justify left bottom) 4496 | ) 4497 | (uuid "f1ae8517-4bf2-47a9-80bc-7bab9aeec258") 4498 | ) 4499 | (label "ADC_TVCC" 4500 | (at 22.86 77.47 0) 4501 | (fields_autoplaced yes) 4502 | (effects 4503 | (font 4504 | (size 1.27 1.27) 4505 | ) 4506 | (justify left bottom) 4507 | ) 4508 | (uuid "f65fa703-ec90-4216-92f5-02c6161841fa") 4509 | ) 4510 | (label "SPI_CS" 4511 | (at 22.86 57.15 0) 4512 | (fields_autoplaced yes) 4513 | (effects 4514 | (font 4515 | (size 1.27 1.27) 4516 | ) 4517 | (justify left bottom) 4518 | ) 4519 | (uuid "f74351f4-4e11-409d-8b4d-9058ad9a4a44") 4520 | ) 4521 | (label "USB_D-" 4522 | (at 22.86 54.61 0) 4523 | (fields_autoplaced yes) 4524 | (effects 4525 | (font 4526 | (size 1.27 1.27) 4527 | ) 4528 | (justify left bottom) 4529 | ) 4530 | (uuid "ff3321a2-2586-41e4-bc84-b9a48fabf96f") 4531 | ) 4532 | (symbol 4533 | (lib_id "power:GND") 4534 | (at 138.43 149.86 0) 4535 | (unit 1) 4536 | (exclude_from_sim no) 4537 | (in_bom yes) 4538 | (on_board yes) 4539 | (dnp no) 4540 | (uuid "12a67b2d-df46-4dc4-a042-a1998ae41089") 4541 | (property "Reference" "#PWR095" 4542 | (at 138.43 156.21 0) 4543 | (effects 4544 | (font 4545 | (size 1.27 1.27) 4546 | ) 4547 | (hide yes) 4548 | ) 4549 | ) 4550 | (property "Value" "GND" 4551 | (at 138.43 153.416 0) 4552 | (effects 4553 | (font 4554 | (size 1.27 1.27) 4555 | ) 4556 | ) 4557 | ) 4558 | (property "Footprint" "" 4559 | (at 138.43 149.86 0) 4560 | (effects 4561 | (font 4562 | (size 1.27 1.27) 4563 | ) 4564 | (hide yes) 4565 | ) 4566 | ) 4567 | (property "Datasheet" "" 4568 | (at 138.43 149.86 0) 4569 | (effects 4570 | (font 4571 | (size 1.27 1.27) 4572 | ) 4573 | (hide yes) 4574 | ) 4575 | ) 4576 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 4577 | (at 138.43 149.86 0) 4578 | (effects 4579 | (font 4580 | (size 1.27 1.27) 4581 | ) 4582 | (hide yes) 4583 | ) 4584 | ) 4585 | (pin "1" 4586 | (uuid "627bec32-4ce2-4bda-a575-86cd332eaf11") 4587 | ) 4588 | (instances 4589 | (project "HSLinkPro" 4590 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 4591 | (reference "#PWR095") 4592 | (unit 1) 4593 | ) 4594 | ) 4595 | ) 4596 | ) 4597 | (symbol 4598 | (lib_id "power:GND") 4599 | (at 86.36 134.62 0) 4600 | (unit 1) 4601 | (exclude_from_sim no) 4602 | (in_bom yes) 4603 | (on_board yes) 4604 | (dnp no) 4605 | (uuid "18f7459c-79ce-4f45-b650-1b38ba20a56c") 4606 | (property "Reference" "#PWR0107" 4607 | (at 86.36 140.97 0) 4608 | (effects 4609 | (font 4610 | (size 1.27 1.27) 4611 | ) 4612 | (hide yes) 4613 | ) 4614 | ) 4615 | (property "Value" "GND" 4616 | (at 86.36 138.176 0) 4617 | (effects 4618 | (font 4619 | (size 1.27 1.27) 4620 | ) 4621 | ) 4622 | ) 4623 | (property "Footprint" "" 4624 | (at 86.36 134.62 0) 4625 | (effects 4626 | (font 4627 | (size 1.27 1.27) 4628 | ) 4629 | (hide yes) 4630 | ) 4631 | ) 4632 | (property "Datasheet" "" 4633 | (at 86.36 134.62 0) 4634 | (effects 4635 | (font 4636 | (size 1.27 1.27) 4637 | ) 4638 | (hide yes) 4639 | ) 4640 | ) 4641 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 4642 | (at 86.36 134.62 0) 4643 | (effects 4644 | (font 4645 | (size 1.27 1.27) 4646 | ) 4647 | (hide yes) 4648 | ) 4649 | ) 4650 | (pin "1" 4651 | (uuid "03b52adf-91d1-4df9-a632-a3a520a4a90c") 4652 | ) 4653 | (instances 4654 | (project "HSLinkPro" 4655 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 4656 | (reference "#PWR0107") 4657 | (unit 1) 4658 | ) 4659 | ) 4660 | ) 4661 | ) 4662 | (symbol 4663 | (lib_id "power:GND") 4664 | (at 30.48 146.05 0) 4665 | (unit 1) 4666 | (exclude_from_sim no) 4667 | (in_bom yes) 4668 | (on_board yes) 4669 | (dnp no) 4670 | (uuid "1aa45882-ff76-439f-90f3-ea5e94f63b3a") 4671 | (property "Reference" "#PWR011" 4672 | (at 30.48 152.4 0) 4673 | (effects 4674 | (font 4675 | (size 1.27 1.27) 4676 | ) 4677 | (hide yes) 4678 | ) 4679 | ) 4680 | (property "Value" "GND" 4681 | (at 30.48 149.606 0) 4682 | (effects 4683 | (font 4684 | (size 1.27 1.27) 4685 | ) 4686 | ) 4687 | ) 4688 | (property "Footprint" "" 4689 | (at 30.48 146.05 0) 4690 | (effects 4691 | (font 4692 | (size 1.27 1.27) 4693 | ) 4694 | (hide yes) 4695 | ) 4696 | ) 4697 | (property "Datasheet" "" 4698 | (at 30.48 146.05 0) 4699 | (effects 4700 | (font 4701 | (size 1.27 1.27) 4702 | ) 4703 | (hide yes) 4704 | ) 4705 | ) 4706 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 4707 | (at 30.48 146.05 0) 4708 | (effects 4709 | (font 4710 | (size 1.27 1.27) 4711 | ) 4712 | (hide yes) 4713 | ) 4714 | ) 4715 | (pin "1" 4716 | (uuid "5afc1513-3a9f-4a02-8d8a-d7cf2a015bf4") 4717 | ) 4718 | (instances 4719 | (project "HSLinkPro" 4720 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 4721 | (reference "#PWR011") 4722 | (unit 1) 4723 | ) 4724 | ) 4725 | ) 4726 | ) 4727 | (symbol 4728 | (lib_id "LED:WS2812B") 4729 | (at 74.93 171.45 0) 4730 | (unit 1) 4731 | (exclude_from_sim no) 4732 | (in_bom yes) 4733 | (on_board yes) 4734 | (dnp no) 4735 | (uuid "1b33d51c-2944-48aa-8499-a804af5c73e2") 4736 | (property "Reference" "D1" 4737 | (at 70.866 165.354 0) 4738 | (effects 4739 | (font 4740 | (size 1.27 1.27) 4741 | ) 4742 | ) 4743 | ) 4744 | (property "Value" "WS2812B" 4745 | (at 79.502 165.354 0) 4746 | (effects 4747 | (font 4748 | (size 1.27 1.27) 4749 | ) 4750 | ) 4751 | ) 4752 | (property "Footprint" "MyLED:LED_WS2812_0807" 4753 | (at 76.2 179.07 0) 4754 | (effects 4755 | (font 4756 | (size 1.27 1.27) 4757 | ) 4758 | (justify left top) 4759 | (hide yes) 4760 | ) 4761 | ) 4762 | (property "Datasheet" "https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf" 4763 | (at 77.47 180.975 0) 4764 | (effects 4765 | (font 4766 | (size 1.27 1.27) 4767 | ) 4768 | (justify left top) 4769 | (hide yes) 4770 | ) 4771 | ) 4772 | (property "Description" "RGB LED with integrated controller" 4773 | (at 74.93 171.45 0) 4774 | (effects 4775 | (font 4776 | (size 1.27 1.27) 4777 | ) 4778 | (hide yes) 4779 | ) 4780 | ) 4781 | (pin "4" 4782 | (uuid "43962bd7-3c21-4728-ab90-c07f1a48da34") 4783 | ) 4784 | (pin "1" 4785 | (uuid "2ba3d9cf-c7c3-4c29-88dc-68a1aea5a335") 4786 | ) 4787 | (pin "3" 4788 | (uuid "1ad92feb-350b-4947-884d-37fbceb400ad") 4789 | ) 4790 | (pin "2" 4791 | (uuid "8a8137d8-c224-45a1-974b-1977a5ba1dc0") 4792 | ) 4793 | (instances 4794 | (project "" 4795 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 4796 | (reference "D1") 4797 | (unit 1) 4798 | ) 4799 | ) 4800 | ) 4801 | ) 4802 | (symbol 4803 | (lib_id "power:GND") 4804 | (at 123.19 149.86 0) 4805 | (unit 1) 4806 | (exclude_from_sim no) 4807 | (in_bom yes) 4808 | (on_board yes) 4809 | (dnp no) 4810 | (uuid "1f55da69-f1b9-4d37-ad5f-20b805ae6df6") 4811 | (property "Reference" "#PWR093" 4812 | (at 123.19 156.21 0) 4813 | (effects 4814 | (font 4815 | (size 1.27 1.27) 4816 | ) 4817 | (hide yes) 4818 | ) 4819 | ) 4820 | (property "Value" "GND" 4821 | (at 123.19 153.416 0) 4822 | (effects 4823 | (font 4824 | (size 1.27 1.27) 4825 | ) 4826 | ) 4827 | ) 4828 | (property "Footprint" "" 4829 | (at 123.19 149.86 0) 4830 | (effects 4831 | (font 4832 | (size 1.27 1.27) 4833 | ) 4834 | (hide yes) 4835 | ) 4836 | ) 4837 | (property "Datasheet" "" 4838 | (at 123.19 149.86 0) 4839 | (effects 4840 | (font 4841 | (size 1.27 1.27) 4842 | ) 4843 | (hide yes) 4844 | ) 4845 | ) 4846 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 4847 | (at 123.19 149.86 0) 4848 | (effects 4849 | (font 4850 | (size 1.27 1.27) 4851 | ) 4852 | (hide yes) 4853 | ) 4854 | ) 4855 | (pin "1" 4856 | (uuid "3056c1e8-9424-409a-82be-00f16ec371ab") 4857 | ) 4858 | (instances 4859 | (project "HSLinkPro" 4860 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 4861 | (reference "#PWR093") 4862 | (unit 1) 4863 | ) 4864 | ) 4865 | ) 4866 | ) 4867 | (symbol 4868 | (lib_id "Device:C") 4869 | (at 22.86 139.7 0) 4870 | (unit 1) 4871 | (exclude_from_sim no) 4872 | (in_bom yes) 4873 | (on_board yes) 4874 | (dnp no) 4875 | (uuid "22eb740a-6444-41a2-a755-5da426f1d859") 4876 | (property "Reference" "C21" 4877 | (at 20.828 137.668 0) 4878 | (effects 4879 | (font 4880 | (size 1.27 1.27) 4881 | ) 4882 | ) 4883 | ) 4884 | (property "Value" "15p" 4885 | (at 20.574 141.732 0) 4886 | (effects 4887 | (font 4888 | (size 1.27 1.27) 4889 | ) 4890 | ) 4891 | ) 4892 | (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" 4893 | (at 23.8252 143.51 0) 4894 | (effects 4895 | (font 4896 | (size 1.27 1.27) 4897 | ) 4898 | (hide yes) 4899 | ) 4900 | ) 4901 | (property "Datasheet" "~" 4902 | (at 22.86 139.7 0) 4903 | (effects 4904 | (font 4905 | (size 1.27 1.27) 4906 | ) 4907 | (hide yes) 4908 | ) 4909 | ) 4910 | (property "Description" "Unpolarized capacitor" 4911 | (at 22.86 139.7 0) 4912 | (effects 4913 | (font 4914 | (size 1.27 1.27) 4915 | ) 4916 | (hide yes) 4917 | ) 4918 | ) 4919 | (pin "1" 4920 | (uuid "c146be72-d178-4696-a19b-5f847168e9ef") 4921 | ) 4922 | (pin "2" 4923 | (uuid "628d6efc-7df6-4c43-a5af-80cdb90aa9c0") 4924 | ) 4925 | (instances 4926 | (project "HSLinkPro" 4927 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 4928 | (reference "C21") 4929 | (unit 1) 4930 | ) 4931 | ) 4932 | ) 4933 | ) 4934 | (symbol 4935 | (lib_id "power:+3V3") 4936 | (at 38.1 156.21 0) 4937 | (unit 1) 4938 | (exclude_from_sim no) 4939 | (in_bom yes) 4940 | (on_board yes) 4941 | (dnp no) 4942 | (uuid "29da1ced-b13f-4f76-90aa-d26b4c75ea73") 4943 | (property "Reference" "#PWR0135" 4944 | (at 38.1 160.02 0) 4945 | (effects 4946 | (font 4947 | (size 1.27 1.27) 4948 | ) 4949 | (hide yes) 4950 | ) 4951 | ) 4952 | (property "Value" "+3V3" 4953 | (at 38.1 152.654 0) 4954 | (effects 4955 | (font 4956 | (size 1.27 1.27) 4957 | ) 4958 | ) 4959 | ) 4960 | (property "Footprint" "" 4961 | (at 38.1 156.21 0) 4962 | (effects 4963 | (font 4964 | (size 1.27 1.27) 4965 | ) 4966 | (hide yes) 4967 | ) 4968 | ) 4969 | (property "Datasheet" "" 4970 | (at 38.1 156.21 0) 4971 | (effects 4972 | (font 4973 | (size 1.27 1.27) 4974 | ) 4975 | (hide yes) 4976 | ) 4977 | ) 4978 | (property "Description" "Power symbol creates a global label with name \"+3V3\"" 4979 | (at 38.1 156.21 0) 4980 | (effects 4981 | (font 4982 | (size 1.27 1.27) 4983 | ) 4984 | (hide yes) 4985 | ) 4986 | ) 4987 | (pin "1" 4988 | (uuid "a7e0e21f-5aaf-46a9-91f9-212a812ca412") 4989 | ) 4990 | (instances 4991 | (project "HSLinkPro" 4992 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 4993 | (reference "#PWR0135") 4994 | (unit 1) 4995 | ) 4996 | ) 4997 | ) 4998 | ) 4999 | (symbol 5000 | (lib_id "Device:R") 5001 | (at 123.19 134.62 0) 5002 | (unit 1) 5003 | (exclude_from_sim no) 5004 | (in_bom yes) 5005 | (on_board yes) 5006 | (dnp no) 5007 | (uuid "2bd60e2c-abc0-4492-ac8a-bc486dcd74f4") 5008 | (property "Reference" "R9" 5009 | (at 124.46 133.35 0) 5010 | (effects 5011 | (font 5012 | (size 1.27 1.27) 5013 | ) 5014 | (justify left) 5015 | ) 5016 | ) 5017 | (property "Value" "100k" 5018 | (at 124.46 135.89 0) 5019 | (effects 5020 | (font 5021 | (size 1.27 1.27) 5022 | ) 5023 | (justify left) 5024 | ) 5025 | ) 5026 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 5027 | (at 121.412 134.62 90) 5028 | (effects 5029 | (font 5030 | (size 1.27 1.27) 5031 | ) 5032 | (hide yes) 5033 | ) 5034 | ) 5035 | (property "Datasheet" "~" 5036 | (at 123.19 134.62 0) 5037 | (effects 5038 | (font 5039 | (size 1.27 1.27) 5040 | ) 5041 | (hide yes) 5042 | ) 5043 | ) 5044 | (property "Description" "Resistor" 5045 | (at 123.19 134.62 0) 5046 | (effects 5047 | (font 5048 | (size 1.27 1.27) 5049 | ) 5050 | (hide yes) 5051 | ) 5052 | ) 5053 | (pin "1" 5054 | (uuid "49021d67-1b04-400e-b759-37f760f26f77") 5055 | ) 5056 | (pin "2" 5057 | (uuid "a70c04a4-ec60-4456-8c7b-8879dc1480cc") 5058 | ) 5059 | (instances 5060 | (project "HSLinkPro" 5061 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5062 | (reference "R9") 5063 | (unit 1) 5064 | ) 5065 | ) 5066 | ) 5067 | ) 5068 | (symbol 5069 | (lib_id "Device:R") 5070 | (at 27.94 64.77 90) 5071 | (unit 1) 5072 | (exclude_from_sim no) 5073 | (in_bom yes) 5074 | (on_board yes) 5075 | (dnp no) 5076 | (uuid "389b3ccc-f4f0-42f8-86c7-c9b9a925ed90") 5077 | (property "Reference" "R23" 5078 | (at 23.368 63.5 90) 5079 | (effects 5080 | (font 5081 | (size 1.27 1.27) 5082 | ) 5083 | ) 5084 | ) 5085 | (property "Value" "22R" 5086 | (at 32.512 63.5 90) 5087 | (effects 5088 | (font 5089 | (size 1.27 1.27) 5090 | ) 5091 | ) 5092 | ) 5093 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 5094 | (at 27.94 66.548 90) 5095 | (effects 5096 | (font 5097 | (size 1.27 1.27) 5098 | ) 5099 | (hide yes) 5100 | ) 5101 | ) 5102 | (property "Datasheet" "~" 5103 | (at 27.94 64.77 0) 5104 | (effects 5105 | (font 5106 | (size 1.27 1.27) 5107 | ) 5108 | (hide yes) 5109 | ) 5110 | ) 5111 | (property "Description" "Resistor" 5112 | (at 27.94 64.77 0) 5113 | (effects 5114 | (font 5115 | (size 1.27 1.27) 5116 | ) 5117 | (hide yes) 5118 | ) 5119 | ) 5120 | (pin "1" 5121 | (uuid "4e99bae6-1982-46dd-b849-383cfda6e9f9") 5122 | ) 5123 | (pin "2" 5124 | (uuid "67873156-8eb9-409e-9962-9f9d2bd31794") 5125 | ) 5126 | (instances 5127 | (project "HSLinkPro" 5128 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5129 | (reference "R23") 5130 | (unit 1) 5131 | ) 5132 | ) 5133 | ) 5134 | ) 5135 | (symbol 5136 | (lib_id "Device:R") 5137 | (at 80.01 129.54 90) 5138 | (unit 1) 5139 | (exclude_from_sim no) 5140 | (in_bom yes) 5141 | (on_board yes) 5142 | (dnp no) 5143 | (uuid "4bc083c7-6de7-4d61-9ac7-454ca65a5d53") 5144 | (property "Reference" "R18" 5145 | (at 75.438 128.27 90) 5146 | (effects 5147 | (font 5148 | (size 1.27 1.27) 5149 | ) 5150 | ) 5151 | ) 5152 | (property "Value" "10k" 5153 | (at 84.582 128.27 90) 5154 | (effects 5155 | (font 5156 | (size 1.27 1.27) 5157 | ) 5158 | ) 5159 | ) 5160 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 5161 | (at 80.01 131.318 90) 5162 | (effects 5163 | (font 5164 | (size 1.27 1.27) 5165 | ) 5166 | (hide yes) 5167 | ) 5168 | ) 5169 | (property "Datasheet" "~" 5170 | (at 80.01 129.54 0) 5171 | (effects 5172 | (font 5173 | (size 1.27 1.27) 5174 | ) 5175 | (hide yes) 5176 | ) 5177 | ) 5178 | (property "Description" "Resistor" 5179 | (at 80.01 129.54 0) 5180 | (effects 5181 | (font 5182 | (size 1.27 1.27) 5183 | ) 5184 | (hide yes) 5185 | ) 5186 | ) 5187 | (pin "1" 5188 | (uuid "3ff13cf5-efb2-44b4-9925-320cea5baf17") 5189 | ) 5190 | (pin "2" 5191 | (uuid "b4099385-7d35-45c7-b34b-2b9194b1cac7") 5192 | ) 5193 | (instances 5194 | (project "HSLinkPro" 5195 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5196 | (reference "R18") 5197 | (unit 1) 5198 | ) 5199 | ) 5200 | ) 5201 | ) 5202 | (symbol 5203 | (lib_id "Device:R") 5204 | (at 27.94 62.23 90) 5205 | (unit 1) 5206 | (exclude_from_sim no) 5207 | (in_bom yes) 5208 | (on_board yes) 5209 | (dnp no) 5210 | (uuid "51f7bb8a-1825-45d5-b2e4-faa81c0a86fa") 5211 | (property "Reference" "R22" 5212 | (at 23.368 60.96 90) 5213 | (effects 5214 | (font 5215 | (size 1.27 1.27) 5216 | ) 5217 | ) 5218 | ) 5219 | (property "Value" "22R" 5220 | (at 32.512 60.96 90) 5221 | (effects 5222 | (font 5223 | (size 1.27 1.27) 5224 | ) 5225 | ) 5226 | ) 5227 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 5228 | (at 27.94 64.008 90) 5229 | (effects 5230 | (font 5231 | (size 1.27 1.27) 5232 | ) 5233 | (hide yes) 5234 | ) 5235 | ) 5236 | (property "Datasheet" "~" 5237 | (at 27.94 62.23 0) 5238 | (effects 5239 | (font 5240 | (size 1.27 1.27) 5241 | ) 5242 | (hide yes) 5243 | ) 5244 | ) 5245 | (property "Description" "Resistor" 5246 | (at 27.94 62.23 0) 5247 | (effects 5248 | (font 5249 | (size 1.27 1.27) 5250 | ) 5251 | (hide yes) 5252 | ) 5253 | ) 5254 | (pin "1" 5255 | (uuid "c05966fd-330b-4126-8df3-f2f7037faa94") 5256 | ) 5257 | (pin "2" 5258 | (uuid "25d78759-204b-429e-9ebe-a8043aa33f86") 5259 | ) 5260 | (instances 5261 | (project "" 5262 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5263 | (reference "R22") 5264 | (unit 1) 5265 | ) 5266 | ) 5267 | ) 5268 | ) 5269 | (symbol 5270 | (lib_id "power:GND") 5271 | (at 74.93 180.34 0) 5272 | (unit 1) 5273 | (exclude_from_sim no) 5274 | (in_bom yes) 5275 | (on_board yes) 5276 | (dnp no) 5277 | (uuid "52e6f916-c350-4ab2-aa3e-411ae699b3f5") 5278 | (property "Reference" "#PWR0111" 5279 | (at 74.93 186.69 0) 5280 | (effects 5281 | (font 5282 | (size 1.27 1.27) 5283 | ) 5284 | (hide yes) 5285 | ) 5286 | ) 5287 | (property "Value" "GND" 5288 | (at 74.93 183.896 0) 5289 | (effects 5290 | (font 5291 | (size 1.27 1.27) 5292 | ) 5293 | ) 5294 | ) 5295 | (property "Footprint" "" 5296 | (at 74.93 180.34 0) 5297 | (effects 5298 | (font 5299 | (size 1.27 1.27) 5300 | ) 5301 | (hide yes) 5302 | ) 5303 | ) 5304 | (property "Datasheet" "" 5305 | (at 74.93 180.34 0) 5306 | (effects 5307 | (font 5308 | (size 1.27 1.27) 5309 | ) 5310 | (hide yes) 5311 | ) 5312 | ) 5313 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 5314 | (at 74.93 180.34 0) 5315 | (effects 5316 | (font 5317 | (size 1.27 1.27) 5318 | ) 5319 | (hide yes) 5320 | ) 5321 | ) 5322 | (pin "1" 5323 | (uuid "681f6359-fbfc-4721-95d5-2b187337b1c6") 5324 | ) 5325 | (instances 5326 | (project "HSLinkPro" 5327 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5328 | (reference "#PWR0111") 5329 | (unit 1) 5330 | ) 5331 | ) 5332 | ) 5333 | ) 5334 | (symbol 5335 | (lib_id "Connector_Generic:Conn_01x04") 5336 | (at 30.48 161.29 0) 5337 | (mirror y) 5338 | (unit 1) 5339 | (exclude_from_sim no) 5340 | (in_bom no) 5341 | (on_board yes) 5342 | (dnp yes) 5343 | (fields_autoplaced yes) 5344 | (uuid "597a5a71-56cf-43c5-9611-938f2c5a481c") 5345 | (property "Reference" "J3" 5346 | (at 30.48 152.4 0) 5347 | (effects 5348 | (font 5349 | (size 1.27 1.27) 5350 | ) 5351 | ) 5352 | ) 5353 | (property "Value" "Header 1.27 4P" 5354 | (at 30.48 154.94 0) 5355 | (effects 5356 | (font 5357 | (size 1.27 1.27) 5358 | ) 5359 | ) 5360 | ) 5361 | (property "Footprint" "Connector_PinHeader_1.27mm:PinHeader_1x04_P1.27mm_Vertical" 5362 | (at 30.48 161.29 0) 5363 | (effects 5364 | (font 5365 | (size 1.27 1.27) 5366 | ) 5367 | (hide yes) 5368 | ) 5369 | ) 5370 | (property "Datasheet" "~" 5371 | (at 30.48 161.29 0) 5372 | (effects 5373 | (font 5374 | (size 1.27 1.27) 5375 | ) 5376 | (hide yes) 5377 | ) 5378 | ) 5379 | (property "Description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" 5380 | (at 30.48 161.29 0) 5381 | (effects 5382 | (font 5383 | (size 1.27 1.27) 5384 | ) 5385 | (hide yes) 5386 | ) 5387 | ) 5388 | (pin "2" 5389 | (uuid "be8a79a6-a9e7-45b0-af64-4ae6457f6d3e") 5390 | ) 5391 | (pin "4" 5392 | (uuid "32172329-6e55-4433-a21d-c58161ae7d30") 5393 | ) 5394 | (pin "3" 5395 | (uuid "d85ebd6f-e84a-40aa-89b6-996e3cef471f") 5396 | ) 5397 | (pin "1" 5398 | (uuid "d89be071-c140-43b7-bbad-fd9a5c33edc0") 5399 | ) 5400 | (instances 5401 | (project "" 5402 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5403 | (reference "J3") 5404 | (unit 1) 5405 | ) 5406 | ) 5407 | ) 5408 | ) 5409 | (symbol 5410 | (lib_id "Device:C") 5411 | (at 105.41 144.78 0) 5412 | (unit 1) 5413 | (exclude_from_sim no) 5414 | (in_bom yes) 5415 | (on_board yes) 5416 | (dnp no) 5417 | (uuid "5c08c103-1eef-4058-8e18-713d88286417") 5418 | (property "Reference" "C23" 5419 | (at 109.982 143.764 0) 5420 | (effects 5421 | (font 5422 | (size 1.27 1.27) 5423 | ) 5424 | ) 5425 | ) 5426 | (property "Value" "0.1u" 5427 | (at 110.236 145.796 0) 5428 | (effects 5429 | (font 5430 | (size 1.27 1.27) 5431 | ) 5432 | ) 5433 | ) 5434 | (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" 5435 | (at 106.3752 148.59 0) 5436 | (effects 5437 | (font 5438 | (size 1.27 1.27) 5439 | ) 5440 | (hide yes) 5441 | ) 5442 | ) 5443 | (property "Datasheet" "~" 5444 | (at 105.41 144.78 0) 5445 | (effects 5446 | (font 5447 | (size 1.27 1.27) 5448 | ) 5449 | (hide yes) 5450 | ) 5451 | ) 5452 | (property "Description" "Unpolarized capacitor" 5453 | (at 105.41 144.78 0) 5454 | (effects 5455 | (font 5456 | (size 1.27 1.27) 5457 | ) 5458 | (hide yes) 5459 | ) 5460 | ) 5461 | (pin "1" 5462 | (uuid "0a6b1a4b-7917-45f6-9891-69aef0f0ce4c") 5463 | ) 5464 | (pin "2" 5465 | (uuid "cdfb4614-3dde-45fa-b055-94ebe07ae228") 5466 | ) 5467 | (instances 5468 | (project "HSLinkPro" 5469 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5470 | (reference "C23") 5471 | (unit 1) 5472 | ) 5473 | ) 5474 | ) 5475 | ) 5476 | (symbol 5477 | (lib_id "Device:R") 5478 | (at 80.01 127 90) 5479 | (unit 1) 5480 | (exclude_from_sim no) 5481 | (in_bom yes) 5482 | (on_board yes) 5483 | (dnp no) 5484 | (uuid "6b937c15-13b6-4855-b05e-5aea3bd87600") 5485 | (property "Reference" "R17" 5486 | (at 75.438 125.73 90) 5487 | (effects 5488 | (font 5489 | (size 1.27 1.27) 5490 | ) 5491 | ) 5492 | ) 5493 | (property "Value" "10k" 5494 | (at 84.582 125.73 90) 5495 | (effects 5496 | (font 5497 | (size 1.27 1.27) 5498 | ) 5499 | ) 5500 | ) 5501 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 5502 | (at 80.01 128.778 90) 5503 | (effects 5504 | (font 5505 | (size 1.27 1.27) 5506 | ) 5507 | (hide yes) 5508 | ) 5509 | ) 5510 | (property "Datasheet" "~" 5511 | (at 80.01 127 0) 5512 | (effects 5513 | (font 5514 | (size 1.27 1.27) 5515 | ) 5516 | (hide yes) 5517 | ) 5518 | ) 5519 | (property "Description" "Resistor" 5520 | (at 80.01 127 0) 5521 | (effects 5522 | (font 5523 | (size 1.27 1.27) 5524 | ) 5525 | (hide yes) 5526 | ) 5527 | ) 5528 | (pin "1" 5529 | (uuid "ef4d47e7-7f15-4ba2-8984-959db0ba56d5") 5530 | ) 5531 | (pin "2" 5532 | (uuid "5965ff33-3d69-4eb4-80cc-bdf568bc4b33") 5533 | ) 5534 | (instances 5535 | (project "HSLinkPro" 5536 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5537 | (reference "R17") 5538 | (unit 1) 5539 | ) 5540 | ) 5541 | ) 5542 | ) 5543 | (symbol 5544 | (lib_id "Device:C") 5545 | (at 38.1 139.7 0) 5546 | (unit 1) 5547 | (exclude_from_sim no) 5548 | (in_bom yes) 5549 | (on_board yes) 5550 | (dnp no) 5551 | (uuid "6c3568c9-488c-477f-996f-d764002dc39d") 5552 | (property "Reference" "C22" 5553 | (at 36.068 137.668 0) 5554 | (effects 5555 | (font 5556 | (size 1.27 1.27) 5557 | ) 5558 | ) 5559 | ) 5560 | (property "Value" "15p" 5561 | (at 35.814 141.732 0) 5562 | (effects 5563 | (font 5564 | (size 1.27 1.27) 5565 | ) 5566 | ) 5567 | ) 5568 | (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" 5569 | (at 39.0652 143.51 0) 5570 | (effects 5571 | (font 5572 | (size 1.27 1.27) 5573 | ) 5574 | (hide yes) 5575 | ) 5576 | ) 5577 | (property "Datasheet" "~" 5578 | (at 38.1 139.7 0) 5579 | (effects 5580 | (font 5581 | (size 1.27 1.27) 5582 | ) 5583 | (hide yes) 5584 | ) 5585 | ) 5586 | (property "Description" "Unpolarized capacitor" 5587 | (at 38.1 139.7 0) 5588 | (effects 5589 | (font 5590 | (size 1.27 1.27) 5591 | ) 5592 | (hide yes) 5593 | ) 5594 | ) 5595 | (pin "1" 5596 | (uuid "c3a85db3-17f9-4314-a5ee-0a814e760b59") 5597 | ) 5598 | (pin "2" 5599 | (uuid "00ad937c-4d02-4a92-a36d-fe3c3d682472") 5600 | ) 5601 | (instances 5602 | (project "HSLinkPro" 5603 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5604 | (reference "C22") 5605 | (unit 1) 5606 | ) 5607 | ) 5608 | ) 5609 | ) 5610 | (symbol 5611 | (lib_id "Device:R") 5612 | (at 138.43 134.62 0) 5613 | (unit 1) 5614 | (exclude_from_sim no) 5615 | (in_bom yes) 5616 | (on_board yes) 5617 | (dnp no) 5618 | (uuid "75dcd7ef-dec7-4ece-9866-0fac281b212e") 5619 | (property "Reference" "R11" 5620 | (at 139.7 133.35 0) 5621 | (effects 5622 | (font 5623 | (size 1.27 1.27) 5624 | ) 5625 | (justify left) 5626 | ) 5627 | ) 5628 | (property "Value" "100k" 5629 | (at 139.7 135.89 0) 5630 | (effects 5631 | (font 5632 | (size 1.27 1.27) 5633 | ) 5634 | (justify left) 5635 | ) 5636 | ) 5637 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 5638 | (at 136.652 134.62 90) 5639 | (effects 5640 | (font 5641 | (size 1.27 1.27) 5642 | ) 5643 | (hide yes) 5644 | ) 5645 | ) 5646 | (property "Datasheet" "~" 5647 | (at 138.43 134.62 0) 5648 | (effects 5649 | (font 5650 | (size 1.27 1.27) 5651 | ) 5652 | (hide yes) 5653 | ) 5654 | ) 5655 | (property "Description" "Resistor" 5656 | (at 138.43 134.62 0) 5657 | (effects 5658 | (font 5659 | (size 1.27 1.27) 5660 | ) 5661 | (hide yes) 5662 | ) 5663 | ) 5664 | (pin "1" 5665 | (uuid "1e762aff-d8b2-4795-bdb6-58b8366aa29c") 5666 | ) 5667 | (pin "2" 5668 | (uuid "8a64c29d-dce4-435c-b988-cb8ba3aec8bb") 5669 | ) 5670 | (instances 5671 | (project "HSLinkPro" 5672 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5673 | (reference "R11") 5674 | (unit 1) 5675 | ) 5676 | ) 5677 | ) 5678 | ) 5679 | (symbol 5680 | (lib_id "power:+3V3") 5681 | (at 87.63 144.78 0) 5682 | (unit 1) 5683 | (exclude_from_sim no) 5684 | (in_bom yes) 5685 | (on_board yes) 5686 | (dnp no) 5687 | (uuid "7603c4d0-9845-4600-bdca-3b8eed903538") 5688 | (property "Reference" "#PWR0108" 5689 | (at 87.63 148.59 0) 5690 | (effects 5691 | (font 5692 | (size 1.27 1.27) 5693 | ) 5694 | (hide yes) 5695 | ) 5696 | ) 5697 | (property "Value" "+3V3" 5698 | (at 87.63 141.224 0) 5699 | (effects 5700 | (font 5701 | (size 1.27 1.27) 5702 | ) 5703 | ) 5704 | ) 5705 | (property "Footprint" "" 5706 | (at 87.63 144.78 0) 5707 | (effects 5708 | (font 5709 | (size 1.27 1.27) 5710 | ) 5711 | (hide yes) 5712 | ) 5713 | ) 5714 | (property "Datasheet" "" 5715 | (at 87.63 144.78 0) 5716 | (effects 5717 | (font 5718 | (size 1.27 1.27) 5719 | ) 5720 | (hide yes) 5721 | ) 5722 | ) 5723 | (property "Description" "Power symbol creates a global label with name \"+3V3\"" 5724 | (at 87.63 144.78 0) 5725 | (effects 5726 | (font 5727 | (size 1.27 1.27) 5728 | ) 5729 | (hide yes) 5730 | ) 5731 | ) 5732 | (pin "1" 5733 | (uuid "1d289a21-0741-462d-9745-2c45dbaa8cf8") 5734 | ) 5735 | (instances 5736 | (project "HSLinkPro" 5737 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5738 | (reference "#PWR0108") 5739 | (unit 1) 5740 | ) 5741 | ) 5742 | ) 5743 | ) 5744 | (symbol 5745 | (lib_id "power:GND") 5746 | (at 105.41 149.86 0) 5747 | (unit 1) 5748 | (exclude_from_sim no) 5749 | (in_bom yes) 5750 | (on_board yes) 5751 | (dnp no) 5752 | (uuid "7aebcd88-9785-4a6f-a0da-5beaf5760e34") 5753 | (property "Reference" "#PWR017" 5754 | (at 105.41 156.21 0) 5755 | (effects 5756 | (font 5757 | (size 1.27 1.27) 5758 | ) 5759 | (hide yes) 5760 | ) 5761 | ) 5762 | (property "Value" "GND" 5763 | (at 105.41 153.416 0) 5764 | (effects 5765 | (font 5766 | (size 1.27 1.27) 5767 | ) 5768 | ) 5769 | ) 5770 | (property "Footprint" "" 5771 | (at 105.41 149.86 0) 5772 | (effects 5773 | (font 5774 | (size 1.27 1.27) 5775 | ) 5776 | (hide yes) 5777 | ) 5778 | ) 5779 | (property "Datasheet" "" 5780 | (at 105.41 149.86 0) 5781 | (effects 5782 | (font 5783 | (size 1.27 1.27) 5784 | ) 5785 | (hide yes) 5786 | ) 5787 | ) 5788 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 5789 | (at 105.41 149.86 0) 5790 | (effects 5791 | (font 5792 | (size 1.27 1.27) 5793 | ) 5794 | (hide yes) 5795 | ) 5796 | ) 5797 | (pin "1" 5798 | (uuid "c6789c43-adb8-47f6-acf1-b412df52fba6") 5799 | ) 5800 | (instances 5801 | (project "HSLinkPro" 5802 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5803 | (reference "#PWR017") 5804 | (unit 1) 5805 | ) 5806 | ) 5807 | ) 5808 | ) 5809 | (symbol 5810 | (lib_id "Device:R") 5811 | (at 138.43 144.78 0) 5812 | (unit 1) 5813 | (exclude_from_sim no) 5814 | (in_bom yes) 5815 | (on_board yes) 5816 | (dnp no) 5817 | (uuid "8134c7b8-e60f-4a54-9108-f765cd391282") 5818 | (property "Reference" "R12" 5819 | (at 139.7 143.51 0) 5820 | (effects 5821 | (font 5822 | (size 1.27 1.27) 5823 | ) 5824 | (justify left) 5825 | ) 5826 | ) 5827 | (property "Value" "100k" 5828 | (at 139.7 146.05 0) 5829 | (effects 5830 | (font 5831 | (size 1.27 1.27) 5832 | ) 5833 | (justify left) 5834 | ) 5835 | ) 5836 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 5837 | (at 136.652 144.78 90) 5838 | (effects 5839 | (font 5840 | (size 1.27 1.27) 5841 | ) 5842 | (hide yes) 5843 | ) 5844 | ) 5845 | (property "Datasheet" "~" 5846 | (at 138.43 144.78 0) 5847 | (effects 5848 | (font 5849 | (size 1.27 1.27) 5850 | ) 5851 | (hide yes) 5852 | ) 5853 | ) 5854 | (property "Description" "Resistor" 5855 | (at 138.43 144.78 0) 5856 | (effects 5857 | (font 5858 | (size 1.27 1.27) 5859 | ) 5860 | (hide yes) 5861 | ) 5862 | ) 5863 | (pin "1" 5864 | (uuid "74a8f069-a242-4c15-b1be-87d8bf99cd76") 5865 | ) 5866 | (pin "2" 5867 | (uuid "b260effe-bd3d-48a8-b217-2b8fdf4098f1") 5868 | ) 5869 | (instances 5870 | (project "HSLinkPro" 5871 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5872 | (reference "R12") 5873 | (unit 1) 5874 | ) 5875 | ) 5876 | ) 5877 | ) 5878 | (symbol 5879 | (lib_id "Device:Crystal_GND24") 5880 | (at 30.48 133.35 0) 5881 | (unit 1) 5882 | (exclude_from_sim no) 5883 | (in_bom yes) 5884 | (on_board yes) 5885 | (dnp no) 5886 | (uuid "8db9e5b7-a1c0-4964-b114-86047490052e") 5887 | (property "Reference" "Y1" 5888 | (at 25.654 129.54 0) 5889 | (effects 5890 | (font 5891 | (size 1.27 1.27) 5892 | ) 5893 | ) 5894 | ) 5895 | (property "Value" "24M" 5896 | (at 35.56 129.794 0) 5897 | (effects 5898 | (font 5899 | (size 1.27 1.27) 5900 | ) 5901 | ) 5902 | ) 5903 | (property "Footprint" "Crystal:Crystal_SMD_2016-4Pin_2.0x1.6mm" 5904 | (at 30.48 133.35 0) 5905 | (effects 5906 | (font 5907 | (size 1.27 1.27) 5908 | ) 5909 | (hide yes) 5910 | ) 5911 | ) 5912 | (property "Datasheet" "~" 5913 | (at 30.48 133.35 0) 5914 | (effects 5915 | (font 5916 | (size 1.27 1.27) 5917 | ) 5918 | (hide yes) 5919 | ) 5920 | ) 5921 | (property "Description" "Four pin crystal, GND on pins 2 and 4" 5922 | (at 30.48 133.35 0) 5923 | (effects 5924 | (font 5925 | (size 1.27 1.27) 5926 | ) 5927 | (hide yes) 5928 | ) 5929 | ) 5930 | (pin "1" 5931 | (uuid "a4ab2dd1-276c-4670-9512-a33404211873") 5932 | ) 5933 | (pin "3" 5934 | (uuid "c4bb99e9-03d5-4639-b1ca-7601425b1858") 5935 | ) 5936 | (pin "4" 5937 | (uuid "d0302f70-5d32-4b9e-b00a-095e30952554") 5938 | ) 5939 | (pin "2" 5940 | (uuid "0e129984-d40c-4176-a3d0-ae155cd20819") 5941 | ) 5942 | (instances 5943 | (project "" 5944 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 5945 | (reference "Y1") 5946 | (unit 1) 5947 | ) 5948 | ) 5949 | ) 5950 | ) 5951 | (symbol 5952 | (lib_id "power:GND") 5953 | (at 87.63 165.1 0) 5954 | (unit 1) 5955 | (exclude_from_sim no) 5956 | (in_bom yes) 5957 | (on_board yes) 5958 | (dnp no) 5959 | (uuid "9415a1f4-75ac-43ad-bc10-98efa4506e27") 5960 | (property "Reference" "#PWR0110" 5961 | (at 87.63 171.45 0) 5962 | (effects 5963 | (font 5964 | (size 1.27 1.27) 5965 | ) 5966 | (hide yes) 5967 | ) 5968 | ) 5969 | (property "Value" "GND" 5970 | (at 87.63 168.656 0) 5971 | (effects 5972 | (font 5973 | (size 1.27 1.27) 5974 | ) 5975 | ) 5976 | ) 5977 | (property "Footprint" "" 5978 | (at 87.63 165.1 0) 5979 | (effects 5980 | (font 5981 | (size 1.27 1.27) 5982 | ) 5983 | (hide yes) 5984 | ) 5985 | ) 5986 | (property "Datasheet" "" 5987 | (at 87.63 165.1 0) 5988 | (effects 5989 | (font 5990 | (size 1.27 1.27) 5991 | ) 5992 | (hide yes) 5993 | ) 5994 | ) 5995 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 5996 | (at 87.63 165.1 0) 5997 | (effects 5998 | (font 5999 | (size 1.27 1.27) 6000 | ) 6001 | (hide yes) 6002 | ) 6003 | ) 6004 | (pin "1" 6005 | (uuid "a28c24fb-fda4-4b02-853c-a0d2b0ed5260") 6006 | ) 6007 | (instances 6008 | (project "HSLinkPro" 6009 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6010 | (reference "#PWR0110") 6011 | (unit 1) 6012 | ) 6013 | ) 6014 | ) 6015 | ) 6016 | (symbol 6017 | (lib_id "Device:C") 6018 | (at 81.28 162.56 90) 6019 | (unit 1) 6020 | (exclude_from_sim no) 6021 | (in_bom yes) 6022 | (on_board yes) 6023 | (dnp no) 6024 | (uuid "976d3abf-100f-4ea7-b972-465a7d0b679e") 6025 | (property "Reference" "C57" 6026 | (at 78.232 161.544 90) 6027 | (effects 6028 | (font 6029 | (size 1.27 1.27) 6030 | ) 6031 | ) 6032 | ) 6033 | (property "Value" "0.1u" 6034 | (at 84.582 161.29 90) 6035 | (effects 6036 | (font 6037 | (size 1.27 1.27) 6038 | ) 6039 | ) 6040 | ) 6041 | (property "Footprint" "Capacitor_SMD:C_0402_1005Metric" 6042 | (at 85.09 161.5948 0) 6043 | (effects 6044 | (font 6045 | (size 1.27 1.27) 6046 | ) 6047 | (hide yes) 6048 | ) 6049 | ) 6050 | (property "Datasheet" "~" 6051 | (at 81.28 162.56 0) 6052 | (effects 6053 | (font 6054 | (size 1.27 1.27) 6055 | ) 6056 | (hide yes) 6057 | ) 6058 | ) 6059 | (property "Description" "Unpolarized capacitor" 6060 | (at 81.28 162.56 0) 6061 | (effects 6062 | (font 6063 | (size 1.27 1.27) 6064 | ) 6065 | (hide yes) 6066 | ) 6067 | ) 6068 | (pin "1" 6069 | (uuid "8c5d0167-aa99-4453-9101-8834f0d2f74a") 6070 | ) 6071 | (pin "2" 6072 | (uuid "73a6d326-e6d5-4187-8fa2-bf48d9a85e47") 6073 | ) 6074 | (instances 6075 | (project "" 6076 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6077 | (reference "C57") 6078 | (unit 1) 6079 | ) 6080 | ) 6081 | ) 6082 | ) 6083 | (symbol 6084 | (lib_id "power:+3V3") 6085 | (at 105.41 129.54 0) 6086 | (unit 1) 6087 | (exclude_from_sim no) 6088 | (in_bom yes) 6089 | (on_board yes) 6090 | (dnp no) 6091 | (uuid "98318e33-a1ee-4763-8d91-d773ffb2fbd7") 6092 | (property "Reference" "#PWR016" 6093 | (at 105.41 133.35 0) 6094 | (effects 6095 | (font 6096 | (size 1.27 1.27) 6097 | ) 6098 | (hide yes) 6099 | ) 6100 | ) 6101 | (property "Value" "+3V3" 6102 | (at 105.41 125.984 0) 6103 | (effects 6104 | (font 6105 | (size 1.27 1.27) 6106 | ) 6107 | ) 6108 | ) 6109 | (property "Footprint" "" 6110 | (at 105.41 129.54 0) 6111 | (effects 6112 | (font 6113 | (size 1.27 1.27) 6114 | ) 6115 | (hide yes) 6116 | ) 6117 | ) 6118 | (property "Datasheet" "" 6119 | (at 105.41 129.54 0) 6120 | (effects 6121 | (font 6122 | (size 1.27 1.27) 6123 | ) 6124 | (hide yes) 6125 | ) 6126 | ) 6127 | (property "Description" "Power symbol creates a global label with name \"+3V3\"" 6128 | (at 105.41 129.54 0) 6129 | (effects 6130 | (font 6131 | (size 1.27 1.27) 6132 | ) 6133 | (hide yes) 6134 | ) 6135 | ) 6136 | (pin "1" 6137 | (uuid "80a109de-d969-4bfe-9967-3d3cfac97650") 6138 | ) 6139 | (instances 6140 | (project "HSLinkPro" 6141 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6142 | (reference "#PWR016") 6143 | (unit 1) 6144 | ) 6145 | ) 6146 | ) 6147 | ) 6148 | (symbol 6149 | (lib_id "power:GND") 6150 | (at 38.1 168.91 0) 6151 | (unit 1) 6152 | (exclude_from_sim no) 6153 | (in_bom yes) 6154 | (on_board yes) 6155 | (dnp no) 6156 | (uuid "a6f90d15-e163-41e5-9c4f-0325c19f266b") 6157 | (property "Reference" "#PWR0134" 6158 | (at 38.1 175.26 0) 6159 | (effects 6160 | (font 6161 | (size 1.27 1.27) 6162 | ) 6163 | (hide yes) 6164 | ) 6165 | ) 6166 | (property "Value" "GND" 6167 | (at 38.1 172.466 0) 6168 | (effects 6169 | (font 6170 | (size 1.27 1.27) 6171 | ) 6172 | ) 6173 | ) 6174 | (property "Footprint" "" 6175 | (at 38.1 168.91 0) 6176 | (effects 6177 | (font 6178 | (size 1.27 1.27) 6179 | ) 6180 | (hide yes) 6181 | ) 6182 | ) 6183 | (property "Datasheet" "" 6184 | (at 38.1 168.91 0) 6185 | (effects 6186 | (font 6187 | (size 1.27 1.27) 6188 | ) 6189 | (hide yes) 6190 | ) 6191 | ) 6192 | (property "Description" "Power symbol creates a global label with name \"GND\" , ground" 6193 | (at 38.1 168.91 0) 6194 | (effects 6195 | (font 6196 | (size 1.27 1.27) 6197 | ) 6198 | (hide yes) 6199 | ) 6200 | ) 6201 | (pin "1" 6202 | (uuid "be13ad3e-e71d-4b28-95f9-036ba6c605f7") 6203 | ) 6204 | (instances 6205 | (project "HSLinkPro" 6206 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6207 | (reference "#PWR0134") 6208 | (unit 1) 6209 | ) 6210 | ) 6211 | ) 6212 | ) 6213 | (symbol 6214 | (lib_id "Device:R") 6215 | (at 80.01 132.08 90) 6216 | (unit 1) 6217 | (exclude_from_sim no) 6218 | (in_bom yes) 6219 | (on_board yes) 6220 | (dnp no) 6221 | (uuid "a720e563-3458-43d0-8635-b60563f89d7b") 6222 | (property "Reference" "R21" 6223 | (at 75.438 130.81 90) 6224 | (effects 6225 | (font 6226 | (size 1.27 1.27) 6227 | ) 6228 | ) 6229 | ) 6230 | (property "Value" "100k" 6231 | (at 84.582 130.81 90) 6232 | (effects 6233 | (font 6234 | (size 1.27 1.27) 6235 | ) 6236 | ) 6237 | ) 6238 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 6239 | (at 80.01 133.858 90) 6240 | (effects 6241 | (font 6242 | (size 1.27 1.27) 6243 | ) 6244 | (hide yes) 6245 | ) 6246 | ) 6247 | (property "Datasheet" "~" 6248 | (at 80.01 132.08 0) 6249 | (effects 6250 | (font 6251 | (size 1.27 1.27) 6252 | ) 6253 | (hide yes) 6254 | ) 6255 | ) 6256 | (property "Description" "Resistor" 6257 | (at 80.01 132.08 0) 6258 | (effects 6259 | (font 6260 | (size 1.27 1.27) 6261 | ) 6262 | (hide yes) 6263 | ) 6264 | ) 6265 | (pin "1" 6266 | (uuid "197f2822-85c1-4205-9d90-ccb71455639c") 6267 | ) 6268 | (pin "2" 6269 | (uuid "b62df8a8-dcef-4e89-bced-02779c675ffc") 6270 | ) 6271 | (instances 6272 | (project "HSLinkPro" 6273 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6274 | (reference "R21") 6275 | (unit 1) 6276 | ) 6277 | ) 6278 | ) 6279 | ) 6280 | (symbol 6281 | (lib_id "HPM5300_Library:HPM5301IEG1") 6282 | (at 92.71 67.31 0) 6283 | (unit 2) 6284 | (exclude_from_sim no) 6285 | (in_bom yes) 6286 | (on_board yes) 6287 | (dnp no) 6288 | (fields_autoplaced yes) 6289 | (uuid "b0fff076-ee0d-4f2e-93ef-6ba65f59ae1d") 6290 | (property "Reference" "U1" 6291 | (at 147.32 66.0399 0) 6292 | (effects 6293 | (font 6294 | (size 1.27 1.27) 6295 | ) 6296 | (justify left) 6297 | ) 6298 | ) 6299 | (property "Value" "HPM5301IEG1" 6300 | (at 147.32 68.5799 0) 6301 | (effects 6302 | (font 6303 | (size 1.27 1.27) 6304 | ) 6305 | (justify left) 6306 | ) 6307 | ) 6308 | (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm" 6309 | (at 68.58 3.81 0) 6310 | (effects 6311 | (font 6312 | (size 1.27 1.27) 6313 | ) 6314 | (hide yes) 6315 | ) 6316 | ) 6317 | (property "Datasheet" "http://www.hpmicro.com/down.aspx?DId=b9f427fc-7856-4897-8a2b-247d1845c1b1&LId=091cdc4f-0cbe-4040-87bc-79f1448ed356&SkipL=T" 6318 | (at 46.99 55.88 0) 6319 | (effects 6320 | (font 6321 | (size 1.27 1.27) 6322 | ) 6323 | (hide yes) 6324 | ) 6325 | ) 6326 | (property "Description" "Hpmicro High Performance Motion Control MCU, QFN48" 6327 | (at 52.07 16.51 0) 6328 | (effects 6329 | (font 6330 | (size 1.27 1.27) 6331 | ) 6332 | (hide yes) 6333 | ) 6334 | ) 6335 | (pin "33" 6336 | (uuid "ee439284-df5c-44d0-bdb6-20c86b238469") 6337 | ) 6338 | (pin "13" 6339 | (uuid "ee2112cb-80d2-4bef-b420-55df2d949475") 6340 | ) 6341 | (pin "21" 6342 | (uuid "0837ebaa-7d22-47ae-8a3d-3cecfd28bc85") 6343 | ) 6344 | (pin "28" 6345 | (uuid "5d886ff2-81c5-46c7-9c5c-23b5e7cdf000") 6346 | ) 6347 | (pin "11" 6348 | (uuid "e7a00436-01e0-4f2a-8fb3-a96b99ab2eec") 6349 | ) 6350 | (pin "25" 6351 | (uuid "e9ead19d-bcf8-4a49-9ff7-f8e953fc2fb3") 6352 | ) 6353 | (pin "19" 6354 | (uuid "d3344b32-6bad-44fe-8af7-f8f1c3ebd2db") 6355 | ) 6356 | (pin "17" 6357 | (uuid "ff977766-c2b5-488b-8415-0b103c45c0b6") 6358 | ) 6359 | (pin "10" 6360 | (uuid "a488a345-870e-4d68-96fd-10325d6645d2") 6361 | ) 6362 | (pin "16" 6363 | (uuid "5ff393fc-83bd-4f0e-b68e-23c30cc4fa8a") 6364 | ) 6365 | (pin "12" 6366 | (uuid "a991c5dc-1916-4b39-bd13-e3778c2a4a91") 6367 | ) 6368 | (pin "18" 6369 | (uuid "2a2228de-6265-485c-8f5d-ddf0cdedb95b") 6370 | ) 6371 | (pin "49" 6372 | (uuid "3f8a7d67-7e2e-48d3-a3ac-8d97c6597efa") 6373 | ) 6374 | (pin "27" 6375 | (uuid "141504b0-e85b-47f1-99c0-0363bc8169c0") 6376 | ) 6377 | (pin "34" 6378 | (uuid "caaa1f39-dc69-4d99-b266-004401dccef2") 6379 | ) 6380 | (pin "38" 6381 | (uuid "26825e2a-3ef2-4190-8434-5da267ec4848") 6382 | ) 6383 | (pin "42" 6384 | (uuid "a1d897ef-8863-4731-8ae9-96243d773c05") 6385 | ) 6386 | (pin "41" 6387 | (uuid "e3de0c14-e81f-4d48-a44f-0ba5ba39bd69") 6388 | ) 6389 | (pin "48" 6390 | (uuid "b1f6b713-ae01-42ea-8fa8-399ec1475a74") 6391 | ) 6392 | (pin "44" 6393 | (uuid "1a2cf4e0-b96b-414b-9281-9a45c0c204eb") 6394 | ) 6395 | (pin "15" 6396 | (uuid "5de3c16a-f51f-48c6-9e06-44c69e245281") 6397 | ) 6398 | (pin "14" 6399 | (uuid "824b1005-4f79-4d78-92b5-ffff3e6af458") 6400 | ) 6401 | (pin "20" 6402 | (uuid "f542c825-dafb-4b3f-8eef-9648ba720723") 6403 | ) 6404 | (pin "23" 6405 | (uuid "beb589ff-bb61-4c8f-bc27-4eff0b166e97") 6406 | ) 6407 | (pin "36" 6408 | (uuid "a5dfb50e-b6a3-4845-9711-7efde16e145a") 6409 | ) 6410 | (pin "6" 6411 | (uuid "9d588d58-040c-4aab-8afe-32f7a343b221") 6412 | ) 6413 | (pin "30" 6414 | (uuid "7451df06-6858-4b18-819a-97566117dc5c") 6415 | ) 6416 | (pin "4" 6417 | (uuid "ca71ddf2-ab24-47e3-bc49-f0e5bc58d07a") 6418 | ) 6419 | (pin "46" 6420 | (uuid "e1ae4513-4a7d-468e-92f3-7b1bedac852c") 6421 | ) 6422 | (pin "9" 6423 | (uuid "7f4bdb1c-5df7-4ba0-abb6-1677e1a89515") 6424 | ) 6425 | (pin "37" 6426 | (uuid "fe182dbc-ba08-4be9-b5ac-8baa1b60f8f5") 6427 | ) 6428 | (pin "29" 6429 | (uuid "72853e66-34ed-4633-a5ad-431aa0b18cc0") 6430 | ) 6431 | (pin "31" 6432 | (uuid "af228892-8ef4-47b9-8c7f-522ea8385511") 6433 | ) 6434 | (pin "1" 6435 | (uuid "d43205a6-2b04-463b-81bd-a7e594b20ea5") 6436 | ) 6437 | (pin "35" 6438 | (uuid "ef4a8330-8581-445d-af33-71fc9636f774") 6439 | ) 6440 | (pin "5" 6441 | (uuid "4b5caa68-b6c9-4baf-930b-06fd30afcf24") 6442 | ) 6443 | (pin "3" 6444 | (uuid "a5eef3dd-222b-4fd0-a98d-ea4e2adf6044") 6445 | ) 6446 | (pin "43" 6447 | (uuid "18f0c58e-a348-4784-a728-42a44d8236ff") 6448 | ) 6449 | (pin "47" 6450 | (uuid "7f0956fa-892d-4f59-9459-225cc1f916be") 6451 | ) 6452 | (pin "24" 6453 | (uuid "9c98a8a4-4dd8-4336-a82a-56db99b661be") 6454 | ) 6455 | (pin "7" 6456 | (uuid "72589e9d-8164-4319-a7a0-7588eb7649db") 6457 | ) 6458 | (pin "2" 6459 | (uuid "935896ac-5b41-4646-bbbc-3e9fa666da39") 6460 | ) 6461 | (pin "45" 6462 | (uuid "795d1445-21e7-4e3a-a288-976213a34e15") 6463 | ) 6464 | (pin "39" 6465 | (uuid "e2bb600e-f0fd-4ca4-838e-7cfe19119057") 6466 | ) 6467 | (pin "22" 6468 | (uuid "3129f715-8e84-490d-943c-61a0edc47e53") 6469 | ) 6470 | (pin "32" 6471 | (uuid "3f9d4a08-1ebd-416e-b30d-d3093cccadb6") 6472 | ) 6473 | (pin "40" 6474 | (uuid "55730fbd-24ac-4e3d-9d11-f80ccdaa22ed") 6475 | ) 6476 | (pin "26" 6477 | (uuid "b151424a-b2fd-4e70-ad9b-7e271a61dc19") 6478 | ) 6479 | (pin "8" 6480 | (uuid "539f9dae-0a96-4575-8f57-8c1ef4592f5f") 6481 | ) 6482 | (instances 6483 | (project "" 6484 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6485 | (reference "U1") 6486 | (unit 2) 6487 | ) 6488 | ) 6489 | ) 6490 | ) 6491 | (symbol 6492 | (lib_id "power:+3V3") 6493 | (at 74.93 161.29 0) 6494 | (unit 1) 6495 | (exclude_from_sim no) 6496 | (in_bom yes) 6497 | (on_board yes) 6498 | (dnp no) 6499 | (uuid "ba9eb457-c04c-4fe1-a711-977d1c304a35") 6500 | (property "Reference" "#PWR0109" 6501 | (at 74.93 165.1 0) 6502 | (effects 6503 | (font 6504 | (size 1.27 1.27) 6505 | ) 6506 | (hide yes) 6507 | ) 6508 | ) 6509 | (property "Value" "+3V3" 6510 | (at 74.93 157.734 0) 6511 | (effects 6512 | (font 6513 | (size 1.27 1.27) 6514 | ) 6515 | ) 6516 | ) 6517 | (property "Footprint" "" 6518 | (at 74.93 161.29 0) 6519 | (effects 6520 | (font 6521 | (size 1.27 1.27) 6522 | ) 6523 | (hide yes) 6524 | ) 6525 | ) 6526 | (property "Datasheet" "" 6527 | (at 74.93 161.29 0) 6528 | (effects 6529 | (font 6530 | (size 1.27 1.27) 6531 | ) 6532 | (hide yes) 6533 | ) 6534 | ) 6535 | (property "Description" "Power symbol creates a global label with name \"+3V3\"" 6536 | (at 74.93 161.29 0) 6537 | (effects 6538 | (font 6539 | (size 1.27 1.27) 6540 | ) 6541 | (hide yes) 6542 | ) 6543 | ) 6544 | (pin "1" 6545 | (uuid "adaab3cc-5d7d-498f-990c-6df078a64f18") 6546 | ) 6547 | (instances 6548 | (project "HSLinkPro" 6549 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6550 | (reference "#PWR0109") 6551 | (unit 1) 6552 | ) 6553 | ) 6554 | ) 6555 | ) 6556 | (symbol 6557 | (lib_id "Switch:SW_Push") 6558 | (at 72.39 147.32 0) 6559 | (unit 1) 6560 | (exclude_from_sim no) 6561 | (in_bom yes) 6562 | (on_board yes) 6563 | (dnp no) 6564 | (fields_autoplaced yes) 6565 | (uuid "c6963864-0ade-400c-9381-88288b2ebbf4") 6566 | (property "Reference" "SW1" 6567 | (at 72.39 139.7 0) 6568 | (effects 6569 | (font 6570 | (size 1.27 1.27) 6571 | ) 6572 | ) 6573 | ) 6574 | (property "Value" "1TS028A-1900-0600-CT" 6575 | (at 72.39 142.24 0) 6576 | (effects 6577 | (font 6578 | (size 1.27 1.27) 6579 | ) 6580 | ) 6581 | ) 6582 | (property "Footprint" "My Switch:SW-SMD_4P-L2.8-W1.9-P1.20-LS3.0_1TS028A" 6583 | (at 72.39 142.24 0) 6584 | (effects 6585 | (font 6586 | (size 1.27 1.27) 6587 | ) 6588 | (hide yes) 6589 | ) 6590 | ) 6591 | (property "Datasheet" "~" 6592 | (at 72.39 142.24 0) 6593 | (effects 6594 | (font 6595 | (size 1.27 1.27) 6596 | ) 6597 | (hide yes) 6598 | ) 6599 | ) 6600 | (property "Description" "Push button switch, generic, two pins" 6601 | (at 72.39 147.32 0) 6602 | (effects 6603 | (font 6604 | (size 1.27 1.27) 6605 | ) 6606 | (hide yes) 6607 | ) 6608 | ) 6609 | (pin "1" 6610 | (uuid "622fe9ab-e4c2-4392-ae90-b359c2b56d85") 6611 | ) 6612 | (pin "2" 6613 | (uuid "4d596d47-36cb-4cd5-8213-dd8bbcacc333") 6614 | ) 6615 | (instances 6616 | (project "" 6617 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6618 | (reference "SW1") 6619 | (unit 1) 6620 | ) 6621 | ) 6622 | ) 6623 | ) 6624 | (symbol 6625 | (lib_id "Device:R") 6626 | (at 105.41 134.62 0) 6627 | (unit 1) 6628 | (exclude_from_sim no) 6629 | (in_bom yes) 6630 | (on_board yes) 6631 | (dnp no) 6632 | (uuid "ca0b7160-377d-439d-b05d-92589fc87a21") 6633 | (property "Reference" "R1" 6634 | (at 106.68 133.35 0) 6635 | (effects 6636 | (font 6637 | (size 1.27 1.27) 6638 | ) 6639 | (justify left) 6640 | ) 6641 | ) 6642 | (property "Value" "10k" 6643 | (at 106.68 135.89 0) 6644 | (effects 6645 | (font 6646 | (size 1.27 1.27) 6647 | ) 6648 | (justify left) 6649 | ) 6650 | ) 6651 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 6652 | (at 103.632 134.62 90) 6653 | (effects 6654 | (font 6655 | (size 1.27 1.27) 6656 | ) 6657 | (hide yes) 6658 | ) 6659 | ) 6660 | (property "Datasheet" "~" 6661 | (at 105.41 134.62 0) 6662 | (effects 6663 | (font 6664 | (size 1.27 1.27) 6665 | ) 6666 | (hide yes) 6667 | ) 6668 | ) 6669 | (property "Description" "Resistor" 6670 | (at 105.41 134.62 0) 6671 | (effects 6672 | (font 6673 | (size 1.27 1.27) 6674 | ) 6675 | (hide yes) 6676 | ) 6677 | ) 6678 | (pin "1" 6679 | (uuid "6aef14fe-c3e5-4302-8985-70b0693384ff") 6680 | ) 6681 | (pin "2" 6682 | (uuid "8e5cc461-de72-4fe7-9911-84562470d868") 6683 | ) 6684 | (instances 6685 | (project "" 6686 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6687 | (reference "R1") 6688 | (unit 1) 6689 | ) 6690 | ) 6691 | ) 6692 | ) 6693 | (symbol 6694 | (lib_id "power:VCC") 6695 | (at 138.43 129.54 0) 6696 | (unit 1) 6697 | (exclude_from_sim no) 6698 | (in_bom yes) 6699 | (on_board yes) 6700 | (dnp no) 6701 | (uuid "d10a7d9a-ca1e-4b18-9403-a755620c2b5f") 6702 | (property "Reference" "#PWR094" 6703 | (at 138.43 133.35 0) 6704 | (effects 6705 | (font 6706 | (size 1.27 1.27) 6707 | ) 6708 | (hide yes) 6709 | ) 6710 | ) 6711 | (property "Value" "TRANS_VCC" 6712 | (at 138.43 125.984 0) 6713 | (effects 6714 | (font 6715 | (size 1.27 1.27) 6716 | ) 6717 | ) 6718 | ) 6719 | (property "Footprint" "" 6720 | (at 138.43 129.54 0) 6721 | (effects 6722 | (font 6723 | (size 1.27 1.27) 6724 | ) 6725 | (hide yes) 6726 | ) 6727 | ) 6728 | (property "Datasheet" "" 6729 | (at 138.43 129.54 0) 6730 | (effects 6731 | (font 6732 | (size 1.27 1.27) 6733 | ) 6734 | (hide yes) 6735 | ) 6736 | ) 6737 | (property "Description" "Power symbol creates a global label with name \"VCC\"" 6738 | (at 138.43 129.54 0) 6739 | (effects 6740 | (font 6741 | (size 1.27 1.27) 6742 | ) 6743 | (hide yes) 6744 | ) 6745 | ) 6746 | (pin "1" 6747 | (uuid "1af233d7-7f39-4c9a-8ffb-abda459f345f") 6748 | ) 6749 | (instances 6750 | (project "HSLinkPro" 6751 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6752 | (reference "#PWR094") 6753 | (unit 1) 6754 | ) 6755 | ) 6756 | ) 6757 | ) 6758 | (symbol 6759 | (lib_id "Device:R") 6760 | (at 123.19 144.78 0) 6761 | (unit 1) 6762 | (exclude_from_sim no) 6763 | (in_bom yes) 6764 | (on_board yes) 6765 | (dnp no) 6766 | (uuid "f9fa8a99-9793-4547-bf05-d8a598940e1b") 6767 | (property "Reference" "R10" 6768 | (at 124.46 143.51 0) 6769 | (effects 6770 | (font 6771 | (size 1.27 1.27) 6772 | ) 6773 | (justify left) 6774 | ) 6775 | ) 6776 | (property "Value" "100k" 6777 | (at 124.46 146.05 0) 6778 | (effects 6779 | (font 6780 | (size 1.27 1.27) 6781 | ) 6782 | (justify left) 6783 | ) 6784 | ) 6785 | (property "Footprint" "Resistor_SMD:R_0402_1005Metric" 6786 | (at 121.412 144.78 90) 6787 | (effects 6788 | (font 6789 | (size 1.27 1.27) 6790 | ) 6791 | (hide yes) 6792 | ) 6793 | ) 6794 | (property "Datasheet" "~" 6795 | (at 123.19 144.78 0) 6796 | (effects 6797 | (font 6798 | (size 1.27 1.27) 6799 | ) 6800 | (hide yes) 6801 | ) 6802 | ) 6803 | (property "Description" "Resistor" 6804 | (at 123.19 144.78 0) 6805 | (effects 6806 | (font 6807 | (size 1.27 1.27) 6808 | ) 6809 | (hide yes) 6810 | ) 6811 | ) 6812 | (pin "1" 6813 | (uuid "43777802-14e9-4cd9-97e5-e195fdbaef19") 6814 | ) 6815 | (pin "2" 6816 | (uuid "7f4dfb15-5adb-4f5c-87a1-4116cba52944") 6817 | ) 6818 | (instances 6819 | (project "HSLinkPro" 6820 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 6821 | (reference "R10") 6822 | (unit 1) 6823 | ) 6824 | ) 6825 | ) 6826 | ) 6827 | (sheet 6828 | (at 243.84 16.51) 6829 | (size 33.02 38.1) 6830 | (fields_autoplaced yes) 6831 | (stroke 6832 | (width 0.1524) 6833 | (type solid) 6834 | ) 6835 | (fill 6836 | (color 0 0 0 0.0000) 6837 | ) 6838 | (uuid "730f2898-4f63-4d81-8a12-972da09fb379") 6839 | (property "Sheetname" "Interface " 6840 | (at 243.84 15.7984 0) 6841 | (effects 6842 | (font 6843 | (size 1.27 1.27) 6844 | ) 6845 | (justify left bottom) 6846 | ) 6847 | ) 6848 | (property "Sheetfile" "Interface.kicad_sch" 6849 | (at 243.84 55.1946 0) 6850 | (effects 6851 | (font 6852 | (size 1.27 1.27) 6853 | ) 6854 | (justify left top) 6855 | ) 6856 | ) 6857 | (pin "USB_D+" bidirectional 6858 | (at 276.86 27.94 0) 6859 | (effects 6860 | (font 6861 | (size 1.27 1.27) 6862 | ) 6863 | (justify right) 6864 | ) 6865 | (uuid "591b14e4-6c80-47e9-af1d-4d4bcc1000bd") 6866 | ) 6867 | (pin "USB_D-" bidirectional 6868 | (at 276.86 30.48 0) 6869 | (effects 6870 | (font 6871 | (size 1.27 1.27) 6872 | ) 6873 | (justify right) 6874 | ) 6875 | (uuid "50e3d2a7-615e-4038-ab09-f5b297527240") 6876 | ) 6877 | (pin "VREF" output 6878 | (at 243.84 20.32 180) 6879 | (effects 6880 | (font 6881 | (size 1.27 1.27) 6882 | ) 6883 | (justify left) 6884 | ) 6885 | (uuid "e1f48099-3a37-4e08-b9da-bdd5effe7db4") 6886 | ) 6887 | (pin "TRST" input 6888 | (at 243.84 33.02 180) 6889 | (effects 6890 | (font 6891 | (size 1.27 1.27) 6892 | ) 6893 | (justify left) 6894 | ) 6895 | (uuid "5ad2b8f8-e14d-45b1-aa70-072581f7c635") 6896 | ) 6897 | (pin "TDI" input 6898 | (at 243.84 27.94 180) 6899 | (effects 6900 | (font 6901 | (size 1.27 1.27) 6902 | ) 6903 | (justify left) 6904 | ) 6905 | (uuid "5a31c931-20e2-42cc-91af-4c8bd7147aec") 6906 | ) 6907 | (pin "UART_TX" input 6908 | (at 243.84 48.26 180) 6909 | (effects 6910 | (font 6911 | (size 1.27 1.27) 6912 | ) 6913 | (justify left) 6914 | ) 6915 | (uuid "07ef48ed-48fa-40f7-ad23-22b2ca227fae") 6916 | ) 6917 | (pin "UART_RX" output 6918 | (at 243.84 50.8 180) 6919 | (effects 6920 | (font 6921 | (size 1.27 1.27) 6922 | ) 6923 | (justify left) 6924 | ) 6925 | (uuid "bcb8a0c4-f25a-440d-a4f3-bc976c08dae4") 6926 | ) 6927 | (pin "UART_RTS" input 6928 | (at 243.84 45.72 180) 6929 | (effects 6930 | (font 6931 | (size 1.27 1.27) 6932 | ) 6933 | (justify left) 6934 | ) 6935 | (uuid "87b3999c-0e3c-44a7-ad5e-54dd3ecb1c67") 6936 | ) 6937 | (pin "UART_DTR" input 6938 | (at 243.84 43.18 180) 6939 | (effects 6940 | (font 6941 | (size 1.27 1.27) 6942 | ) 6943 | (justify left) 6944 | ) 6945 | (uuid "579fc3d4-f3f8-4e5d-a768-a7f799173c7f") 6946 | ) 6947 | (pin "SWDIO/TMS" bidirectional 6948 | (at 243.84 22.86 180) 6949 | (effects 6950 | (font 6951 | (size 1.27 1.27) 6952 | ) 6953 | (justify left) 6954 | ) 6955 | (uuid "036fcca5-a60c-48ae-9ff0-de7a19c318a7") 6956 | ) 6957 | (pin "SWCLK/TCK" input 6958 | (at 243.84 25.4 180) 6959 | (effects 6960 | (font 6961 | (size 1.27 1.27) 6962 | ) 6963 | (justify left) 6964 | ) 6965 | (uuid "99bb1116-5f35-45a6-ac08-be7b2c59e30f") 6966 | ) 6967 | (pin "TDO" output 6968 | (at 243.84 30.48 180) 6969 | (effects 6970 | (font 6971 | (size 1.27 1.27) 6972 | ) 6973 | (justify left) 6974 | ) 6975 | (uuid "57c41588-fe8e-4dca-8ada-e678d4a2e991") 6976 | ) 6977 | (pin "SRST" input 6978 | (at 243.84 36.83 180) 6979 | (effects 6980 | (font 6981 | (size 1.27 1.27) 6982 | ) 6983 | (justify left) 6984 | ) 6985 | (uuid "f84ad998-7d78-4720-a013-75a1d48491a7") 6986 | ) 6987 | (pin "POWER_OUT_EN" input 6988 | (at 276.86 50.8 0) 6989 | (effects 6990 | (font 6991 | (size 1.27 1.27) 6992 | ) 6993 | (justify right) 6994 | ) 6995 | (uuid "f8685cc3-3103-4af0-b3b9-129b5f03c91d") 6996 | ) 6997 | (instances 6998 | (project "HSLinkPro" 6999 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 7000 | (page "2") 7001 | ) 7002 | ) 7003 | ) 7004 | ) 7005 | (sheet 7006 | (at 193.04 16.51) 7007 | (size 43.18 38.1) 7008 | (fields_autoplaced yes) 7009 | (stroke 7010 | (width 0.1524) 7011 | (type solid) 7012 | ) 7013 | (fill 7014 | (color 0 0 0 0.0000) 7015 | ) 7016 | (uuid "abca0319-9393-450d-b9c4-cdce6b44cd17") 7017 | (property "Sheetname" "Logic Translation" 7018 | (at 193.04 15.7984 0) 7019 | (effects 7020 | (font 7021 | (size 1.27 1.27) 7022 | ) 7023 | (justify left bottom) 7024 | ) 7025 | ) 7026 | (property "Sheetfile" "LogicTranslation.kicad_sch" 7027 | (at 193.04 55.1946 0) 7028 | (effects 7029 | (font 7030 | (size 1.27 1.27) 7031 | ) 7032 | (justify left top) 7033 | ) 7034 | ) 7035 | (pin "TRST" input 7036 | (at 193.04 33.02 180) 7037 | (effects 7038 | (font 7039 | (size 1.27 1.27) 7040 | ) 7041 | (justify left) 7042 | ) 7043 | (uuid "4df8feab-18ee-4ee7-a70b-cc03018cfe6f") 7044 | ) 7045 | (pin "OUT_TRST" output 7046 | (at 236.22 33.02 0) 7047 | (effects 7048 | (font 7049 | (size 1.27 1.27) 7050 | ) 7051 | (justify right) 7052 | ) 7053 | (uuid "37dae413-c2b7-458f-9093-adfcca593ada") 7054 | ) 7055 | (pin "OUT_SRST" output 7056 | (at 236.22 36.83 0) 7057 | (effects 7058 | (font 7059 | (size 1.27 1.27) 7060 | ) 7061 | (justify right) 7062 | ) 7063 | (uuid "f85e611a-7c7b-4a12-a474-3f6c0baff504") 7064 | ) 7065 | (pin "SRST" input 7066 | (at 193.04 36.83 180) 7067 | (effects 7068 | (font 7069 | (size 1.27 1.27) 7070 | ) 7071 | (justify left) 7072 | ) 7073 | (uuid "7482c5c8-b666-4837-b93e-21434b90d247") 7074 | ) 7075 | (pin "UART_TX" input 7076 | (at 193.04 48.26 180) 7077 | (effects 7078 | (font 7079 | (size 1.27 1.27) 7080 | ) 7081 | (justify left) 7082 | ) 7083 | (uuid "7c3df74b-609d-4cc6-91d5-98100328a9be") 7084 | ) 7085 | (pin "OUT_UART_TX" output 7086 | (at 236.22 48.26 0) 7087 | (effects 7088 | (font 7089 | (size 1.27 1.27) 7090 | ) 7091 | (justify right) 7092 | ) 7093 | (uuid "96b0fb2a-e82a-47f1-84ce-f45a042b03b5") 7094 | ) 7095 | (pin "UART_RTS" input 7096 | (at 193.04 45.72 180) 7097 | (effects 7098 | (font 7099 | (size 1.27 1.27) 7100 | ) 7101 | (justify left) 7102 | ) 7103 | (uuid "f3fe78cb-c1e9-4aa3-8128-183fb4c35e0a") 7104 | ) 7105 | (pin "OUT_UART_RTS" output 7106 | (at 236.22 45.72 0) 7107 | (effects 7108 | (font 7109 | (size 1.27 1.27) 7110 | ) 7111 | (justify right) 7112 | ) 7113 | (uuid "650a9ebb-db0f-4ef5-bc75-2f4d4bde5d6c") 7114 | ) 7115 | (pin "UART_RX" output 7116 | (at 193.04 50.8 180) 7117 | (effects 7118 | (font 7119 | (size 1.27 1.27) 7120 | ) 7121 | (justify left) 7122 | ) 7123 | (uuid "704516ed-d407-430d-9046-3543ed2f0584") 7124 | ) 7125 | (pin "UART_DTR" input 7126 | (at 193.04 43.18 180) 7127 | (effects 7128 | (font 7129 | (size 1.27 1.27) 7130 | ) 7131 | (justify left) 7132 | ) 7133 | (uuid "e548de6a-49a5-40f4-bc31-b681ff5ba0ab") 7134 | ) 7135 | (pin "OUT_UART_DTR" output 7136 | (at 236.22 43.18 0) 7137 | (effects 7138 | (font 7139 | (size 1.27 1.27) 7140 | ) 7141 | (justify right) 7142 | ) 7143 | (uuid "88853732-8c9c-4284-88c8-fed92f55d6fe") 7144 | ) 7145 | (pin "OUT_UART_RX" input 7146 | (at 236.22 50.8 0) 7147 | (effects 7148 | (font 7149 | (size 1.27 1.27) 7150 | ) 7151 | (justify right) 7152 | ) 7153 | (uuid "dd304930-e172-4fc2-9a13-c7758f5f7598") 7154 | ) 7155 | (pin "TDO" output 7156 | (at 193.04 30.48 180) 7157 | (effects 7158 | (font 7159 | (size 1.27 1.27) 7160 | ) 7161 | (justify left) 7162 | ) 7163 | (uuid "700b00d8-34dd-4dac-85eb-6dfe2ba691e8") 7164 | ) 7165 | (pin "OUT_TDO" input 7166 | (at 236.22 30.48 0) 7167 | (effects 7168 | (font 7169 | (size 1.27 1.27) 7170 | ) 7171 | (justify right) 7172 | ) 7173 | (uuid "064c662f-3a72-4661-8ef6-5d4f516b0f17") 7174 | ) 7175 | (pin "OUT_SWCLK{slash}TCK" output 7176 | (at 236.22 25.4 0) 7177 | (effects 7178 | (font 7179 | (size 1.27 1.27) 7180 | ) 7181 | (justify right) 7182 | ) 7183 | (uuid "0d86540e-d0f9-4d76-b7b5-9d991b1ef343") 7184 | ) 7185 | (pin "SWCLK{slash}TCK" input 7186 | (at 193.04 25.4 180) 7187 | (effects 7188 | (font 7189 | (size 1.27 1.27) 7190 | ) 7191 | (justify left) 7192 | ) 7193 | (uuid "20f5fb7f-482e-491d-bb05-706eded13399") 7194 | ) 7195 | (pin "TDI" input 7196 | (at 193.04 27.94 180) 7197 | (effects 7198 | (font 7199 | (size 1.27 1.27) 7200 | ) 7201 | (justify left) 7202 | ) 7203 | (uuid "f669029b-0b83-4b38-94f9-3f77049e45e1") 7204 | ) 7205 | (pin "OUT_TDI" output 7206 | (at 236.22 27.94 0) 7207 | (effects 7208 | (font 7209 | (size 1.27 1.27) 7210 | ) 7211 | (justify right) 7212 | ) 7213 | (uuid "3f59ec73-cfdc-4ed4-aa89-13a102b92f1e") 7214 | ) 7215 | (pin "SWDIO_DIR" input 7216 | (at 193.04 17.78 180) 7217 | (effects 7218 | (font 7219 | (size 1.27 1.27) 7220 | ) 7221 | (justify left) 7222 | ) 7223 | (uuid "2e10a03a-71d7-4ab4-b09c-c01c1964ef26") 7224 | ) 7225 | (pin "SWDIO{slash}TMS" bidirectional 7226 | (at 193.04 22.86 180) 7227 | (effects 7228 | (font 7229 | (size 1.27 1.27) 7230 | ) 7231 | (justify left) 7232 | ) 7233 | (uuid "b33bdf17-41b0-47f1-b002-a03c6e29dc49") 7234 | ) 7235 | (pin "OUT_SWDIO{slash}TMS" bidirectional 7236 | (at 236.22 22.86 0) 7237 | (effects 7238 | (font 7239 | (size 1.27 1.27) 7240 | ) 7241 | (justify right) 7242 | ) 7243 | (uuid "9d92fcec-dc18-4ba1-aba6-c7467db74c97") 7244 | ) 7245 | (instances 7246 | (project "HSLinkPro" 7247 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 7248 | (page "3") 7249 | ) 7250 | ) 7251 | ) 7252 | ) 7253 | (sheet 7254 | (at 193.04 78.74) 7255 | (size 35.56 38.1) 7256 | (fields_autoplaced yes) 7257 | (stroke 7258 | (width 0.1524) 7259 | (type solid) 7260 | ) 7261 | (fill 7262 | (color 0 0 0 0.0000) 7263 | ) 7264 | (uuid "d31437bf-2808-4f02-aab9-6400267805be") 7265 | (property "Sheetname" "Power" 7266 | (at 193.04 78.0284 0) 7267 | (effects 7268 | (font 7269 | (size 1.27 1.27) 7270 | ) 7271 | (justify left bottom) 7272 | ) 7273 | ) 7274 | (property "Sheetfile" "Power.kicad_sch" 7275 | (at 193.04 117.4246 0) 7276 | (effects 7277 | (font 7278 | (size 1.27 1.27) 7279 | ) 7280 | (justify left top) 7281 | ) 7282 | ) 7283 | (pin "TRANS_PWM" input 7284 | (at 193.04 82.55 180) 7285 | (effects 7286 | (font 7287 | (size 1.27 1.27) 7288 | ) 7289 | (justify left) 7290 | ) 7291 | (uuid "2c421f92-e6b8-4ae2-acc4-001e9fddbc2d") 7292 | ) 7293 | (instances 7294 | (project "HSLinkPro" 7295 | (path "/5e2c1440-f6a4-4887-af75-aa6afc882006" 7296 | (page "4") 7297 | ) 7298 | ) 7299 | ) 7300 | ) 7301 | (sheet_instances 7302 | (path "/" 7303 | (page "1") 7304 | ) 7305 | ) 7306 | ) 7307 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # HSLinkPro 2 | 3 | ## 本仓库不再更新!! 4 | 5 | 新的参考设计: 6 | 7 | HSLink Pro是一款基于HPM5301系列MCU的调试器。最高SWD/JTAG通信速率可达80M,并且拥有一路USB转串口,并带有DTR与RTS的输出,方便某些串口下载的MCU应用。 8 | 9 | HSLink Pro软件参考。 10 | 11 | ## KiCAD 版本 12 | 13 | 使用8.0以上版本的KiCAD打开。 14 | --------------------------------------------------------------------------------