Merge branch 'main' of ssh://git.enerwize.fr:2222/Enerwize/PowerFlies
This commit is contained in:
commit
7ac38d21e4
|
@ -0,0 +1,133 @@
|
|||
(version 1)
|
||||
# Custom Design Rules (DRC) for KiCAD 7.0 (Stored in '<project>.kicad_dru' file).
|
||||
#
|
||||
# Matching JLCPCB capabilities: https://jlcpcb.com/capabilities/pcb-capabilities
|
||||
#
|
||||
# KiCad documentation: https://docs.kicad.org/master/id/pcbnew/pcbnew_advanced.html#custom_design_rules
|
||||
#
|
||||
# Inspiration
|
||||
# - https://gist.github.com/darkxst/f713268e5469645425eed40115fb8b49 (with comments)
|
||||
# - https://gist.github.com/denniskupec/e163d13b0a64c2044bd259f64659485e (with comments)
|
||||
|
||||
# TODO new rule: NPTH pads.
|
||||
# Inner diameter of pad should be 0.4-0.5 mm larger than NPTH drill diameter.
|
||||
# JLCPCB: "We make NPTH via dry sealing film process, if customer would like a NPTH but around with pad/copper, our engineer will dig out around pad/copper about 0.2mm-0.25mm, otherwise the metal potion will be flowed into the hole and it becomes a PTH. (there will be no copper dig out optimization for single board)."
|
||||
|
||||
# TODO: new rule for plated slots: min diameter/width 0.5mm
|
||||
# JLCPCB: "The minimum plated slot width is 0.5mm, which is drawn with a pad."
|
||||
|
||||
# TODO new rule: non-plated slots: min diameter/width 1.0mm
|
||||
# JLCPCB: "The minimum Non-Plated Slot Width is 1.0mm, please draw the slot outline in the mechanical layer(GML or GKO)""
|
||||
|
||||
(rule "Track width, outer layer (1oz copper)"
|
||||
(layer outer)
|
||||
(condition "A.Type == 'track'")
|
||||
(constraint track_width (min 0.127mm))
|
||||
)
|
||||
|
||||
(rule "Track spacing, outer layer (1oz copper)"
|
||||
(layer outer)
|
||||
(condition "A.Type == 'track' && B.Type == A.Type")
|
||||
(constraint clearance (min 0.127mm))
|
||||
)
|
||||
|
||||
(rule "Track width, inner layer"
|
||||
(layer inner)
|
||||
(condition "A.Type == 'track'")
|
||||
(constraint track_width (min 0.09mm))
|
||||
)
|
||||
|
||||
(rule "Track spacing, inner layer"
|
||||
(layer inner)
|
||||
(condition "A.Type == 'track' && B.Type == A.Type")
|
||||
(constraint clearance (min 0.09mm))
|
||||
)
|
||||
|
||||
(rule "Silkscreen text"
|
||||
(layer "?.Silkscreen")
|
||||
(condition "A.Type == 'Text' || A.Type == 'Text Box'")
|
||||
(constraint text_thickness (min 0.15mm))
|
||||
(constraint text_height (min 1mm))
|
||||
)
|
||||
|
||||
(rule "Pad to Silkscreen"
|
||||
(layer outer)
|
||||
(condition "A.Type == 'pad' && B.Layer == '?.Silkscreen'")
|
||||
(constraint silk_clearance (min 0.15mm))
|
||||
)
|
||||
|
||||
(rule "Edge (routed) to track clearance"
|
||||
(condition "A.Type == 'track'")
|
||||
(constraint edge_clearance (min 0.3mm))
|
||||
)
|
||||
|
||||
#(rule "Edge (v-cut) to track clearance"
|
||||
# (condition "A.Type == 'track'")
|
||||
# (constraint edge_clearance (min 0.4mm))
|
||||
#)
|
||||
|
||||
# JLCPCB restrictions ambiguous:
|
||||
# Illustration: 0.2 mm, 1&2 layer: 0.3 mm, multilayer: "(0.15mm more costly)"
|
||||
# This rule handles diameter minimum and maximum for ALL holes.
|
||||
# Other specialized rules handle restrictions (e.g. Via, PTH, NPTH)
|
||||
(rule "Hole diameter"
|
||||
(constraint hole_size (min 0.2mm) (max 6.3mm))
|
||||
)
|
||||
|
||||
(rule "Hole (NPTH) diameter"
|
||||
(layer outer)
|
||||
(condition "!A.isPlated()")
|
||||
(constraint hole_size (min 0.5mm))
|
||||
)
|
||||
|
||||
# TODO: Hole to board edge ≥ 1 mm. Min. board size 10 × 10 mm
|
||||
(rule "Hole (castellated) diameter"
|
||||
(layer outer)
|
||||
(condition "A.Type == 'pad' && A.Fabrication_Property == 'Castellated pad'")
|
||||
(constraint hole_size (min 0.6mm))
|
||||
)
|
||||
|
||||
# JLCPCB: "Via diameter should be 0.1mm(0.15mm preferred) larger than Via hole size" (illustration shows diameters for both dimensions)
|
||||
# JLCPCB: PTH: "The annular ring size will be enlarged to 0.15mm in production."
|
||||
(rule "Annular ring width (via and PTH)"
|
||||
(layer outer)
|
||||
(condition "A.isPlated()")
|
||||
(constraint annular_width (min 0.075mm))
|
||||
)
|
||||
|
||||
(rule "Clearance: hole to hole (perimeter), different nets"
|
||||
(layer outer)
|
||||
(condition "A.Net != B.Net")
|
||||
(constraint hole_to_hole (min 0.5mm))
|
||||
)
|
||||
|
||||
(rule "Clearance: hole to hole (perimeter), same net"
|
||||
(layer outer)
|
||||
(condition "A.Net == B.Net")
|
||||
(constraint hole_to_hole (min 0.254mm))
|
||||
)
|
||||
|
||||
(rule "Clearance: track to NPTH hole (perimeter)"
|
||||
# (condition "A.Pad_Type == 'NPTH, mechanical' && B.Type == 'track' && A.Net != B.Net")
|
||||
(condition "!A.isPlated() && B.Type == 'track' && A.Net != B.Net")
|
||||
(constraint hole_clearance (min 0.254mm))
|
||||
)
|
||||
|
||||
(rule "Clearance: track to PTH hole perimeter"
|
||||
(condition "A.isPlated() && B.Type == 'track' && A.Net != B.Net")
|
||||
(constraint hole_clearance (min 0.33mm))
|
||||
)
|
||||
|
||||
# TODO: try combining with rule "Clearance: PTH to track, different nets"
|
||||
(rule "Clearance: track to pad"
|
||||
(condition "A.Type == 'pad' && B.Type == 'track' && A.Net != B.Net")
|
||||
(constraint clearance (min 0.2mm))
|
||||
)
|
||||
|
||||
(rule "Clearance: pad/via to pad/via"
|
||||
(layer outer)
|
||||
# (condition "(A.Type == 'Pad' || A.Type == 'Via') && (B.Type == 'Pad' || B.Type == 'Via') && A.Net != B.Net")
|
||||
(condition "A.isPlated() && B.isPlated() && A.Net != B.Net")
|
||||
(constraint clearance (min 0.127mm))
|
||||
)
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,83 @@
|
|||
{
|
||||
"board": {
|
||||
"active_layer": 39,
|
||||
"active_layer_preset": "",
|
||||
"auto_track_width": true,
|
||||
"hidden_netclasses": [],
|
||||
"hidden_nets": [],
|
||||
"high_contrast_mode": 0,
|
||||
"net_color_mode": 1,
|
||||
"opacity": {
|
||||
"images": 0.6,
|
||||
"pads": 1.0,
|
||||
"tracks": 1.0,
|
||||
"vias": 1.0,
|
||||
"zones": 0.1599999964237213
|
||||
},
|
||||
"selection_filter": {
|
||||
"dimensions": false,
|
||||
"footprints": true,
|
||||
"graphics": false,
|
||||
"keepouts": false,
|
||||
"lockedItems": false,
|
||||
"otherItems": false,
|
||||
"pads": false,
|
||||
"text": true,
|
||||
"tracks": false,
|
||||
"vias": false,
|
||||
"zones": false
|
||||
},
|
||||
"visible_items": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
8,
|
||||
9,
|
||||
10,
|
||||
11,
|
||||
12,
|
||||
13,
|
||||
15,
|
||||
16,
|
||||
17,
|
||||
18,
|
||||
19,
|
||||
20,
|
||||
21,
|
||||
22,
|
||||
23,
|
||||
24,
|
||||
25,
|
||||
26,
|
||||
27,
|
||||
28,
|
||||
29,
|
||||
30,
|
||||
32,
|
||||
33,
|
||||
34,
|
||||
35,
|
||||
36,
|
||||
39,
|
||||
40
|
||||
],
|
||||
"visible_layers": "ffd7fff_ffffffff",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"git": {
|
||||
"repo_password": "",
|
||||
"repo_type": "",
|
||||
"repo_username": "",
|
||||
"ssh_key": ""
|
||||
},
|
||||
"meta": {
|
||||
"filename": "ATM90E32-breakout.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
|
@ -0,0 +1,724 @@
|
|||
{
|
||||
"board": {
|
||||
"3dviewports": [],
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"apply_defaults_to_fp_fields": false,
|
||||
"apply_defaults_to_fp_shapes": false,
|
||||
"apply_defaults_to_fp_text": false,
|
||||
"board_outline_line_width": 0.1,
|
||||
"copper_line_width": 0.2,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.05,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": true,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.1,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.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.0,
|
||||
"height": 0.95,
|
||||
"width": 1.075
|
||||
},
|
||||
"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.0
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"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_symbol_mismatch": "warning",
|
||||
"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.0,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.2,
|
||||
"min_microvia_drill": 0.1,
|
||||
"min_resolved_spokes": 2,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_text_height": 0.8,
|
||||
"min_text_thickness": 0.08,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.0,
|
||||
"min_via_annular_width": 0.1,
|
||||
"min_via_diameter": 0.5,
|
||||
"solder_mask_clearance": 0.0,
|
||||
"solder_mask_min_width": 0.0,
|
||||
"solder_mask_to_copper_clearance": 0.005,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"teardrop_options": [
|
||||
{
|
||||
"td_onpadsmd": true,
|
||||
"td_onroundshapesonly": false,
|
||||
"td_ontrackend": false,
|
||||
"td_onviapad": true
|
||||
}
|
||||
],
|
||||
"teardrop_parameters": [
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_round_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_rect_shape",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
},
|
||||
{
|
||||
"td_allow_use_two_tracks": true,
|
||||
"td_curve_segcount": 0,
|
||||
"td_height_ratio": 1.0,
|
||||
"td_length_ratio": 0.5,
|
||||
"td_maxheight": 2.0,
|
||||
"td_maxlen": 1.0,
|
||||
"td_on_pad_in_zone": false,
|
||||
"td_target_name": "td_track_end",
|
||||
"td_width_to_size_filter_ratio": 0.9
|
||||
}
|
||||
],
|
||||
"track_widths": [
|
||||
0.0,
|
||||
0.25,
|
||||
0.3,
|
||||
0.4
|
||||
],
|
||||
"tuning_pattern_settings": {
|
||||
"diff_pair_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 1.0
|
||||
},
|
||||
"diff_pair_skew_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 0.6
|
||||
},
|
||||
"single_track_defaults": {
|
||||
"corner_radius_percentage": 80,
|
||||
"corner_style": 1,
|
||||
"max_amplitude": 1.0,
|
||||
"min_amplitude": 0.2,
|
||||
"single_sided": false,
|
||||
"spacing": 0.6
|
||||
}
|
||||
},
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"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": "ATM90E32-breakout.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_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": "Arrow Part Number",
|
||||
"name": "Arrow Part Number",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Arrow Price/Stock",
|
||||
"name": "Arrow Price/Stock",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Availability",
|
||||
"name": "Availability",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Check_prices",
|
||||
"name": "Check_prices",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Height",
|
||||
"name": "Height",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "LCSC#",
|
||||
"name": "LCSC#",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "MANUFACTURER",
|
||||
"name": "MANUFACTURER",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "MAXIMUM_PACKAGE_HEIGHT",
|
||||
"name": "MAXIMUM_PACKAGE_HEIGHT",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "MF",
|
||||
"name": "MF",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "MP",
|
||||
"name": "MP",
|
||||
"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": "Package",
|
||||
"name": "Package",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "Price",
|
||||
"name": "Price",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "STANDARD",
|
||||
"name": "STANDARD",
|
||||
"show": false
|
||||
},
|
||||
{
|
||||
"group_by": false,
|
||||
"label": "SnapEDA_Link",
|
||||
"name": "SnapEDA_Link",
|
||||
"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": [
|
||||
[
|
||||
"cbce0c98-a89f-41b0-9f73-8b16d417531a",
|
||||
"Racine"
|
||||
],
|
||||
[
|
||||
"22833949-8264-4e99-8b13-b01e30837325",
|
||||
"Current sensing 1"
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
|
@ -0,0 +1,51 @@
|
|||
(kicad_sch
|
||||
(version 20231120)
|
||||
(generator "eeschema")
|
||||
(generator_version "8.0")
|
||||
(uuid "cbce0c98-a89f-41b0-9f73-8b16d417531a")
|
||||
(paper "A4")
|
||||
(lib_symbols)
|
||||
(sheet
|
||||
(at 111.76 21.59)
|
||||
(size 36.83 41.91)
|
||||
(fields_autoplaced yes)
|
||||
(stroke
|
||||
(width 0.1524)
|
||||
(type solid)
|
||||
)
|
||||
(fill
|
||||
(color 0 0 0 0.0000)
|
||||
)
|
||||
(uuid "22833949-8264-4e99-8b13-b01e30837325")
|
||||
(property "Sheetname" "Current sensing 1"
|
||||
(at 111.76 20.8784 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
)
|
||||
(property "Sheetfile" "current1.kicad_sch"
|
||||
(at 111.76 64.0846 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(instances
|
||||
(project "ATM90E32-breakout"
|
||||
(path "/cbce0c98-a89f-41b0-9f73-8b16d417531a"
|
||||
(page "2")
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(sheet_instances
|
||||
(path "/"
|
||||
(page "1")
|
||||
)
|
||||
)
|
||||
)
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
After Width: | Height: | Size: 485 KiB |
Binary file not shown.
After Width: | Height: | Size: 145 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.3 MiB |
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
Binary file not shown.
|
@ -0,0 +1,16 @@
|
|||
Designator,Footprint,Quantity,Value,LCSC Part #
|
||||
"C1, C13, C3, C4, C5",0603,5,100nF X7R ±5%,
|
||||
"C10, C11, C6, C7, C8, C9",0603,6,330nF X7R ±10%,
|
||||
"C12, C2",0603,2,10uF X7R ±10%,
|
||||
"C14, C15, C16",0805,3,18nF C0G ±5%,
|
||||
IC1,ATM90E32AS-AU-R,1,ATM90E32,
|
||||
"J1, J2, J3",BOOMELE_PJ-320B,3,PJ-320B,
|
||||
J4,PinHeader_1x04_P2.54mm_Vertical,1,Conn_01x04_MountingPin,
|
||||
J6,PinHeader_1x06_P2.54mm_Vertical,1,Conn_01x06_MountingPin,
|
||||
J7,MTJ881X1,1,8P8C,
|
||||
"R1, R2, R3, R4, R5",0603,5,±25ppm/℃ ±0.1% 10kΩ,
|
||||
"R10, R11, R12, R13, R14, R9",0603,6,±0.1% ±25ppm/℃ 100Ω,
|
||||
"R15, R16, R17",0603,3,±0.1% ±25ppm/℃ 1kΩ,
|
||||
"R6, R7, R8",0603,3,±0.5% ±25ppm/℃ 22Ω,
|
||||
"SW1, SW2, SW3",SW_DIP_SPSTx01_Slide_Copal_CHS-01A_W5.08mm_P1.27mm_JPin,3,1bit DIP Switch,
|
||||
Y1,Crystal_SMD_2016-4Pin_2.0x1.6mm,1,16.384 Mhz Crystal,
|
|
|
@ -0,0 +1,47 @@
|
|||
C1:1
|
||||
C10:1
|
||||
C11:1
|
||||
C12:1
|
||||
C13:1
|
||||
C14:1
|
||||
C15:1
|
||||
C16:1
|
||||
C2:1
|
||||
C3:1
|
||||
C4:1
|
||||
C5:1
|
||||
C6:1
|
||||
C7:1
|
||||
C8:1
|
||||
C9:1
|
||||
FID1:1
|
||||
FID2:1
|
||||
IC1:1
|
||||
J1:1
|
||||
J2:1
|
||||
J3:1
|
||||
J4:1
|
||||
J5:1
|
||||
J6:1
|
||||
J7:1
|
||||
R1:1
|
||||
R10:1
|
||||
R11:1
|
||||
R12:1
|
||||
R13:1
|
||||
R14:1
|
||||
R15:1
|
||||
R16:1
|
||||
R17:1
|
||||
R2:1
|
||||
R3:1
|
||||
R4:1
|
||||
R5:1
|
||||
R6:1
|
||||
R7:1
|
||||
R8:1
|
||||
R9:1
|
||||
SW1:1
|
||||
SW2:1
|
||||
SW3:1
|
||||
Y1:1
|
|
|
@ -0,0 +1,206 @@
|
|||
P CODE 00
|
||||
P UNITS CUST 0
|
||||
P arrayDim N
|
||||
317GND VIA MD0157PA00X+010709Y-003307X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+006047Y-015583X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+015022Y-003300X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+012496Y-010229X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+010024Y-017083X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+006614Y-004488X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+018581Y-005558X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+015622Y-008500X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+017022Y-012000X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+008390Y-013366X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+008425Y-010315X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+008222Y-005000X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+012681Y-001458X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+008522Y-000900X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+009409Y-013839X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+016210Y-016124X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+002047Y-007008X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+011581Y-008058X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+010276Y-005276X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+012283Y-013189X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+006535Y-009331X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+013881Y-005758X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+009122Y-008500X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+002047Y-011732X0315Y0000R000S3
|
||||
317GND VIA MD0157PA00X+002047Y-002283X0315Y0000R000S3
|
||||
3173V3 VIA MD0157PA00X+012881Y-014158X0315Y0000R000S3
|
||||
3173V3 VIA MD0157PA00X+014922Y-006017X0315Y0000R000S3
|
||||
317~{CS1} VIA MD0157PA00X+012781Y-006858X0315Y0000R000S3
|
||||
317SCLK VIA MD0157PA00X+012470Y-007115X0315Y0000R000S3
|
||||
317MISO VIA MD0157PA00X+011958Y-007396X0315Y0000R000S3
|
||||
317MOSI VIA MD0157PA00X+011881Y-006658X0315Y0000R000S3
|
||||
367N/C J1 D0472UA00X+000866Y-002323X0472Y0000R000S0
|
||||
367N/C J1 D0472UA00X+003228Y-002323X0472Y0000R000S0
|
||||
327NET-(J1-PAD1) J1 -1 A01X+000906Y-003799X0591Y1378R000S2
|
||||
327CTED-(J1-PAD2) J1 -2 A01X+001693Y-000846X0591Y1378R000S2
|
||||
327NET-(SW1-A) J1 -3 A01X+003661Y-003799X0591Y1378R000S2
|
||||
327GND C6 -1 A01X+006277Y-003520X0423Y0374R000S2
|
||||
327SENSING?1/IA1N C6 -2 A01X+006956Y-003520X0423Y0374R000S2
|
||||
327NET-(SW3-A) SW3 -1 A01X+005157Y-012732X0630Y0299R270S2
|
||||
327NET-(SW3-B) SW3 -2 A01X+005157Y-010732X0630Y0299R270S2
|
||||
327SENSING?1/IA1N R9 -1 A01X+006976Y-002920X0384Y0374R180S2
|
||||
327NET-(SW1-A) R9 -2 A01X+006257Y-002920X0384Y0374R180S2
|
||||
327GND C5 -1 A01X+008834Y-005866X0423Y0374R000S2
|
||||
3273V3 C5 -2 A01X+009513Y-005866X0423Y0374R000S2
|
||||
327NET-(IC1-VREF) C12 -1 A01X+009528Y-009109X0423Y0374R090S2
|
||||
327GND C12 -2 A01X+009528Y-009788X0423Y0374R090S2
|
||||
317IRQ1 J5 -1 D0394PA00X+016581Y-001758X0669Y0669R000S0
|
||||
317IRQ0 J5 -2 D0394PA00X+016581Y-002758X0669Y0669R000S0
|
||||
317WARN J5 -3 D0394PA00X+016581Y-003758X0669Y0669R000S0
|
||||
317?SENSING?1/CF4 J5 -4 D0394PA00X+016581Y-004758X0669Y0669R000S0
|
||||
317?SENSING?1/CF3 J5 -5 D0394PA00X+016581Y-005758X0669Y0669R000S0
|
||||
317?SENSING?1/CF2 J5 -6 D0394PA00X+016581Y-006758X0669Y0669R000S0
|
||||
317?SENSING?1/CF1 J5 -7 D0394PA00X+016581Y-007758X0669Y0669R000S0
|
||||
317?SENSING?1/ZX2 J5 -8 D0394PA00X+016581Y-008758X0669Y0669R000S0
|
||||
317?SENSING?1/ZX1 J5 -9 D0394PA00X+016581Y-009758X0669Y0669R000S0
|
||||
317?SENSING?1/ZX0 J5 -10 D0394PA00X+016581Y-010758X0669Y0669R000S0
|
||||
327SENSING?1/IB1N R11 -1 A01X+006857Y-007508X0384Y0374R180S2
|
||||
327NET-(SW2-A) R11 -2 A01X+006139Y-007508X0384Y0374R180S2
|
||||
327SENSING?1/IB1P R12 -1 A01X+006857Y-006908X0384Y0374R180S2
|
||||
327NET-(J2-PAD1) R12 -2 A01X+006139Y-006908X0384Y0374R180S2
|
||||
367N/C J3 D0472UA00X+000866Y-011732X0472Y0000R000S0
|
||||
367N/C J3 D0472UA00X+003228Y-011732X0472Y0000R000S0
|
||||
327NET-(J3-PAD1) J3 -1 A01X+000906Y-013209X0591Y1378R000S2
|
||||
327CTED-(J3-PAD2) J3 -2 A01X+001693Y-010256X0591Y1378R000S2
|
||||
327NET-(SW3-A) J3 -3 A01X+003661Y-013209X0591Y1378R000S2
|
||||
327GND C8 -1 A01X+006159Y-008108X0423Y0374R000S2
|
||||
327SENSING?1/IB1N C8 -2 A01X+006838Y-008108X0423Y0374R000S2
|
||||
3273V3 R5 -1 A01X+014281Y-003899X0384Y0374R090S2
|
||||
327~{CS1} R5 -2 A01X+014281Y-004618X0384Y0374R090S2
|
||||
3273V3 R2 -1 A01X+012481Y-003899X0384Y0374R090S2
|
||||
327MOSI R2 -2 A01X+012481Y-004618X0384Y0374R090S2
|
||||
367N/C J2 D0472UA00X+000866Y-007008X0472Y0000R000S0
|
||||
367N/C J2 D0472UA00X+003228Y-007008X0472Y0000R000S0
|
||||
327NET-(J2-PAD1) J2 -1 A01X+000906Y-008484X0591Y1378R000S2
|
||||
327CTED-(J2-PAD2) J2 -2 A01X+001693Y-005531X0591Y1378R000S2
|
||||
327NET-(SW2-A) J2 -3 A01X+003661Y-008484X0591Y1378R000S2
|
||||
3273V3 IC1 -1 A01X+010218Y-006476X0118Y0571R270S2
|
||||
327GND IC1 -2 A01X+010218Y-006672X0118Y0571R270S2
|
||||
327SENSING?1/IA1P IC1 -3 A01X+010218Y-006869X0118Y0571R270S2
|
||||
327SENSING?1/IA1N IC1 -4 A01X+010218Y-007066X0118Y0571R270S2
|
||||
327SENSING?1/IB1P IC1 -5 A01X+010218Y-007263X0118Y0571R270S2
|
||||
327SENSING?1/IB1N IC1 -6 A01X+010218Y-007460X0118Y0571R270S2
|
||||
327SENSING?1/IC1P IC1 -7 A01X+010218Y-007657X0118Y0571R270S2
|
||||
327SENSING?1/IC1N IC1 -8 A01X+010218Y-007854X0118Y0571R270S2
|
||||
327GND IC1 -9 A01X+010218Y-008050X0118Y0571R270S2
|
||||
327GND IC1 -10 A01X+010218Y-008247X0118Y0571R270S2
|
||||
327NET-(IC1-VREF) IC1 -11 A01X+010218Y-008444X0118Y0571R270S2
|
||||
327GND IC1 -12 A01X+010218Y-008641X0118Y0571R270S2
|
||||
327?SENSING?1/VAP IC1 -13 A01X+010798Y-009222X0118Y0571R000S2
|
||||
327NET-(IC1-V1N) IC1 -14 A01X+010995Y-009222X0118Y0571R000S2
|
||||
327?SENSING?1/VBP IC1 -15 A01X+011192Y-009222X0118Y0571R000S2
|
||||
327NET-(IC1-V2N) IC1 -16 A01X+011389Y-009222X0118Y0571R000S2
|
||||
327?SENSING?1/VCP IC1 -17 A01X+011586Y-009222X0118Y0571R000S2
|
||||
327NET-(IC1-V3N) IC1 -18 A01X+011783Y-009222X0118Y0571R000S2
|
||||
327GND IC1 -19 A01X+011980Y-009222X0118Y0571R000S2
|
||||
327NET-(IC1-OSCI) IC1 -20 A01X+012176Y-009222X0118Y0571R000S2
|
||||
327NET-(IC1-OSCO) IC1 -21 A01X+012373Y-009222X0118Y0571R000S2
|
||||
327?SENSING?1/ZX0 IC1 -22 A01X+012570Y-009222X0118Y0571R000S2
|
||||
327?SENSING?1/ZX1 IC1 -23 A01X+012767Y-009222X0118Y0571R000S2
|
||||
327?SENSING?1/ZX2 IC1 -24 A01X+012964Y-009222X0118Y0571R000S2
|
||||
327?SENSING?1/CF1 IC1 -25 A01X+013544Y-008641X0118Y0571R270S2
|
||||
327?SENSING?1/CF2 IC1 -26 A01X+013544Y-008444X0118Y0571R270S2
|
||||
327?SENSING?1/CF3 IC1 -27 A01X+013544Y-008247X0118Y0571R270S2
|
||||
327?SENSING?1/CF4 IC1 -28 A01X+013544Y-008050X0118Y0571R270S2
|
||||
327WARN IC1 -29 A01X+013544Y-007854X0118Y0571R270S2
|
||||
327IRQ0 IC1 -30 A01X+013544Y-007657X0118Y0571R270S2
|
||||
327IRQ1 IC1 -31 A01X+013544Y-007460X0118Y0571R270S2
|
||||
327GND IC1 -32 A01X+013544Y-007263X0118Y0571R270S2
|
||||
3273V3 IC1 -33 A01X+013544Y-007066X0118Y0571R270S2
|
||||
3273V3 IC1 -34 A01X+013544Y-006869X0118Y0571R270S2
|
||||
327C1-NC_1-PAD35) IC1 -35 A01X+013544Y-006672X0118Y0571R270S2
|
||||
327GND IC1 -36 A01X+013544Y-006476X0118Y0571R270S2
|
||||
327~{CS1} IC1 -37 A01X+012964Y-005895X0118Y0571R000S2
|
||||
327SCLK IC1 -38 A01X+012767Y-005895X0118Y0571R000S2
|
||||
327MISO IC1 -39 A01X+012570Y-005895X0118Y0571R000S2
|
||||
327MOSI IC1 -40 A01X+012373Y-005895X0118Y0571R000S2
|
||||
327(IC1-~{RESET}) IC1 -41 A01X+012176Y-005895X0118Y0571R000S2
|
||||
327-(IC1-VDD18_1) IC1 -42 A01X+011980Y-005895X0118Y0571R000S2
|
||||
327-(IC1-VDD18_1) IC1 -43 A01X+011783Y-005895X0118Y0571R000S2
|
||||
327GND IC1 -44 A01X+011586Y-005895X0118Y0571R000S2
|
||||
327C1-NC_2-PAD45) IC1 -45 A01X+011389Y-005895X0118Y0571R000S2
|
||||
327C1-NC_3-PAD46) IC1 -46 A01X+011192Y-005895X0118Y0571R000S2
|
||||
327GND IC1 -47 A01X+010995Y-005895X0118Y0571R000S2
|
||||
3273V3 IC1 -48 A01X+010798Y-005895X0118Y0571R000S2
|
||||
327NET-(IC1-VREF) C13 -1 A01X+008937Y-009109X0423Y0374R090S2
|
||||
327GND C13 -2 A01X+008937Y-009788X0423Y0374R090S2
|
||||
367N/C J7 D1260UA00X+014581Y-018358X1260Y0000R270S0
|
||||
367N/C J7 D1260UA00X+014581Y-013858X1260Y0000R270S0
|
||||
317?SENSING?1/VAP J7 -1 D0354PA00X+012081Y-017858X0551Y0551R270S0
|
||||
317?SENSING?1/VBP J7 -2 D0354PA00X+011081Y-017358X0551Y0000R270S0
|
||||
317?SENSING?1/VCP J7 -3 D0354PA00X+012081Y-016858X0551Y0000R270S0
|
||||
317CTED-(J7-PAD4) J7 -4 D0354PA00X+011081Y-016358X0551Y0000R270S0
|
||||
317GND J7 -5 D0354PA00X+012081Y-015858X0551Y0000R270S0
|
||||
317GND J7 -6 D0354PA00X+011081Y-015358X0551Y0000R270S0
|
||||
3173V3 J7 -7 D0354PA00X+012081Y-014858X0551Y0000R270S0
|
||||
3173V3 J7 -8 D0354PA00X+011081Y-014358X0551Y0000R270S0
|
||||
327NET-(J3-PAD1) R8 -1 A01X+006857Y-011132X0384Y0374R180S2
|
||||
327NET-(SW3-B) R8 -2 A01X+006139Y-011132X0384Y0374R180S2
|
||||
327NET-(J2-PAD1) R7 -1 A01X+006857Y-006308X0384Y0374R180S2
|
||||
327NET-(SW2-B) R7 -2 A01X+006139Y-006308X0384Y0374R180S2
|
||||
317GND J6 -1 D0394PA00X+015156Y-002258X0669Y0669R090S0
|
||||
317~{CS1} J6 -2 D0394PA00X+014156Y-002258X0669Y0669R090S0
|
||||
317SCLK J6 -3 D0394PA00X+013156Y-002258X0669Y0669R090S0
|
||||
317MISO J6 -4 D0394PA00X+012156Y-002258X0669Y0669R090S0
|
||||
317MOSI J6 -5 D0394PA00X+011156Y-002258X0669Y0669R090S0
|
||||
3173V3 J6 -6 D0394PA00X+010156Y-002258X0669Y0669R090S0
|
||||
3273V3 R3 -1 A01X+013081Y-003899X0384Y0374R090S2
|
||||
327MISO R3 -2 A01X+013081Y-004618X0384Y0374R090S2
|
||||
327SENSING?1/IC1P R14 -1 A01X+006857Y-011732X0384Y0374R180S2
|
||||
327NET-(J3-PAD1) R14 -2 A01X+006139Y-011732X0384Y0374R180S2
|
||||
327GND C2 -1 A01X+010709Y-003912X0423Y0374R090S2
|
||||
327-(IC1-VDD18_1) C2 -2 A01X+010709Y-004592X0423Y0374R090S2
|
||||
327SENSING?1/IB1P C9 -1 A01X+006838Y-005708X0423Y0374R180S2
|
||||
327GND C9 -2 A01X+006159Y-005708X0423Y0374R180S2
|
||||
327N/C FID1 A01X+000394Y-019291X0197Y0000R000S2
|
||||
327SENSING?1/IC1P C11 -1 A01X+006838Y-010532X0423Y0374R180S2
|
||||
327GND C11 -2 A01X+006159Y-010532X0423Y0374R180S2
|
||||
327NET-(SW1-A) SW1 -1 A01X+005157Y-003362X0630Y0299R270S2
|
||||
327NET-(SW1-B) SW1 -2 A01X+005157Y-001362X0630Y0299R270S2
|
||||
327NET-(IC1-OSCI) Y1 -1 A01X+012646Y-011017X0354Y0315R000S2
|
||||
327GND Y1 -2 A01X+013198Y-011017X0354Y0315R000S2
|
||||
327NET-(IC1-OSCO) Y1 -3 A01X+013198Y-010583X0354Y0315R000S2
|
||||
327GND Y1 -4 A01X+012646Y-010583X0354Y0315R000S2
|
||||
327NET-(SW2-A) SW2 -1 A01X+005157Y-008008X0630Y0299R270S2
|
||||
327NET-(SW2-B) SW2 -2 A01X+005157Y-006008X0630Y0299R270S2
|
||||
327NET-(IC1-V1N) C14 -1 A01X+009722Y-010989X0463Y0571R090S2
|
||||
327GND C14 -2 A01X+009722Y-011806X0463Y0571R090S2
|
||||
327GND C3 -1 A01X+010118Y-003912X0423Y0374R090S2
|
||||
327-(IC1-VDD18_1) C3 -2 A01X+010118Y-004592X0423Y0374R090S2
|
||||
327SENSING?1/IA1P R10 -1 A01X+006976Y-002320X0384Y0374R180S2
|
||||
327NET-(J1-PAD1) R10 -2 A01X+006257Y-002320X0384Y0374R180S2
|
||||
327NET-(IC1-V2N) R16 -1 A01X+010622Y-011141X0384Y0374R090S2
|
||||
327GND R16 -2 A01X+010622Y-011859X0384Y0374R090S2
|
||||
327GND C10 -1 A01X+006159Y-013032X0423Y0374R000S2
|
||||
327SENSING?1/IC1N C10 -2 A01X+006838Y-013032X0423Y0374R000S2
|
||||
327NET-(IC1-V2N) C15 -1 A01X+011339Y-011048X0463Y0571R090S2
|
||||
327GND C15 -2 A01X+011339Y-011865X0463Y0571R090S2
|
||||
327NET-(IC1-V3N) R17 -1 A01X+014363Y-011900X0384Y0374R000S2
|
||||
327GND R17 -2 A01X+015081Y-011900X0384Y0374R000S2
|
||||
317GND J4 -1 D0394PA00X+006083Y-017106X0669Y0669R270S0
|
||||
317?SENSING?1/VAP J4 -2 D0394PA00X+007083Y-017106X0669Y0669R270S0
|
||||
317?SENSING?1/VBP J4 -3 D0394PA00X+008083Y-017106X0669Y0669R270S0
|
||||
317?SENSING?1/VCP J4 -4 D0394PA00X+009083Y-017106X0669Y0669R270S0
|
||||
327N/C FID2 A01X+018504Y-000394X0197Y0000R000S2
|
||||
327GND C1 -1 A01X+011299Y-003912X0423Y0374R090S2
|
||||
327(IC1-~{RESET}) C1 -2 A01X+011299Y-004592X0423Y0374R090S2
|
||||
3273V3 R4 -1 A01X+013681Y-003899X0384Y0374R090S2
|
||||
327SCLK R4 -2 A01X+013681Y-004618X0384Y0374R090S2
|
||||
327NET-(IC1-V1N) R15 -1 A01X+009022Y-011141X0384Y0374R090S2
|
||||
327GND R15 -2 A01X+009022Y-011859X0384Y0374R090S2
|
||||
327SENSING?1/IA1P C7 -1 A01X+006956Y-001120X0423Y0374R180S2
|
||||
327GND C7 -2 A01X+006277Y-001120X0423Y0374R180S2
|
||||
327GND C4 -1 A01X+008834Y-005276X0423Y0374R000S2
|
||||
3273V3 C4 -2 A01X+009513Y-005276X0423Y0374R000S2
|
||||
3273V3 R1 -1 A01X+011881Y-003899X0384Y0374R090S2
|
||||
327(IC1-~{RESET}) R1 -2 A01X+011881Y-004618X0384Y0374R090S2
|
||||
327NET-(IC1-V3N) C16 -1 A01X+014314Y-011159X0463Y0571R000S2
|
||||
327GND C16 -2 A01X+015131Y-011159X0463Y0571R000S2
|
||||
327NET-(J1-PAD1) R6 -1 A01X+006976Y-001720X0384Y0374R180S2
|
||||
327NET-(SW1-B) R6 -2 A01X+006257Y-001720X0384Y0374R180S2
|
||||
327SENSING?1/IC1N R13 -1 A01X+006857Y-012332X0384Y0374R180S2
|
||||
327NET-(SW3-A) R13 -2 A01X+006139Y-012332X0384Y0374R180S2
|
||||
999
|
|
@ -0,0 +1,48 @@
|
|||
Designator,Mid X,Mid Y,Rotation,Layer
|
||||
C1,28.7,-10.8,270.0,top
|
||||
C10,16.5055,-33.102,0.0,top
|
||||
C11,16.5055,-26.752,180.0,top
|
||||
C12,24.2,-24.0,270.0,top
|
||||
C13,22.7,-24.0,270.0,top
|
||||
C14,24.694,-28.9505,270.0,top
|
||||
C15,28.8,-29.1,270.0,top
|
||||
C16,37.394,-28.344,0.0,top
|
||||
C2,27.2,-10.8,270.0,top
|
||||
C3,25.7,-10.8,270.0,top
|
||||
C4,23.3,-13.4,0.0,top
|
||||
C5,23.3,-14.9,0.0,top
|
||||
C6,16.8065,-8.942,0.0,top
|
||||
C7,16.8065,-2.846,180.0,top
|
||||
C8,16.5055,-20.594,0.0,top
|
||||
C9,16.5055,-14.498,180.0,top
|
||||
FID1,1.0,-49.0,0.0,top
|
||||
FID2,47.0,-1.0,0.0,top
|
||||
IC1,30.178,-19.198,0.0,top
|
||||
J1,5.2,-5.9,0.0,top
|
||||
J2,5.2,-17.8,0.0,top
|
||||
J3,5.2,-29.8,0.0,top
|
||||
J4,19.25,-43.45,90.0,top
|
||||
J5,42.116,-15.891,0.0,top
|
||||
J6,32.147,-5.736,270.0,top
|
||||
J7,37.251,-40.915,90.0,top
|
||||
R1,30.178,-10.816,270.0,top
|
||||
R10,16.8065,-5.894,180.0,top
|
||||
R11,16.5055,-19.07,180.0,top
|
||||
R12,16.5055,-17.546,180.0,top
|
||||
R13,16.5055,-31.324,180.0,top
|
||||
R14,16.5055,-29.8,180.0,top
|
||||
R15,22.916,-29.21,270.0,top
|
||||
R16,26.98,-29.21,270.0,top
|
||||
R17,37.394,-30.226,0.0,top
|
||||
R2,31.702,-10.816,270.0,top
|
||||
R3,33.226,-10.816,270.0,top
|
||||
R4,34.75,-10.816,270.0,top
|
||||
R5,36.274,-10.816,270.0,top
|
||||
R6,16.8065,-4.37,180.0,top
|
||||
R7,16.5055,-16.022,180.0,top
|
||||
R8,16.5055,-28.276,180.0,top
|
||||
R9,16.8065,-7.418,180.0,top
|
||||
SW1,13.1,-6.0,90.0,top
|
||||
SW2,13.1,-17.8,90.0,top
|
||||
SW3,13.1,-29.8,90.0,top
|
||||
Y1,32.822,-27.432,0.0,top
|
|
Loading…
Reference in New Issue