Added version 2
This commit is contained in:
parent
cf68aa8c62
commit
1c13647a58
Binary file not shown.
After Width: | Height: | Size: 551 KiB |
Binary file not shown.
After Width: | Height: | Size: 141 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,14 @@
|
|||
"#","Reference","Qty","Value","Footprint","DNP","LCSC#"
|
||||
"1","C1, C3, C4, C5, C13","5","100nF X7R ±5%","SMD Capacitors:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","","C88136"
|
||||
"2","C2, C12","2","10uF X7R ±10%","SMD Capacitors:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","","C2959727"
|
||||
"3","C6, C7, C8, C9, C10, C11","6","330nF X7R ±10%","SMD Capacitors:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","","C282682"
|
||||
"4","C14, C15, C16","3","18nF C0G ±5%","SMD Capacitors:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder","","C162313"
|
||||
"5","IC1","1","ATM90E32","Enerwize:ATM90E32AS-AU-R","","C177153"
|
||||
"6","J1, J2, J3","3","PJ-320B","Enerwize:BOOMELE_PJ-320B","","C18594"
|
||||
"7","J7","1","8P8C","Enerwize:MTJ881X1","",""
|
||||
"8","R1, R2, R3, R4, R5","5","±25ppm/℃ ±0.1% 10kΩ","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","","C95204"
|
||||
"9","R6, R7, R8","3","±0.5% ±25ppm/℃ 22Ω","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","","C862626"
|
||||
"10","R9, R10, R11, R12, R13, R14","6","±0.1% ±25ppm/℃ 100Ω","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","","C2989113"
|
||||
"11","R15, R16, R17","3","±0.1% ±25ppm/℃ 1kΩ","Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder","","C2989112"
|
||||
"12","SW1, SW2, SW3","3","1bit DIP Switch","Button_Switch_SMD:SW_DIP_SPSTx01_Slide_Copal_CHS-01A_W5.08mm_P1.27mm_JPin","","C3294665"
|
||||
"13","Y1","1","16.384 Mhz Crystal","Enerwize:Crystal_SMD_2016-4Pin_2.0x1.6mm","","C781758"
|
|
|
@ -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.12mm))
|
||||
(constraint text_height (min 0.5mm))
|
||||
)
|
||||
|
||||
(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": 0,
|
||||
"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": true,
|
||||
"otherItems": false,
|
||||
"pads": false,
|
||||
"text": true,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"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,614 @@
|
|||
{
|
||||
"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": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.1,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.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.9,
|
||||
"height": 1.4,
|
||||
"width": 1.4
|
||||
},
|
||||
"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": [
|
||||
"courtyards_overlap|174925999|102846001|0085553e-7f77-4380-aacf-63e27eb5bd0f|3824b7f0-cefa-4b07-92ef-c493ae467344",
|
||||
"courtyards_overlap|174925999|113833501|2d5d8868-e723-46d5-b986-587c36ff5e3c|3824b7f0-cefa-4b07-92ef-c493ae467344"
|
||||
],
|
||||
"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.5,
|
||||
"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,
|
||||
0.5
|
||||
],
|
||||
"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": [
|
||||
"Enerwize"
|
||||
],
|
||||
"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
|
||||
}
|
||||
],
|
||||
"filter_string": "",
|
||||
"group_symbols": true,
|
||||
"name": "Grouped By Value",
|
||||
"sort_asc": true,
|
||||
"sort_field": "Référence"
|
||||
},
|
||||
"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"
|
||||
],
|
||||
[
|
||||
"dcfa73e0-500d-4b5c-926a-7b2dd74d0aee",
|
||||
"Connectors"
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
|
@ -0,0 +1,297 @@
|
|||
(kicad_sch
|
||||
(version 20231120)
|
||||
(generator "eeschema")
|
||||
(generator_version "8.0")
|
||||
(uuid "cbce0c98-a89f-41b0-9f73-8b16d417531a")
|
||||
(paper "A4")
|
||||
(lib_symbols
|
||||
(symbol "Mechanical:Fiducial"
|
||||
(exclude_from_sim no)
|
||||
(in_bom yes)
|
||||
(on_board yes)
|
||||
(property "Reference" "FID"
|
||||
(at 0 5.08 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "Value" "Fiducial"
|
||||
(at 0 3.175 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
)
|
||||
)
|
||||
(property "Footprint" ""
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Datasheet" "~"
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Description" "Fiducial Marker"
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "ki_keywords" "fiducial marker"
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "ki_fp_filters" "Fiducial*"
|
||||
(at 0 0 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(symbol "Fiducial_0_1"
|
||||
(circle
|
||||
(center 0 0)
|
||||
(radius 1.27)
|
||||
(stroke
|
||||
(width 0.508)
|
||||
(type default)
|
||||
)
|
||||
(fill
|
||||
(type background)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol
|
||||
(lib_id "Mechanical:Fiducial")
|
||||
(at 36.83 25.4 0)
|
||||
(unit 1)
|
||||
(exclude_from_sim no)
|
||||
(in_bom no)
|
||||
(on_board yes)
|
||||
(dnp no)
|
||||
(fields_autoplaced yes)
|
||||
(uuid "238e4c44-f702-4f06-a7ef-f3974ae1b06d")
|
||||
(property "Reference" "FID1"
|
||||
(at 40.005 24.13 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left)
|
||||
)
|
||||
)
|
||||
(property "Value" "Fiducial"
|
||||
(at 40.005 26.67 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left)
|
||||
)
|
||||
)
|
||||
(property "Footprint" "Fiducial:Fiducial_0.5mm_Mask1mm"
|
||||
(at 36.83 25.4 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Datasheet" "~"
|
||||
(at 36.83 25.4 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Description" ""
|
||||
(at 36.83 25.4 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(instances
|
||||
(project "ATM90E32-breakout"
|
||||
(path "/cbce0c98-a89f-41b0-9f73-8b16d417531a"
|
||||
(reference "FID1")
|
||||
(unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(symbol
|
||||
(lib_id "Mechanical:Fiducial")
|
||||
(at 36.83 29.845 0)
|
||||
(unit 1)
|
||||
(exclude_from_sim no)
|
||||
(in_bom no)
|
||||
(on_board yes)
|
||||
(dnp no)
|
||||
(fields_autoplaced yes)
|
||||
(uuid "b94df53e-5ed3-4df6-b6de-d928a37805a4")
|
||||
(property "Reference" "FID2"
|
||||
(at 40.005 28.575 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left)
|
||||
)
|
||||
)
|
||||
(property "Value" "Fiducial"
|
||||
(at 40.005 31.115 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left)
|
||||
)
|
||||
)
|
||||
(property "Footprint" "Fiducial:Fiducial_0.5mm_Mask1mm"
|
||||
(at 36.83 29.845 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Datasheet" "~"
|
||||
(at 36.83 29.845 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(property "Description" ""
|
||||
(at 36.83 29.845 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(hide yes)
|
||||
)
|
||||
)
|
||||
(instances
|
||||
(project "ATM90E32-breakout"
|
||||
(path "/cbce0c98-a89f-41b0-9f73-8b16d417531a"
|
||||
(reference "FID2")
|
||||
(unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(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
|
||||
(at 144.78 127.635)
|
||||
(size 34.29 15.24)
|
||||
(fields_autoplaced yes)
|
||||
(stroke
|
||||
(width 0.1524)
|
||||
(type solid)
|
||||
)
|
||||
(fill
|
||||
(color 0 0 0 0.0000)
|
||||
)
|
||||
(uuid "dcfa73e0-500d-4b5c-926a-7b2dd74d0aee")
|
||||
(property "Sheetname" "Connectors"
|
||||
(at 144.78 126.9234 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
)
|
||||
(property "Sheetfile" "untitled.kicad_sch"
|
||||
(at 144.78 143.4596 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(instances
|
||||
(project "ATM90E32-breakout"
|
||||
(path "/cbce0c98-a89f-41b0-9f73-8b16d417531a"
|
||||
(page "3")
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(sheet_instances
|
||||
(path "/"
|
||||
(page "1")
|
||||
)
|
||||
)
|
||||
)
|
|
@ -0,0 +1,281 @@
|
|||
(kicad_sch (version 20230121) (generator eeschema)
|
||||
|
||||
(uuid cbce0c98-a89f-41b0-9f73-8b16d417531a)
|
||||
|
||||
(paper "A4")
|
||||
|
||||
(lib_symbols
|
||||
(symbol "Connector:RJ45" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
|
||||
(property "Reference" "J" (at -5.08 13.97 0)
|
||||
(effects (font (size 1.27 1.27)) (justify right))
|
||||
)
|
||||
(property "Value" "RJ45" (at 2.54 13.97 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
)
|
||||
(property "Footprint" "" (at 0 0.635 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 0 0.635 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_keywords" "8P8C RJ socket connector" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_description" "RJ connector, 8P8C (8 positions 8 connected)" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "ki_fp_filters" "8P8C* RJ31* RJ32* RJ33* RJ34* RJ35* RJ41* RJ45* RJ49* RJ61*" (at 0 0 0)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(symbol "RJ45_0_1"
|
||||
(polyline
|
||||
(pts
|
||||
(xy -5.08 4.445)
|
||||
(xy -6.35 4.445)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -5.08 5.715)
|
||||
(xy -6.35 5.715)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -6.35 -3.175)
|
||||
(xy -5.08 -3.175)
|
||||
(xy -5.08 -3.175)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -6.35 -1.905)
|
||||
(xy -5.08 -1.905)
|
||||
(xy -5.08 -1.905)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -6.35 -0.635)
|
||||
(xy -5.08 -0.635)
|
||||
(xy -5.08 -0.635)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -6.35 0.635)
|
||||
(xy -5.08 0.635)
|
||||
(xy -5.08 0.635)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -6.35 1.905)
|
||||
(xy -5.08 1.905)
|
||||
(xy -5.08 1.905)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -5.08 3.175)
|
||||
(xy -6.35 3.175)
|
||||
(xy -6.35 3.175)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(polyline
|
||||
(pts
|
||||
(xy -6.35 -4.445)
|
||||
(xy -6.35 6.985)
|
||||
(xy 3.81 6.985)
|
||||
(xy 3.81 4.445)
|
||||
(xy 5.08 4.445)
|
||||
(xy 5.08 3.175)
|
||||
(xy 6.35 3.175)
|
||||
(xy 6.35 -0.635)
|
||||
(xy 5.08 -0.635)
|
||||
(xy 5.08 -1.905)
|
||||
(xy 3.81 -1.905)
|
||||
(xy 3.81 -4.445)
|
||||
(xy -6.35 -4.445)
|
||||
(xy -6.35 -4.445)
|
||||
)
|
||||
(stroke (width 0) (type default))
|
||||
(fill (type none))
|
||||
)
|
||||
(rectangle (start 7.62 12.7) (end -7.62 -10.16)
|
||||
(stroke (width 0.254) (type default))
|
||||
(fill (type background))
|
||||
)
|
||||
)
|
||||
(symbol "RJ45_1_1"
|
||||
(pin passive line (at 10.16 -7.62 180) (length 2.54)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "1" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 10.16 -5.08 180) (length 2.54)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "2" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 10.16 -2.54 180) (length 2.54)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "3" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 10.16 0 180) (length 2.54)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "4" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 10.16 2.54 180) (length 2.54)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "5" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 10.16 5.08 180) (length 2.54)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "6" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 10.16 7.62 180) (length 2.54)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "7" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
(pin passive line (at 10.16 10.16 180) (length 2.54)
|
||||
(name "~" (effects (font (size 1.27 1.27))))
|
||||
(number "8" (effects (font (size 1.27 1.27))))
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(junction (at 36.83 43.18) (diameter 0) (color 0 0 0 0)
|
||||
(uuid 2e10601b-0709-462a-a689-0f8765fc22b0)
|
||||
)
|
||||
(junction (at 36.83 38.1) (diameter 0) (color 0 0 0 0)
|
||||
(uuid a96b07cd-6fe2-4d9d-b60c-071941ee042b)
|
||||
)
|
||||
|
||||
(no_connect (at 36.83 33.02) (uuid 3c025d32-712c-4cd8-b25f-dec385b99f35))
|
||||
|
||||
(wire (pts (xy 36.83 38.1) (xy 43.18 38.1))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 482d524e-657f-47bf-8b63-98baf7612bbd)
|
||||
)
|
||||
(wire (pts (xy 36.83 25.4) (xy 43.18 25.4))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 4fcfd5ed-4443-418d-a44e-c5cd9caa27a9)
|
||||
)
|
||||
(wire (pts (xy 36.83 43.18) (xy 36.83 40.64))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 5ce0e3c8-aa0c-402d-9555-9e3fcd6a9eef)
|
||||
)
|
||||
(wire (pts (xy 36.83 38.1) (xy 36.83 35.56))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 617d75ba-b7bc-4c78-9c09-5f849ed84a39)
|
||||
)
|
||||
(wire (pts (xy 36.83 27.94) (xy 43.18 27.94))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 72ce4849-6b49-4f85-9ea2-344f140d151d)
|
||||
)
|
||||
(wire (pts (xy 36.83 30.48) (xy 43.18 30.48))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid 8e563ec0-22e9-4239-9dd3-fba22186d761)
|
||||
)
|
||||
(wire (pts (xy 36.83 43.18) (xy 43.18 43.18))
|
||||
(stroke (width 0) (type default))
|
||||
(uuid a1bf824f-1717-47cc-b433-cb50c34e561e)
|
||||
)
|
||||
|
||||
(global_label "3V3" (shape output) (at 43.18 43.18 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 94ab2f51-feb8-4de7-baeb-a659dbeb795e)
|
||||
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 49.6728 43.18 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
)
|
||||
(global_label "GND" (shape output) (at 43.18 38.1 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 9ca9da5a-cd85-467e-92e9-9346b922f2e2)
|
||||
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 50.0357 38.1 0)
|
||||
(effects (font (size 1.27 1.27)) (justify left) hide)
|
||||
)
|
||||
)
|
||||
|
||||
(hierarchical_label "L3" (shape input) (at 43.18 30.48 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 2a877c68-0503-4bbb-a2f5-37d5f5dcb3d1)
|
||||
)
|
||||
(hierarchical_label "L2" (shape input) (at 43.18 27.94 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 3c874b8a-9a10-4299-b475-b922167c550e)
|
||||
)
|
||||
(hierarchical_label "L1" (shape input) (at 43.18 25.4 0) (fields_autoplaced)
|
||||
(effects (font (size 1.27 1.27)) (justify left))
|
||||
(uuid 8f404cb6-0aed-47f9-901e-fc9e4e2fb362)
|
||||
)
|
||||
|
||||
(symbol (lib_id "Connector:RJ45") (at 26.67 33.02 0) (mirror x) (unit 1)
|
||||
(in_bom yes) (on_board yes) (dnp no)
|
||||
(uuid 69fd740f-3d2b-4226-89d6-ee9688fe928c)
|
||||
(property "Reference" "J1" (at 26.67 50.8 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Value" "RJ45" (at 26.67 48.26 0)
|
||||
(effects (font (size 1.27 1.27)))
|
||||
)
|
||||
(property "Footprint" "" (at 26.67 33.655 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(property "Datasheet" "~" (at 26.67 33.655 90)
|
||||
(effects (font (size 1.27 1.27)) hide)
|
||||
)
|
||||
(pin "5" (uuid 078665a6-430c-4ffc-ae6e-2ba81d81a5ef))
|
||||
(pin "1" (uuid 8bb40597-0874-4242-956c-12512066b5b5))
|
||||
(pin "3" (uuid fa5154cc-2c3d-4951-b9a4-76bff0e5caaa))
|
||||
(pin "2" (uuid c0b40f52-c0e3-47df-85da-f274954f231a))
|
||||
(pin "7" (uuid c0f04160-566b-4a55-a306-5be963c3bf4e))
|
||||
(pin "6" (uuid 56117c93-600f-4d63-81ab-1272dd94e66e))
|
||||
(pin "8" (uuid 52671f78-3d21-4e21-a8bc-2c024c87cc89))
|
||||
(pin "4" (uuid 1e3e2051-5d3c-4786-8d3d-b2c818da56cc))
|
||||
(instances
|
||||
(project "mainboard"
|
||||
(path "/cbce0c98-a89f-41b0-9f73-8b16d417531a"
|
||||
(reference "J1") (unit 1)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(sheet (at 111.76 21.59) (size 36.83 41.91) (fields_autoplaced)
|
||||
(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 "mainboard"
|
||||
(path "/cbce0c98-a89f-41b0-9f73-8b16d417531a" (page "2"))
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
(sheet_instances
|
||||
(path "/" (page "1"))
|
||||
)
|
||||
)
|
Binary file not shown.
After Width: | Height: | Size: 386 KiB |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
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
|
|
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: 229 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,83 @@
|
|||
{
|
||||
"board": {
|
||||
"active_layer": 31,
|
||||
"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.2199999988079071
|
||||
},
|
||||
"selection_filter": {
|
||||
"dimensions": true,
|
||||
"footprints": true,
|
||||
"graphics": true,
|
||||
"keepouts": true,
|
||||
"lockedItems": true,
|
||||
"otherItems": true,
|
||||
"pads": true,
|
||||
"text": true,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"zones": true
|
||||
},
|
||||
"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": "ff5ffff_ffffffff",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"git": {
|
||||
"repo_password": "",
|
||||
"repo_type": "",
|
||||
"repo_username": "",
|
||||
"ssh_key": ""
|
||||
},
|
||||
"meta": {
|
||||
"filename": "Lora-Mainboard.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
|
@ -0,0 +1,736 @@
|
|||
{
|
||||
"board": {
|
||||
"3dviewports": [],
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"apply_defaults_to_fp_fields": false,
|
||||
"apply_defaults_to_fp_shapes": false,
|
||||
"apply_defaults_to_fp_text": false,
|
||||
"board_outline_line_width": 0.05,
|
||||
"copper_line_width": 0.2,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.05,
|
||||
"dimension_precision": 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.1,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.1,
|
||||
"other_text_italic": false,
|
||||
"other_text_size_h": 1.0,
|
||||
"other_text_size_v": 1.0,
|
||||
"other_text_thickness": 0.15,
|
||||
"other_text_upright": false,
|
||||
"pads": {
|
||||
"drill": 0.762,
|
||||
"height": 1.524,
|
||||
"width": 1.524
|
||||
},
|
||||
"silk_line_width": 0.1,
|
||||
"silk_text_italic": false,
|
||||
"silk_text_size_h": 1.0,
|
||||
"silk_text_size_v": 1.0,
|
||||
"silk_text_thickness": 0.1,
|
||||
"silk_text_upright": false,
|
||||
"zones": {
|
||||
"min_clearance": 0.5
|
||||
}
|
||||
},
|
||||
"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",
|
||||
"holes_co_located": "warning",
|
||||
"invalid_outline": "error",
|
||||
"isolated_copper": "warning",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"lib_footprint_issues": "warning",
|
||||
"lib_footprint_mismatch": "warning",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "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.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_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.2,
|
||||
0.3,
|
||||
0.5
|
||||
],
|
||||
"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": "error",
|
||||
"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": "Lora-Mainboard.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.2,
|
||||
"via_diameter": 0.6,
|
||||
"via_drill": 0.3,
|
||||
"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": "Lora-Mainboard.step",
|
||||
"svg": "",
|
||||
"vrml": "Lora-Mainboard.wrl"
|
||||
},
|
||||
"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": false,
|
||||
"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": true,
|
||||
"label": "LCSC Part #",
|
||||
"name": "LCSC Part #",
|
||||
"show": true
|
||||
},
|
||||
{
|
||||
"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": [
|
||||
[
|
||||
"dbd8ba43-d498-4323-a547-19d121a17fa6",
|
||||
"Racine"
|
||||
],
|
||||
[
|
||||
"31ffc315-27ec-468f-a345-4dfd56547e76",
|
||||
"Heltec Lora 32 v3 connector"
|
||||
],
|
||||
[
|
||||
"942329d2-d12d-447a-ba42-7fb9ab5f1c57",
|
||||
"current_sense_1"
|
||||
],
|
||||
[
|
||||
"5cc3e7e9-6ae0-4c1a-89f0-26741cd67766",
|
||||
"current_sense_2"
|
||||
],
|
||||
[
|
||||
"aa43ca24-2c9a-4066-a761-82d0c53be5a9",
|
||||
"current_sense_3"
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
|
@ -0,0 +1,363 @@
|
|||
(kicad_sch
|
||||
(version 20231120)
|
||||
(generator "eeschema")
|
||||
(generator_version "8.0")
|
||||
(uuid "dbd8ba43-d498-4323-a547-19d121a17fa6")
|
||||
(paper "A4")
|
||||
(title_block
|
||||
(title "LoraPowah")
|
||||
(date "2024-06-12")
|
||||
(rev "1.0")
|
||||
(company "Trinaps / Enerwize")
|
||||
(comment 1 "Julien Escario")
|
||||
)
|
||||
(lib_symbols)
|
||||
(bus_entry
|
||||
(at 187.96 63.5)
|
||||
(size 2.54 2.54)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "1a9b2089-ed34-4f5f-8790-daae1d91d3d9")
|
||||
)
|
||||
(bus_entry
|
||||
(at 187.96 44.45)
|
||||
(size 2.54 2.54)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "54259d7e-2ab7-4d47-8777-c6e5c24e0a94")
|
||||
)
|
||||
(bus_entry
|
||||
(at 187.96 82.55)
|
||||
(size 2.54 2.54)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "5b62908c-de25-4e09-a524-3656c666fc4f")
|
||||
)
|
||||
(bus
|
||||
(pts
|
||||
(xy 187.96 63.5) (xy 187.96 82.55)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "03da8c30-68c8-44f1-ae4f-6b405ae6a8b0")
|
||||
)
|
||||
(bus
|
||||
(pts
|
||||
(xy 187.96 82.55) (xy 187.96 85.09)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "049b8a22-046e-44f0-98bf-3442204a1e32")
|
||||
)
|
||||
(bus
|
||||
(pts
|
||||
(xy 187.96 44.45) (xy 187.96 63.5)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "306e74af-2b44-4377-9dad-27cc87ff6004")
|
||||
)
|
||||
(bus
|
||||
(pts
|
||||
(xy 95.25 43.18) (xy 187.96 43.18)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "5d43118d-a577-4881-840a-14b1a2961304")
|
||||
)
|
||||
(bus
|
||||
(pts
|
||||
(xy 187.96 43.18) (xy 187.96 44.45)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "7c103737-aff5-47dd-bb1c-54684b3668a6")
|
||||
)
|
||||
(wire
|
||||
(pts
|
||||
(xy 190.5 85.09) (xy 194.31 85.09)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "b6b0a70d-7086-4177-91d7-001bd27b20f4")
|
||||
)
|
||||
(wire
|
||||
(pts
|
||||
(xy 190.5 66.04) (xy 194.31 66.04)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "e1ef3ce7-42c9-465f-9c58-5dd54f079c40")
|
||||
)
|
||||
(wire
|
||||
(pts
|
||||
(xy 190.5 46.99) (xy 194.31 46.99)
|
||||
)
|
||||
(stroke
|
||||
(width 0)
|
||||
(type default)
|
||||
)
|
||||
(uuid "e60c25d5-47a9-4677-a174-2b855d8043f6")
|
||||
)
|
||||
(label "IO19"
|
||||
(at 190.5 46.99 0)
|
||||
(fields_autoplaced yes)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
(uuid "05a3e887-1026-4831-b414-48038840a603")
|
||||
)
|
||||
(label "IO20"
|
||||
(at 190.5 66.04 0)
|
||||
(fields_autoplaced yes)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
(uuid "08d97d03-61aa-4e7f-be62-3a6a6feb39d9")
|
||||
)
|
||||
(label "{IO19 IO20 IO26}"
|
||||
(at 138.43 43.18 0)
|
||||
(fields_autoplaced yes)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
(uuid "47d54b5e-8eee-4834-a367-1b830341ebff")
|
||||
)
|
||||
(label "IO26"
|
||||
(at 190.5 85.09 0)
|
||||
(fields_autoplaced yes)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
(uuid "76dc2647-aaa9-4b9d-8bee-d7c17cf449c5")
|
||||
)
|
||||
(sheet
|
||||
(at 58.42 35.56)
|
||||
(size 36.83 47.625)
|
||||
(fields_autoplaced yes)
|
||||
(stroke
|
||||
(width 0.1524)
|
||||
(type solid)
|
||||
)
|
||||
(fill
|
||||
(color 0 0 0 0.0000)
|
||||
)
|
||||
(uuid "31ffc315-27ec-468f-a345-4dfd56547e76")
|
||||
(property "Sheetname" "Heltec Lora 32 v3 connector"
|
||||
(at 58.42 34.8484 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
)
|
||||
(property "Sheetfile" "Heltec Lora 32 v3.kicad_sch"
|
||||
(at 58.42 83.7696 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(pin "{IO19 IO20 IO26}" input
|
||||
(at 95.25 43.18 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify right)
|
||||
)
|
||||
(uuid "96582fb3-c631-4466-91f6-321e4067f7f9")
|
||||
)
|
||||
(instances
|
||||
(project "Lora-Mainboard"
|
||||
(path "/dbd8ba43-d498-4323-a547-19d121a17fa6"
|
||||
(page "2")
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(sheet
|
||||
(at 194.31 63.5)
|
||||
(size 18.415 13.97)
|
||||
(fields_autoplaced yes)
|
||||
(stroke
|
||||
(width 0.1524)
|
||||
(type solid)
|
||||
)
|
||||
(fill
|
||||
(color 0 0 0 0.0000)
|
||||
)
|
||||
(uuid "5cc3e7e9-6ae0-4c1a-89f0-26741cd67766")
|
||||
(property "Sheetname" "current_sense_2"
|
||||
(at 194.31 62.7884 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
)
|
||||
(property "Sheetfile" "current_sense_1.kicad_sch"
|
||||
(at 194.31 78.0546 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(pin "~{CS}" input
|
||||
(at 194.31 66.04 180)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left)
|
||||
)
|
||||
(uuid "d636c50f-ea99-45be-95c8-99da7827c3e6")
|
||||
)
|
||||
(instances
|
||||
(project "Lora-Mainboard"
|
||||
(path "/dbd8ba43-d498-4323-a547-19d121a17fa6"
|
||||
(page "4")
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(sheet
|
||||
(at 194.31 43.815)
|
||||
(size 17.78 13.97)
|
||||
(fields_autoplaced yes)
|
||||
(stroke
|
||||
(width 0.1524)
|
||||
(type solid)
|
||||
)
|
||||
(fill
|
||||
(color 0 0 0 0.0000)
|
||||
)
|
||||
(uuid "942329d2-d12d-447a-ba42-7fb9ab5f1c57")
|
||||
(property "Sheetname" "current_sense_1"
|
||||
(at 194.31 43.1034 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
)
|
||||
(property "Sheetfile" "current_sense_1.kicad_sch"
|
||||
(at 194.31 58.3696 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(pin "~{CS}" input
|
||||
(at 194.31 46.99 180)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left)
|
||||
)
|
||||
(uuid "32649163-71b5-4ca3-a8ec-1dc1dfe0d4d2")
|
||||
)
|
||||
(instances
|
||||
(project "Lora-Mainboard"
|
||||
(path "/dbd8ba43-d498-4323-a547-19d121a17fa6"
|
||||
(page "3")
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(sheet
|
||||
(at 194.31 82.55)
|
||||
(size 19.05 13.97)
|
||||
(fields_autoplaced yes)
|
||||
(stroke
|
||||
(width 0.1524)
|
||||
(type solid)
|
||||
)
|
||||
(fill
|
||||
(color 0 0 0 0.0000)
|
||||
)
|
||||
(uuid "aa43ca24-2c9a-4066-a761-82d0c53be5a9")
|
||||
(property "Sheetname" "current_sense_3"
|
||||
(at 194.31 81.8384 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left bottom)
|
||||
)
|
||||
)
|
||||
(property "Sheetfile" "current_sense_1.kicad_sch"
|
||||
(at 194.31 97.1046 0)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left top)
|
||||
)
|
||||
)
|
||||
(pin "~{CS}" input
|
||||
(at 194.31 85.09 180)
|
||||
(effects
|
||||
(font
|
||||
(size 1.27 1.27)
|
||||
)
|
||||
(justify left)
|
||||
)
|
||||
(uuid "8bdaf67c-61fc-46b3-9947-3f74f8f61636")
|
||||
)
|
||||
(instances
|
||||
(project "Lora-Mainboard"
|
||||
(path "/dbd8ba43-d498-4323-a547-19d121a17fa6"
|
||||
(page "5")
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
(sheet_instances
|
||||
(path "/"
|
||||
(page "1")
|
||||
)
|
||||
)
|
||||
)
|
|
@ -0,0 +1,2 @@
|
|||
Default True 2.0 3
|
||||
False True False
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,83 @@
|
|||
{
|
||||
"board": {
|
||||
"active_layer": 0,
|
||||
"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.2199999988079071
|
||||
},
|
||||
"selection_filter": {
|
||||
"dimensions": false,
|
||||
"footprints": false,
|
||||
"graphics": false,
|
||||
"keepouts": false,
|
||||
"lockedItems": true,
|
||||
"otherItems": false,
|
||||
"pads": false,
|
||||
"text": false,
|
||||
"tracks": true,
|
||||
"vias": true,
|
||||
"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": "ff7ffff_ffffffff",
|
||||
"zone_display_mode": 0
|
||||
},
|
||||
"git": {
|
||||
"repo_password": "",
|
||||
"repo_type": "",
|
||||
"repo_username": "",
|
||||
"ssh_key": ""
|
||||
},
|
||||
"meta": {
|
||||
"filename": "Lora-Mainboard.kicad_prl",
|
||||
"version": 3
|
||||
},
|
||||
"project": {
|
||||
"files": []
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
|||
{"EXTRA_LAYERS": "", "EXTEND_EDGE_CUT": false, "AUTO TRANSLATE": true, "AUTO FILL": true, "EXCLUDE DNP": true}
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
@ -0,0 +1,18 @@
|
|||
"LoraPowah v1.0 BOM",,,,
|
||||
"Designator","LCSC Part #","Footprint","Quantity","Value"
|
||||
"C1, C2","C6119860",603,2,"1uF"
|
||||
"C101, C107, C201, C207, C301, C307","C2959727",603,6,"10uF X7R ±10%"
|
||||
"C102, C103, C105, C108, C109, C202, C203, C205, C208, C209, C302, C303, C305, C308, C309","C88136",603,15,"100nF X7R ±5%"
|
||||
"C104, C106, C110, C204, C206, C210, C304, C306, C310","C162313",805,9,"18nF C0G ±5%"
|
||||
"C111, C112, C113, C114, C115, C116, C211, C212, C213, C214, C215, C216, C311, C312, C313, C314, C315, C316","C282682",603,18,"330nF X7R ±10%"
|
||||
"CT101, CT102, CT103, CT201, CT202, CT203, CT301, CT302, CT303","C18594","BOOMELE_PJ-320B",9,"PJ-320B"
|
||||
"IC101, IC201, IC301","C177153","ATM90E32AS-AU-R",3,"ATM90E32"
|
||||
"J1, J2","C2905422","PinSocket_1x18_P2.54mm_Vertical",2,"Conn_01x18"
|
||||
"J3","C4749183","IDC-Header_2x10_P2.54mm_Vertical_SMD",1,"Conn_02x10_Counter_Clockwise"
|
||||
"J4","C6917143","MTJ881X1",1,"8P8C"
|
||||
"R101, R102, R103, R201, R202, R203, R301, R302, R303","C2989112",603,9,"±0.1% ±25ppm/℃ 1kΩ"
|
||||
"R104, R105, R204, R205, R304, R305","C95204",603,6,"±25ppm/℃ ±0.1% 10kΩ"
|
||||
"R106, R107, R108, R206, R207, R208, R306, R307, R308","C657279",603,9,"±0.5% ±25ppm/℃ 22Ω"
|
||||
"R109, R110, R111, R112, R113, R114, R209, R210, R211, R212, R213, R214, R309, R310, R311, R312, R313, R314","C2989113",603,18,"±0.1% ±25ppm/℃ 100Ω"
|
||||
"U1","C5884132","SOT-23",1,"DS8242-33S3"
|
||||
"Y101, Y201, Y301","C781758","Crystal_SMD_2016-4Pin_2.0x1.6mm",3,"16.384 Mhz Crystal"
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,5 @@
|
|||
06-11 09:20:21 com_github_MitjaNemec_PlaceFootprints.action_place_footprints 647:Plugin executed on: 'linux'
|
||||
06-11 09:20:21 com_github_MitjaNemec_PlaceFootprints.action_place_footprints 648:Plugin executed with python version: '3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0]'
|
||||
06-11 09:20:21 com_github_MitjaNemec_PlaceFootprints.action_place_footprints 649:KiCad build version: 8.0.3-8.0.3-0~ubuntu22.04.1
|
||||
06-11 09:20:21 com_github_MitjaNemec_PlaceFootprints.action_place_footprints 650:Plugin version: 3.0.0
|
||||
06-11 09:20:21 com_github_MitjaNemec_PlaceFootprints.action_place_footprints 651:Frame repr: <wx._core.Frame object at 0x7fb0702503a0>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue