initial commit

This commit is contained in:
linuswck 2024-12-11 12:02:32 +08:00
commit b0294fc48d
12 changed files with 326894 additions and 0 deletions

34
.gitignore vendored Normal file
View File

@ -0,0 +1,34 @@
# For PCBs designed using KiCad: https://www.kicad.org/
# Format documentation: https://kicad.org/help/file-formats/
# Temporary files
*.000
*.cache
*.config
*.local
*.bak
*.bck
*.kicad_pcb-bak
*.kicad_sch-bak
*-backups
*.kicad_prl
*.sch-bak
*~
_autosave-*
*.tmp
*-save.pro
*-save.kicad_pcb
fp-info-cache
*auto_saved_files*
~*
__pycache__
# Netlist files (exported from Eeschema)
*.net
# Autorouter files (exported from Pcbnew)
*.dsn
*.ses
# Generated Production Files
result

7
README.md Normal file
View File

@ -0,0 +1,7 @@
# Shuttler AFE Breakout Board
This breakout board is designed for internal testing and development purpose. It has 1 SMA output header per Shuttler AFE Output Channel.
# Development Environment
- Drawn in KiCad 8.0
- `nix develop` to get the correct KiCad version
- `nix build .` to generate the PCB production files.

44
flake.lock generated Normal file
View File

@ -0,0 +1,44 @@
{
"nodes": {
"kicad_bom_generator": {
"flake": false,
"locked": {
"lastModified": 1702353729,
"narHash": "sha256-NIM/GLC71VdGdMletBBv9lSPuHpgD9zzeGiVQLEAULA=",
"ref": "refs/heads/main",
"rev": "72686f5556785c9aa13678dc42757dddfb7d7c23",
"revCount": 2,
"type": "git",
"url": "https://git.m-labs.hk/M-Labs/KiCAD_BOM_Generator.git"
},
"original": {
"type": "git",
"url": "https://git.m-labs.hk/M-Labs/KiCAD_BOM_Generator.git"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1733550349,
"narHash": "sha256-NcGumB4Lr6KSDq+nIqXtNA8QwAQKDSZT7N9OTGWbTrs=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e2605d0744c2417b09f8bf850dfca42fcf537d34",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-24.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"kicad_bom_generator": "kicad_bom_generator",
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

67
flake.nix Normal file
View File

@ -0,0 +1,67 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
inputs.kicad_bom_generator = {
url = "git+https://git.m-labs.hk/M-Labs/KiCAD_BOM_Generator.git";
flake = false;
};
outputs = { self, nixpkgs, kicad_bom_generator }: {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt;
devShells.x86_64-linux.default =
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
in pkgs.mkShell {
name = "kicad-dev-shell";
buildInputs = [ pkgs.kicad ];
};
defaultPackage.x86_64-linux =
with import nixpkgs { system = "x86_64-linux"; };
stdenv.mkDerivation {
name = "production_files";
src = ./src;
nativeBuildInputs = [ pkgs.kicad pkgs.zip pkgs.python3 ];
buildPhase = ''
# kicad-cli requires the use of $HOME
TMP_DIR="$(mktemp --tmpdir -d kicad-shuttler_afe_breakout_board.XXXXXXX)"
export HOME=$TMP_DIR
SCH=shuttler_afe_breakout_board.kicad_sch
PCB=shuttler_afe_breakout_board.kicad_pcb
# Get Revision Number from the Title Block in KiCAD Top Schematics
REV=$(cat $SCH | grep rev | cut -d'"' -f 2)
PREFIX=shuttler_afe_breakout_board_$REV
kicad-cli sch export python-bom $SCH -o $PREFIX"_bom".xml
export PYTHONPATH=${pkgs.kicad.base}/share/kicad/plugins
python ${kicad_bom_generator}/generate_bom_from_xml.py $PREFIX"_bom".xml $PREFIX"_bom".csv
kicad-cli sch export pdf $SCH -o $PREFIX.pdf
kicad-cli pcb export pos $PCB --format csv --units mm -o $PREFIX"_pos".csv
export KICAD7_3DMODEL_DIR=${pkgs.kicad.libraries.packages3d}/share/kicad/3dmodels
kicad-cli pcb export step $PCB --subst-models --force -o $PREFIX.step
mkdir -p $PREFIX"_gerber_drill"
kicad-cli pcb export gerbers $PCB -l 'F.Cu,B.Cu,F.Paste,B.Paste,F.Silkscreen,B.Silkscreen,F.Mask,B.Mask,Edge.Cuts' --no-x2 --subtract-soldermask -o ./$PREFIX"_gerber_drill"
# The additional trailing slash is due to a bug in the kicad-cli tool. https://gitlab.com/kicad/code/kicad/-/issues/14438
kicad-cli pcb export drill $PCB -u mm --generate-map --map-format gerberx2 -o ./$PREFIX"_gerber_drill"/
zip -r -j $PREFIX"_gerber_drill" $PREFIX"_gerber_drill"
'';
installPhase = ''
mkdir -p $out/production_files
cp $PREFIX"_bom".csv $out/production_files/$PREFIX"_bom".csv
cp $PREFIX.pdf $out/production_files/$PREFIX.pdf
cp $PREFIX"_pos".csv $out/production_files/$PREFIX"_pos.csv"
cp $PREFIX.step $out/production_files/$PREFIX.step
cp $PREFIX"_gerber_drill".zip $out/production_files/$PREFIX"_gerber_drill".zip
'';
};
};
}

4
src/fp-lib-table Normal file
View File

@ -0,0 +1,4 @@
(fp_lib_table
(version 7)
(lib (name "shuttler_afe_test_card")(type "KiCad")(uri "${KIPRJMOD}/shuttler_afe_breakout_board.pretty")(options "")(descr ""))
)

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,606 @@
{
"board": {
"3dviewports": [],
"design_settings": {
"defaults": {
"board_outline_line_width": 0.09999999999999999,
"copper_line_width": 0.19999999999999998,
"copper_text_italic": false,
"copper_text_size_h": 1.5,
"copper_text_size_v": 1.5,
"copper_text_thickness": 0.3,
"copper_text_upright": false,
"courtyard_line_width": 0.049999999999999996,
"dimension_precision": 4,
"dimension_units": 3,
"dimensions": {
"arrow_length": 1270000,
"extension_offset": 500000,
"keep_text_aligned": true,
"suppress_zeroes": false,
"text_position": 0,
"units_format": 1
},
"fab_line_width": 0.09999999999999999,
"fab_text_italic": false,
"fab_text_size_h": 1.0,
"fab_text_size_v": 1.0,
"fab_text_thickness": 0.15,
"fab_text_upright": false,
"other_line_width": 0.15,
"other_text_italic": false,
"other_text_size_h": 1.0,
"other_text_size_v": 1.0,
"other_text_thickness": 0.15,
"other_text_upright": false,
"pads": {
"drill": 0.762,
"height": 1.524,
"width": 1.524
},
"silk_line_width": 0.15,
"silk_text_italic": false,
"silk_text_size_h": 1.0,
"silk_text_size_v": 1.0,
"silk_text_thickness": 0.15,
"silk_text_upright": false,
"zones": {
"min_clearance": 0.5
}
},
"diff_pair_dimensions": [],
"drc_exclusions": [],
"meta": {
"version": 2
},
"rule_severities": {
"annular_width": "error",
"clearance": "error",
"connection_width": "warning",
"copper_edge_clearance": "error",
"copper_sliver": "warning",
"courtyards_overlap": "error",
"diff_pair_gap_out_of_range": "error",
"diff_pair_uncoupled_length_too_long": "error",
"drill_out_of_range": "error",
"duplicate_footprints": "warning",
"extra_footprint": "warning",
"footprint": "error",
"footprint_type_mismatch": "ignore",
"hole_clearance": "error",
"hole_near_hole": "error",
"invalid_outline": "error",
"isolated_copper": "warning",
"item_on_disabled_layer": "error",
"items_not_allowed": "error",
"length_out_of_range": "error",
"lib_footprint_issues": "warning",
"lib_footprint_mismatch": "warning",
"malformed_courtyard": "error",
"microvia_drill_out_of_range": "error",
"missing_courtyard": "ignore",
"missing_footprint": "warning",
"net_conflict": "warning",
"npth_inside_courtyard": "ignore",
"padstack": "warning",
"pth_inside_courtyard": "ignore",
"shorting_items": "error",
"silk_edge_clearance": "warning",
"silk_over_copper": "warning",
"silk_overlap": "warning",
"skew_out_of_range": "error",
"solder_mask_bridge": "error",
"starved_thermal": "error",
"text_height": "warning",
"text_thickness": "warning",
"through_hole_pad_without_hole": "error",
"too_many_vias": "error",
"track_dangling": "warning",
"track_width": "error",
"tracks_crossing": "error",
"unconnected_items": "error",
"unresolved_variable": "error",
"via_dangling": "warning",
"zones_intersect": "error"
},
"rules": {
"max_error": 0.005,
"min_clearance": 0.0,
"min_connection": 0.0,
"min_copper_edge_clearance": 0.5,
"min_hole_clearance": 0.25,
"min_hole_to_hole": 0.25,
"min_microvia_diameter": 0.19999999999999998,
"min_microvia_drill": 0.09999999999999999,
"min_resolved_spokes": 2,
"min_silk_clearance": 0.0,
"min_text_height": 0.7999999999999999,
"min_text_thickness": 0.08,
"min_through_hole_diameter": 0.3,
"min_track_width": 0.0,
"min_via_annular_width": 0.09999999999999999,
"min_via_diameter": 0.5,
"solder_mask_clearance": 0.0,
"solder_mask_min_width": 0.0,
"solder_mask_to_copper_clearance": 0.0,
"use_height_for_length_calcs": true
},
"teardrop_options": [
{
"td_allow_use_two_tracks": true,
"td_curve_segcount": 5,
"td_on_pad_in_zone": false,
"td_onpadsmd": true,
"td_onroundshapesonly": false,
"td_ontrackend": false,
"td_onviapad": true
}
],
"teardrop_parameters": [
{
"td_curve_segcount": 0,
"td_height_ratio": 1.0,
"td_length_ratio": 0.5,
"td_maxheight": 2.0,
"td_maxlen": 1.0,
"td_target_name": "td_round_shape",
"td_width_to_size_filter_ratio": 0.9
},
{
"td_curve_segcount": 0,
"td_height_ratio": 1.0,
"td_length_ratio": 0.5,
"td_maxheight": 2.0,
"td_maxlen": 1.0,
"td_target_name": "td_rect_shape",
"td_width_to_size_filter_ratio": 0.9
},
{
"td_curve_segcount": 0,
"td_height_ratio": 1.0,
"td_length_ratio": 0.5,
"td_maxheight": 2.0,
"td_maxlen": 1.0,
"td_target_name": "td_track_end",
"td_width_to_size_filter_ratio": 0.9
}
],
"track_widths": [],
"via_dimensions": [],
"zones_allow_external_fillets": false
},
"ipc2581": {
"dist": "",
"distpn": "",
"internal_id": "",
"mfg": "",
"mpn": ""
},
"layer_presets": [],
"viewports": []
},
"boards": [],
"cvpcb": {
"equivalence_files": []
},
"erc": {
"erc_exclusions": [],
"meta": {
"version": 0
},
"pin_map": [
[
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
2
],
[
0,
2,
0,
1,
0,
0,
1,
0,
2,
2,
2,
2
],
[
0,
0,
0,
0,
0,
0,
1,
0,
1,
0,
1,
2
],
[
0,
1,
0,
0,
0,
0,
1,
1,
2,
1,
1,
2
],
[
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
2
],
[
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
2
],
[
1,
1,
1,
1,
1,
0,
1,
1,
1,
1,
1,
2
],
[
0,
0,
0,
1,
0,
0,
1,
0,
0,
0,
0,
2
],
[
0,
2,
1,
2,
0,
0,
1,
0,
2,
2,
2,
2
],
[
0,
2,
0,
1,
0,
0,
1,
0,
2,
0,
0,
2
],
[
0,
2,
1,
1,
0,
0,
1,
0,
2,
0,
0,
2
],
[
2,
2,
2,
2,
2,
2,
2,
2,
2,
2,
2,
2
]
],
"rule_severities": {
"bus_definition_conflict": "error",
"bus_entry_needed": "error",
"bus_to_bus_conflict": "error",
"bus_to_net_conflict": "error",
"conflicting_netclasses": "error",
"different_unit_footprint": "error",
"different_unit_net": "error",
"duplicate_reference": "error",
"duplicate_sheet_names": "error",
"endpoint_off_grid": "warning",
"extra_units": "error",
"global_label_dangling": "warning",
"hier_label_mismatch": "error",
"label_dangling": "error",
"lib_symbol_issues": "warning",
"missing_bidi_pin": "warning",
"missing_input_pin": "warning",
"missing_power_pin": "error",
"missing_unit": "warning",
"multiple_net_names": "warning",
"net_not_bus_member": "warning",
"no_connect_connected": "warning",
"no_connect_dangling": "warning",
"pin_not_connected": "error",
"pin_not_driven": "error",
"pin_to_pin": "warning",
"power_pin_not_driven": "error",
"similar_labels": "warning",
"simulation_model_issue": "ignore",
"unannotated": "error",
"unit_value_mismatch": "error",
"unresolved_variable": "error",
"wire_dangling": "error"
}
},
"libraries": {
"pinned_footprint_libs": [],
"pinned_symbol_libs": []
},
"meta": {
"filename": "shuttler_afe_breakout_board.kicad_pro",
"version": 1
},
"net_settings": {
"classes": [
{
"bus_width": 12,
"clearance": 0.2,
"diff_pair_gap": 0.25,
"diff_pair_via_gap": 0.25,
"diff_pair_width": 0.2,
"line_style": 0,
"microvia_diameter": 0.3,
"microvia_drill": 0.1,
"name": "Default",
"pcb_color": "rgba(0, 0, 0, 0.000)",
"schematic_color": "rgba(0, 0, 0, 0.000)",
"track_width": 0.25,
"via_diameter": 0.8,
"via_drill": 0.4,
"wire_width": 6
}
],
"meta": {
"version": 3
},
"net_colors": null,
"netclass_assignments": null,
"netclass_patterns": []
},
"pcbnew": {
"last_paths": {
"gencad": "",
"idf": "",
"netlist": "",
"plot": "",
"pos_files": "",
"specctra_dsn": "",
"step": "",
"svg": "",
"vrml": ""
},
"page_layout_descr_file": ""
},
"schematic": {
"annotate_start_num": 0,
"bom_export_filename": "",
"bom_fmt_presets": [],
"bom_fmt_settings": {
"field_delimiter": ",",
"keep_line_breaks": false,
"keep_tabs": false,
"name": "CSV",
"ref_delimiter": ",",
"ref_range_delimiter": "",
"string_delimiter": "\""
},
"bom_presets": [],
"bom_settings": {
"exclude_dnp": false,
"fields_ordered": [
{
"group_by": false,
"label": "Reference",
"name": "Reference",
"show": true
},
{
"group_by": true,
"label": "Value",
"name": "Value",
"show": true
},
{
"group_by": false,
"label": "Datasheet",
"name": "Datasheet",
"show": true
},
{
"group_by": false,
"label": "Footprint",
"name": "Footprint",
"show": true
},
{
"group_by": false,
"label": "Qty",
"name": "${QUANTITY}",
"show": true
},
{
"group_by": true,
"label": "DNP",
"name": "${DNP}",
"show": true
},
{
"group_by": false,
"label": "#",
"name": "${ITEM_NUMBER}",
"show": false
},
{
"group_by": false,
"label": "Height",
"name": "Height",
"show": false
},
{
"group_by": false,
"label": "MFR_PN",
"name": "MFR_PN",
"show": false
},
{
"group_by": false,
"label": "MFR_PN_ALT",
"name": "MFR_PN_ALT",
"show": false
},
{
"group_by": false,
"label": "Manufacturer_Name",
"name": "Manufacturer_Name",
"show": false
},
{
"group_by": false,
"label": "Manufacturer_Part_Number",
"name": "Manufacturer_Part_Number",
"show": false
},
{
"group_by": false,
"label": "Mouser Part Number",
"name": "Mouser Part Number",
"show": false
},
{
"group_by": false,
"label": "Mouser Price/Stock",
"name": "Mouser Price/Stock",
"show": false
},
{
"group_by": false,
"label": "Description",
"name": "Description",
"show": false
}
],
"filter_string": "",
"group_symbols": true,
"name": "",
"sort_asc": true,
"sort_field": "Reference"
},
"connection_grid_size": 50.0,
"drawing": {
"dashed_lines_dash_length_ratio": 12.0,
"dashed_lines_gap_length_ratio": 3.0,
"default_line_thickness": 6.0,
"default_text_size": 50.0,
"field_names": [],
"intersheets_ref_own_page": false,
"intersheets_ref_prefix": "",
"intersheets_ref_short": false,
"intersheets_ref_show": false,
"intersheets_ref_suffix": "",
"junction_size_choice": 3,
"label_size_ratio": 0.375,
"operating_point_overlay_i_precision": 3,
"operating_point_overlay_i_range": "~A",
"operating_point_overlay_v_precision": 3,
"operating_point_overlay_v_range": "~V",
"overbar_offset_ratio": 1.23,
"pin_symbol_size": 25.0,
"text_offset_ratio": 0.15
},
"legacy_lib_dir": "",
"legacy_lib_list": [],
"meta": {
"version": 1
},
"net_format_name": "",
"page_layout_descr_file": "",
"plot_directory": "",
"spice_current_sheet_as_root": false,
"spice_external_command": "spice \"%I\"",
"spice_model_current_sheet_as_root": true,
"spice_save_all_currents": false,
"spice_save_all_dissipations": false,
"spice_save_all_voltages": false,
"subpart_first_id": 65,
"subpart_id_separator": 0
},
"sheets": [
[
"27b59b7d-14ca-4f21-b840-1f415245a5f5",
"Root"
]
],
"text_variables": {}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,606 @@
(footprint "L717SDB25PA4CH3F"
(version 20240108)
(generator "pcbnew")
(generator_version "8.0")
(layer "F.Cu")
(descr "L717SDB25PA4CH3F-3")
(tags "Connector")
(property "Reference" "REF**"
(at 0 -5.5 0)
(layer "F.SilkS")
(uuid "e8db04b7-cbc1-478a-a449-ba5596670074")
(effects
(font
(size 1 1)
(thickness 0.1)
)
)
)
(property "Value" "L717SDB25PA4CH3F"
(at 16.62 6.92 0)
(layer "F.SilkS")
(hide yes)
(uuid "aab2392a-f389-4857-85b5-3325d0647a38")
(effects
(font
(size 1.27 1.27)
(thickness 0.254)
)
)
)
(property "Footprint" ""
(at 0 0 0)
(layer "F.Fab")
(hide yes)
(uuid "8484c2f7-d6f3-4090-b580-986a2fbb593c")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Datasheet" ""
(at 0 0 0)
(layer "F.Fab")
(hide yes)
(uuid "ee07fb93-10e9-4a91-997c-d8997393985e")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(property "Description" ""
(at 0 0 0)
(layer "F.Fab")
(hide yes)
(uuid "f401cf00-0a2a-46fd-a763-9b8c13f8f4b9")
(effects
(font
(size 1.27 1.27)
(thickness 0.15)
)
)
)
(attr through_hole)
(fp_line
(start -9.905 -3.1)
(end 43.145 -3.1)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "eb4370e3-d46d-4fff-a598-8367a2f3b6a2")
)
(fp_line
(start -9.905 10.94)
(end -9.905 -3.1)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "93804e2c-c069-4c27-9ede-057533ead2b1")
)
(fp_line
(start -8.38 10.94)
(end -8.38 16.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "bf1485ce-db9e-4db1-890b-f8cda2d472f0")
)
(fp_line
(start -8.38 16.94)
(end -3.38 16.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "9f2ba8e0-94ed-4e2d-a039-f56765aef7b5")
)
(fp_line
(start -3.38 16.94)
(end -3.38 10.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "006fd8c1-c9fb-4953-a675-c94963882e31")
)
(fp_line
(start -1.38 10.94)
(end -1.38 16.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "d9e4fdeb-e0cb-4ac7-9a8f-ce34dcff4ce8")
)
(fp_line
(start -1.38 16.94)
(end 34.62 16.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "c944c564-0265-42bc-a917-a6deaf0f96fe")
)
(fp_line
(start 34.62 16.94)
(end 34.62 10.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "f5e5c789-c111-47cc-bcd4-e37e624ee74c")
)
(fp_line
(start 36.62 10.94)
(end 36.62 16.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "ce5cc63a-eaef-4dd0-8fb6-2249db31b113")
)
(fp_line
(start 36.62 16.94)
(end 41.62 16.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "88c54d1d-ce5e-4b9e-b8ba-49903fccf6e7")
)
(fp_line
(start 41.62 16.94)
(end 41.62 10.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "52c6895f-d372-4624-a492-78b6810706fd")
)
(fp_line
(start 43.145 -3.1)
(end 43.145 10.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "b2152ff8-9533-4273-9269-d7c237af9f78")
)
(fp_line
(start 43.145 10.94)
(end -9.905 10.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.SilkS")
(uuid "c03b2aa0-3a8b-42b2-8df5-9d8ce7165352")
)
(fp_line
(start -10.905 -4.1)
(end 44.145 -4.1)
(stroke
(width 0.1)
(type solid)
)
(layer "F.CrtYd")
(uuid "2919e58c-4f87-4273-9ad5-ca6fe3c44d57")
)
(fp_line
(start -10.905 17.94)
(end -10.905 -4.1)
(stroke
(width 0.1)
(type solid)
)
(layer "F.CrtYd")
(uuid "f5c2be70-533b-4480-9b86-7293febf6e8f")
)
(fp_line
(start 44.145 -4.1)
(end 44.145 17.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.CrtYd")
(uuid "c795913b-4f16-4b16-8575-9f83ccf70d78")
)
(fp_line
(start 44.145 17.94)
(end -10.905 17.94)
(stroke
(width 0.1)
(type solid)
)
(layer "F.CrtYd")
(uuid "92e11cf2-6528-4094-8182-cc8b26a8c469")
)
(fp_line
(start -9.905 -3.1)
(end 43.145 -3.1)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "e58a0236-5060-48c4-9aca-1f4989b25ecb")
)
(fp_line
(start -9.905 10.94)
(end -9.905 -3.1)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "31dd5a10-d84d-49d9-b59a-e6da7326fa62")
)
(fp_line
(start -8.38 10.94)
(end -8.38 16.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "f57312be-4538-41d2-be55-87dbb661a488")
)
(fp_line
(start -8.38 16.94)
(end -3.38 16.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "c4aab20e-49e1-48f3-9acd-716207a54599")
)
(fp_line
(start -3.38 16.94)
(end -3.38 10.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "1ddc0b48-b873-4d44-8d91-5d5a9800b306")
)
(fp_line
(start -1.38 10.94)
(end -1.38 16.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "f9dedf37-3fe2-4318-bb36-31b998ae6819")
)
(fp_line
(start -1.38 16.94)
(end 34.62 16.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "ac5b7f5a-e319-4212-883b-dbcc1201c41a")
)
(fp_line
(start 34.62 16.94)
(end 34.62 10.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "e7ffe4d3-394f-4839-8584-701923733c07")
)
(fp_line
(start 36.62 10.94)
(end 36.62 16.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "05c7e8ce-166e-4181-9727-a24b81e09049")
)
(fp_line
(start 36.62 16.94)
(end 41.62 16.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "d50fb1b8-59ab-4458-a623-d0e3ac8a9b2d")
)
(fp_line
(start 41.62 16.94)
(end 41.62 10.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "97a7134f-461d-441e-8d0d-a5e27a45a477")
)
(fp_line
(start 43.145 -3.1)
(end 43.145 10.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "a9897503-e7ec-4f50-b7bd-8879627173e3")
)
(fp_line
(start 43.145 10.94)
(end -9.905 10.94)
(stroke
(width 0.2)
(type solid)
)
(layer "F.Fab")
(uuid "133d05f9-4272-4bd5-967d-08c3567d187d")
)
(fp_text user "${REFERENCE}"
(at 16.62 6.92 0)
(layer "F.Fab")
(uuid "4eae339f-b750-4b33-9f14-2227a626768f")
(effects
(font
(size 1.27 1.27)
(thickness 0.254)
)
)
)
(pad "1" thru_hole circle
(at 0 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "c6e739aa-b726-4b5f-b70b-7cbf563b98a6")
)
(pad "2" thru_hole circle
(at 2.77 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "68bac080-8de2-47bb-9794-2fd7dccad498")
)
(pad "3" thru_hole circle
(at 5.54 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "4e74be25-3dab-4501-9c21-a0d15800bc62")
)
(pad "4" thru_hole circle
(at 8.31 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "3f05d3b6-b5ec-43dd-9e18-c8b9a37c664b")
)
(pad "5" thru_hole circle
(at 11.08 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "7d633a2c-d8cf-4e85-b6cf-3d1419f64681")
)
(pad "6" thru_hole circle
(at 13.85 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "b1d839d9-1a5a-482c-bb49-45719fbb200d")
)
(pad "7" thru_hole circle
(at 16.62 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "10b83ef0-9e71-44df-84f3-650997cca189")
)
(pad "8" thru_hole circle
(at 19.39 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "c08199ea-5717-43e8-a615-3319450c3a66")
)
(pad "9" thru_hole circle
(at 22.16 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "74b7e960-4538-4a42-97f7-ab52e9646d28")
)
(pad "10" thru_hole circle
(at 24.93 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "47af13c5-affd-4fed-a564-dca61d17ae40")
)
(pad "11" thru_hole circle
(at 27.7 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "50f24e61-e03b-49a2-a833-7ad6d007a087")
)
(pad "12" thru_hole circle
(at 30.47 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "c5f6ce68-36f7-44fb-9f88-b5a728b1f1dc")
)
(pad "13" thru_hole circle
(at 33.24 0)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "b9200d3b-da7b-417f-8ee1-d3407a1c6450")
)
(pad "14" thru_hole circle
(at 1.385 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "6c75e42f-0367-48b1-9c2b-bb3a8066845b")
)
(pad "15" thru_hole circle
(at 4.155 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "cb639621-519b-474a-bbf4-3663d658b238")
)
(pad "16" thru_hole circle
(at 6.925 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "d08c68e1-34bb-4432-823b-eba7c9c1e7ca")
)
(pad "17" thru_hole circle
(at 9.695 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "b0526656-bc75-428c-9e82-82f4be46a7f6")
)
(pad "18" thru_hole circle
(at 12.465 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "2e4eb36a-0dd0-408c-a07a-09c1fa5dd328")
)
(pad "19" thru_hole circle
(at 15.235 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "20d3b7d9-c1a9-4295-b85e-5e18fa1d8d16")
)
(pad "20" thru_hole circle
(at 18.005 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "e78dd36f-a96c-44a8-820e-ab114f6c4149")
)
(pad "21" thru_hole circle
(at 20.775 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "10a72a2d-c1d8-4049-8ab6-3f700a28f29d")
)
(pad "22" thru_hole circle
(at 23.545 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "4ce3377e-e1b9-49f7-8bad-0e0b7f087974")
)
(pad "23" thru_hole circle
(at 26.315 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "9f1cb68d-1790-41ff-9b5b-169e5596d4df")
)
(pad "24" thru_hole circle
(at 29.085 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "3409b0ed-2c2a-42c3-bd43-ece60bb9dbad")
)
(pad "25" thru_hole circle
(at 31.855 2.84)
(size 1.575 1.575)
(drill 1.05)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "03853450-73e6-4c05-8d2b-b7759b9474d4")
)
(pad "MH1" thru_hole circle
(at -6.9 1.42)
(size 4.65 4.65)
(drill 3.1)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "79360ca9-c4e0-4acc-81c9-8be080371da7")
)
(pad "MH2" thru_hole circle
(at 40.14 1.42)
(size 4.65 4.65)
(drill 3.1)
(layers "*.Cu" "*.Mask")
(remove_unused_layers no)
(uuid "9c76652c-b61c-4648-909b-819272a217cd")
)
(model "${KIPRJMOD}/shuttler_afe_breakout_board.pretty/3D/L717SDB25PA4CH3F.stp"
(offset
(xyz 41 -27.25 -2.5)
)
(scale
(xyz 1 1 1)
)
(rotate
(xyz 0 180 -2)
)
)
)

View File

@ -0,0 +1,477 @@
(kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor)
(symbol "Cable" (in_bom yes) (on_board no)
(property "Reference" "Cable" (at 3.81 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D-Sub 25 Pin Male to Female Cable" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Cable_1_1"
(rectangle (start 0 0) (end 11.43 -2.54)
(stroke (width 0) (type default))
(fill (type background))
)
)
)
(symbol "L717SDB25PA4CH3F" (in_bom yes) (on_board yes)
(property "Reference" "J" (at 3.81 8.89 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Value" "L717SDB25PA4CH3F" (at 3.81 6.35 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "L717SDB25PA4CH3F" (at 6.35 3.81 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn.amphenol-cs.com/media/wysiwyg/files/drawing/l717sdxxxpa4ch3f.pdf" (at 41.91 -189.84 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Height" "12.55" (at 41.91 -389.84 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Mouser Part Number" "523-L717SDB25PA4CH3F" (at 41.91 -489.84 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Amphenol-Commercial-Products/L717SDB25PA4CH3F?qs=wLKqLMNa9uLtd9ZeMS1tBg%3D%3D" (at 41.91 -589.84 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Manufacturer_Name" "Amphenol Communications Solutions" (at 41.91 -689.84 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Manufacturer_Part_Number" "L717SDB25PA4CH3F" (at 41.91 -789.84 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "ki_description" "Dsub, Stamped Signal 3A, Right Angle PCB Through Hole, FP=8.08mm (0.318in), Row Pitch 2.84mm, 25 Pin, Flash Gold, Bright Tin Shell+Grounding Dimples, M3 Front Screwlock, Ground Tab with Boardlock" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L717SDB25PA4CH3F_0_1"
(polyline
(pts
(xy 3.81 -60.96)
(xy 5.08 -60.96)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -58.42)
(xy 8.128 -58.42)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -55.88)
(xy 5.08 -55.88)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -53.34)
(xy 8.128 -53.34)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -50.8)
(xy 5.08 -50.8)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -48.26)
(xy 8.128 -48.26)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -45.72)
(xy 5.08 -45.72)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -43.18)
(xy 8.128 -43.18)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -40.64)
(xy 5.08 -40.64)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -38.1)
(xy 8.128 -38.1)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -35.56)
(xy 5.08 -35.56)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -33.02)
(xy 8.128 -33.02)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -30.48)
(xy 5.08 -30.48)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -27.94)
(xy 8.128 -27.94)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -25.4)
(xy 5.08 -25.4)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -22.86)
(xy 8.128 -22.86)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -20.32)
(xy 5.08 -20.32)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -17.78)
(xy 8.128 -17.78)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -15.24)
(xy 5.08 -15.24)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -12.7)
(xy 8.128 -12.7)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -10.16)
(xy 5.08 -10.16)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -7.62)
(xy 8.128 -7.62)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -5.08)
(xy 5.08 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -2.54)
(xy 8.128 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 0)
(xy 5.08 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -64.135)
(xy 11.43 -60.325)
(xy 11.43 -0.635)
(xy 3.81 3.175)
(xy 3.81 -64.135)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 5.842 -60.96) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -55.88) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -50.8) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -45.72) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -40.64) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -35.56) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -30.48) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -25.4) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -20.32) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -15.24) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -10.16) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 -5.08) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.842 0) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -58.42) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -53.34) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -48.26) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -43.18) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -38.1) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -33.02) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -27.94) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -22.86) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -17.78) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -12.7) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -7.62) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 8.89 -2.54) (radius 0.762)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "L717SDB25PA4CH3F_1_1"
(pin passive line (at 0 -60.96 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -15.24 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -10.16 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 0 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -58.42 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -53.34 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -43.18 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -38.1 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -33.02 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -55.88 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -27.94 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -22.86 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -17.78 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -12.7 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -50.8 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -45.72 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -40.64 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -35.56 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -30.48 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -25.4 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -20.32 0) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -55.88 180) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "MH1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 15.24 -5.08 180) (length 3.81)
(name "" (effects (font (size 1.27 1.27))))
(number "MH2" (effects (font (size 1.27 1.27))))
)
)
)
)

4
src/sym-lib-table Normal file
View File

@ -0,0 +1,4 @@
(sym_lib_table
(version 7)
(lib (name "shuttler_afe_test_card")(type "KiCad")(uri "${KIPRJMOD}/shuttler_afe_test_card.kicad_sym")(options "")(descr ""))
)