rev06 pcb
This commit is contained in:
BIN
pcb/mobo/.DS_Store
vendored
Normal file
BIN
pcb/mobo/.DS_Store
vendored
Normal file
Binary file not shown.
29
pcb/mobo/.gitignore
vendored
Normal file
29
pcb/mobo/.gitignore
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
# For PCBs designed using KiCad: https://www.kicad.org/
|
||||
# Format documentation: https://kicad.org/help/file-formats/
|
||||
|
||||
# Temporary files
|
||||
*.000
|
||||
*.bak
|
||||
*.bck
|
||||
*.kicad_pcb-bak
|
||||
*.kicad_sch-bak
|
||||
*-backups
|
||||
*.kicad_prl
|
||||
*.sch-bak
|
||||
*~
|
||||
_autosave-*
|
||||
*.tmp
|
||||
*-save.pro
|
||||
*-save.kicad_pcb
|
||||
fp-info-cache
|
||||
|
||||
# Netlist files (exported from Eeschema)
|
||||
*.net
|
||||
|
||||
# Autorouter files (exported from Pcbnew)
|
||||
*.dsn
|
||||
*.ses
|
||||
|
||||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
256
pcb/mobo/config.kibot.yaml
Normal file
256
pcb/mobo/config.kibot.yaml
Normal file
@@ -0,0 +1,256 @@
|
||||
# Example KiPlot config file
|
||||
kibot:
|
||||
version: 1
|
||||
|
||||
filters:
|
||||
- name: only_jlc_parts
|
||||
comment: 'Only parts with JLC code'
|
||||
type: 'generic'
|
||||
include_only:
|
||||
- column: 'JLCPCB'
|
||||
regex: '^C\d+'
|
||||
- name: fix_rotation
|
||||
comment: 'Adjust rotation for JLC'
|
||||
type: rot_footprint
|
||||
rotations:
|
||||
- ["^TI_SO-", 270.0]
|
||||
- ["^SO-", 270.0]
|
||||
- ["^HTSSOP-", 270.0]
|
||||
- ["^OnSemi_CASE100CY", 90.0]
|
||||
|
||||
global:
|
||||
variant: default
|
||||
|
||||
variants:
|
||||
- name: default
|
||||
comment: 'Just a place holder for the rotation filter'
|
||||
type: kibom
|
||||
variant: default
|
||||
- name: jlcpcb
|
||||
comment: 'JLCPCB requires some rotational transforms'
|
||||
type: kibom
|
||||
variant: jlcpcb
|
||||
pre_transform: fix_rotation
|
||||
- name: vcnt2020
|
||||
comment: 'JLCPCB requires some rotation transforms + BOM exclusions'
|
||||
type: kibom
|
||||
variant: VCNT2020
|
||||
pre_transform: fix_rotation
|
||||
file_id: '_VCNT2020'
|
||||
|
||||
preflight:
|
||||
# Disable ERC for now while GPereira updates these items.
|
||||
run_erc: false
|
||||
update_xml: true
|
||||
# Disable DRC for now while GPereira updates these items.
|
||||
run_drc: false
|
||||
check_zone_fills: true
|
||||
ignore_unconnected: false
|
||||
|
||||
outputs:
|
||||
#- name: 'ibom'
|
||||
# comment: 'Interactive Bill of Materials'
|
||||
# type: ibom
|
||||
# dir: ibom
|
||||
|
||||
- name: 'bom'
|
||||
comment: 'Bill of Materials'
|
||||
type: bom
|
||||
dir: .
|
||||
options:
|
||||
csv:
|
||||
hide_pcb_info: true
|
||||
hide_stats_info: true
|
||||
format: CSV
|
||||
|
||||
- name: 'bom_vcnt2020'
|
||||
comment: 'Bill of Materials'
|
||||
type: bom
|
||||
dir: .
|
||||
options:
|
||||
csv:
|
||||
hide_pcb_info: true
|
||||
hide_stats_info: true
|
||||
format: CSV
|
||||
variant: vcnt2020
|
||||
|
||||
- name: 'html_bom'
|
||||
comment: 'HTML BOM'
|
||||
type: bom
|
||||
dir: .
|
||||
options:
|
||||
html:
|
||||
datasheet_as_link: Datasheet
|
||||
digikey_link: Digikey
|
||||
title: 'Index MOBO Bill of Materials'
|
||||
|
||||
- name: 'print_sch'
|
||||
comment: "Print schematic (PDF)"
|
||||
type: pdf_sch_print
|
||||
dir: .
|
||||
options:
|
||||
output: Schematic.pdf
|
||||
|
||||
- name: 'print_sch_vcnt2020'
|
||||
comment: "Print schematic (PDF, VCNT2020 Variant)"
|
||||
type: pdf_sch_print
|
||||
dir: .
|
||||
options:
|
||||
output: Schematic_vcnt2020.pdf
|
||||
variant: vcnt2020
|
||||
|
||||
|
||||
- name: 'print_front'
|
||||
comment: "Print F.Cu+Dwgs.User"
|
||||
type: pdf_pcb_print
|
||||
dir: .
|
||||
options:
|
||||
output_name: PCB.pdf
|
||||
separated: true
|
||||
layers:
|
||||
- layer: F.Cu
|
||||
description: 'Front Copper'
|
||||
- layer: B.Cu
|
||||
description: 'Back Copper'
|
||||
- layer: F.SilkS
|
||||
description: 'Front Silk'
|
||||
- layer: B.SilkS
|
||||
description: 'Rear Silk'
|
||||
|
||||
- name: 'gerbers'
|
||||
comment: "Gerbers for the board house"
|
||||
type: gerber
|
||||
dir: gerbers
|
||||
options:
|
||||
# generic layer options
|
||||
exclude_edge_layer: true
|
||||
exclude_pads_from_silkscreen: false
|
||||
use_aux_axis_as_origin: false
|
||||
plot_sheet_reference: false
|
||||
plot_footprint_refs: true
|
||||
plot_footprint_values: true
|
||||
force_plot_invisible_refs_vals: false
|
||||
tent_vias: true
|
||||
|
||||
# gerber options
|
||||
line_width: 0.1
|
||||
subtract_mask_from_silk: false
|
||||
use_protel_extensions: false
|
||||
gerber_precision: 4.6
|
||||
create_gerber_job_file: true
|
||||
use_gerber_x2_attributes: false
|
||||
use_gerber_net_attributes: false
|
||||
|
||||
output: '%f.%i'
|
||||
|
||||
|
||||
layers:
|
||||
# When Moving to Four Layer, Set G2L and G3L as the suffixes
|
||||
- layer: F.Cu
|
||||
suffix: GTL
|
||||
- layer: B.Cu
|
||||
suffix: GBL
|
||||
- layer: F.SilkS
|
||||
suffix: GTO
|
||||
- layer: B.SilkS
|
||||
suffix: GBO
|
||||
- layer: F.Mask
|
||||
suffix: GTS
|
||||
- layer: B.Mask
|
||||
suffix: GBS
|
||||
- layer: Edge.Cuts
|
||||
suffix: GKO
|
||||
- layer: F.Paste
|
||||
suffix: GTP
|
||||
- layer: B.Paste
|
||||
suffix: GBP
|
||||
|
||||
- name: 'drill_file'
|
||||
comment: 'Drill file for Board House'
|
||||
type: excellon
|
||||
dir: gerbers
|
||||
options:
|
||||
metric_units: false
|
||||
pth_and_npth_single_file: true
|
||||
|
||||
- name: board_top
|
||||
comment: "Top layer view"
|
||||
type: pcbdraw
|
||||
dir: .
|
||||
options:
|
||||
format: png
|
||||
show_components: all
|
||||
style:
|
||||
board: '#242424'
|
||||
copper: '#404040'
|
||||
silk: '#ffffff'
|
||||
pads: '#bfbfbf'
|
||||
|
||||
- name: board_bottom
|
||||
comment: "Bottom layer view"
|
||||
type: pcbdraw
|
||||
dir: .
|
||||
options:
|
||||
format: png
|
||||
bottom: true
|
||||
show_components: all
|
||||
style:
|
||||
board: '#242424'
|
||||
copper: '#404040'
|
||||
silk: '#ffffff'
|
||||
pads: '#bfbfbf'
|
||||
|
||||
- name: 'pick_and_place_file'
|
||||
comment: 'Pick and Place Location File'
|
||||
type: position
|
||||
dir: gerbers
|
||||
options:
|
||||
format: CSV
|
||||
|
||||
- name: 'bom_jlc'
|
||||
comment: "BoM for JLC"
|
||||
type: bom
|
||||
options:
|
||||
output: '%f_bom_jlc.%x'
|
||||
# exclude_filter: only_jlc_parts
|
||||
ref_separator: ','
|
||||
columns:
|
||||
- field: Value
|
||||
name: Comment
|
||||
- field: References
|
||||
name: Designator
|
||||
- field: Footprint
|
||||
name: Footprint
|
||||
- field: JLCPCB
|
||||
name: 'LCSC Part #'
|
||||
csv:
|
||||
hide_pcb_info: true
|
||||
hide_stats_info: true
|
||||
quote_all: true
|
||||
|
||||
- name: 'pick_and_place_jlc'
|
||||
comment: 'Pick and place file, JLC style'
|
||||
type: position
|
||||
options:
|
||||
output: '%f_cpl_jlc.%x'
|
||||
format: CSV
|
||||
units: millimeters
|
||||
separate_files_for_front_and_back: false
|
||||
only_smd: true
|
||||
variant: jlcpcb
|
||||
columns:
|
||||
- id: Ref
|
||||
name: Designator
|
||||
- id: PosX
|
||||
name: "Mid X"
|
||||
- id: PosY
|
||||
name: "Mid Y"
|
||||
- id: Side
|
||||
name: Layer
|
||||
- id: Rot
|
||||
name: Rotation
|
||||
|
||||
- name: 'step_file'
|
||||
comment: 'STEP file generation'
|
||||
type: step
|
||||
dir: .
|
||||
3
pcb/mobo/fp-lib-table
Normal file
3
pcb/mobo/fp-lib-table
Normal file
@@ -0,0 +1,3 @@
|
||||
(fp_lib_table
|
||||
(lib (name index)(type KiCad)(uri ${KIPRJMOD}/../../../lib/kicad/index.pretty)(options "")(descr ""))
|
||||
)
|
||||
20201
pcb/mobo/mobo.kicad_pcb
Normal file
20201
pcb/mobo/mobo.kicad_pcb
Normal file
File diff suppressed because it is too large
Load Diff
441
pcb/mobo/mobo.kicad_pro
Normal file
441
pcb/mobo/mobo.kicad_pro
Normal file
@@ -0,0 +1,441 @@
|
||||
{
|
||||
"board": {
|
||||
"design_settings": {
|
||||
"defaults": {
|
||||
"board_outline_line_width": 0.049999999999999996,
|
||||
"copper_line_width": 0.19999999999999998,
|
||||
"copper_text_italic": false,
|
||||
"copper_text_size_h": 1.5,
|
||||
"copper_text_size_v": 1.5,
|
||||
"copper_text_thickness": 0.3,
|
||||
"copper_text_upright": false,
|
||||
"courtyard_line_width": 0.049999999999999996,
|
||||
"dimension_precision": 4,
|
||||
"dimension_units": 3,
|
||||
"dimensions": {
|
||||
"arrow_length": 1270000,
|
||||
"extension_offset": 500000,
|
||||
"keep_text_aligned": true,
|
||||
"suppress_zeroes": false,
|
||||
"text_position": 0,
|
||||
"units_format": 1
|
||||
},
|
||||
"fab_line_width": 0.09999999999999999,
|
||||
"fab_text_italic": false,
|
||||
"fab_text_size_h": 1.0,
|
||||
"fab_text_size_v": 1.0,
|
||||
"fab_text_thickness": 0.15,
|
||||
"fab_text_upright": false,
|
||||
"other_line_width": 0.09999999999999999,
|
||||
"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.3,
|
||||
"width": 1.3
|
||||
},
|
||||
"silk_line_width": 0.12,
|
||||
"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": {
|
||||
"45_degree_only": false,
|
||||
"min_clearance": 0.19999999999999998
|
||||
}
|
||||
},
|
||||
"diff_pair_dimensions": [
|
||||
{
|
||||
"gap": 0.0,
|
||||
"via_gap": 0.0,
|
||||
"width": 0.0
|
||||
}
|
||||
],
|
||||
"drc_exclusions": [],
|
||||
"meta": {
|
||||
"filename": "board_design_settings.json",
|
||||
"version": 2
|
||||
},
|
||||
"rule_severities": {
|
||||
"annular_width": "error",
|
||||
"clearance": "error",
|
||||
"copper_edge_clearance": "error",
|
||||
"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_type_mismatch": "error",
|
||||
"hole_clearance": "error",
|
||||
"hole_near_hole": "error",
|
||||
"invalid_outline": "error",
|
||||
"item_on_disabled_layer": "error",
|
||||
"items_not_allowed": "error",
|
||||
"length_out_of_range": "error",
|
||||
"malformed_courtyard": "error",
|
||||
"microvia_drill_out_of_range": "error",
|
||||
"missing_courtyard": "ignore",
|
||||
"missing_footprint": "warning",
|
||||
"net_conflict": "warning",
|
||||
"npth_inside_courtyard": "ignore",
|
||||
"padstack": "error",
|
||||
"pth_inside_courtyard": "ignore",
|
||||
"shorting_items": "error",
|
||||
"silk_over_copper": "warning",
|
||||
"silk_overlap": "warning",
|
||||
"skew_out_of_range": "error",
|
||||
"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",
|
||||
"zone_has_empty_net": "error",
|
||||
"zones_intersect": "error"
|
||||
},
|
||||
"rule_severitieslegacy_courtyards_overlap": true,
|
||||
"rule_severitieslegacy_no_courtyard_defined": false,
|
||||
"rules": {
|
||||
"allow_blind_buried_vias": false,
|
||||
"allow_microvias": false,
|
||||
"max_error": 0.005,
|
||||
"min_clearance": 0.0,
|
||||
"min_copper_edge_clearance": 0.024999999999999998,
|
||||
"min_hole_clearance": 0.25,
|
||||
"min_hole_to_hole": 0.25,
|
||||
"min_microvia_diameter": 0.19999999999999998,
|
||||
"min_microvia_drill": 0.09999999999999999,
|
||||
"min_silk_clearance": 0.0,
|
||||
"min_through_hole_diameter": 0.3,
|
||||
"min_track_width": 0.19999999999999998,
|
||||
"min_via_annular_width": 0.049999999999999996,
|
||||
"min_via_diameter": 0.39999999999999997,
|
||||
"use_height_for_length_calcs": true
|
||||
},
|
||||
"track_widths": [
|
||||
0.0,
|
||||
0.2,
|
||||
0.3,
|
||||
0.4,
|
||||
0.5,
|
||||
0.75,
|
||||
1.0,
|
||||
2.0
|
||||
],
|
||||
"via_dimensions": [
|
||||
{
|
||||
"diameter": 0.0,
|
||||
"drill": 0.0
|
||||
}
|
||||
],
|
||||
"zones_allow_external_fillets": false,
|
||||
"zones_use_no_outline": true
|
||||
},
|
||||
"layer_presets": []
|
||||
},
|
||||
"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_label_syntax": "error",
|
||||
"bus_to_bus_conflict": "error",
|
||||
"bus_to_net_conflict": "error",
|
||||
"different_unit_footprint": "error",
|
||||
"different_unit_net": "error",
|
||||
"duplicate_reference": "error",
|
||||
"duplicate_sheet_names": "error",
|
||||
"extra_units": "error",
|
||||
"global_label_dangling": "warning",
|
||||
"hier_label_mismatch": "error",
|
||||
"label_dangling": "error",
|
||||
"lib_symbol_issues": "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",
|
||||
"unannotated": "error",
|
||||
"unit_value_mismatch": "error",
|
||||
"unresolved_variable": "error",
|
||||
"wire_dangling": "error"
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"pinned_footprint_libs": [],
|
||||
"pinned_symbol_libs": []
|
||||
},
|
||||
"meta": {
|
||||
"filename": "mobo.kicad_pro",
|
||||
"version": 1
|
||||
},
|
||||
"net_settings": {
|
||||
"classes": [
|
||||
{
|
||||
"bus_width": 12.0,
|
||||
"clearance": 0.15,
|
||||
"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.0
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"version": 2
|
||||
},
|
||||
"net_colors": null
|
||||
},
|
||||
"pcbnew": {
|
||||
"last_paths": {
|
||||
"gencad": "",
|
||||
"idf": "",
|
||||
"netlist": "mobo.net",
|
||||
"specctra_dsn": "",
|
||||
"step": "",
|
||||
"vrml": ""
|
||||
},
|
||||
"page_layout_descr_file": ""
|
||||
},
|
||||
"schematic": {
|
||||
"annotate_start_num": 0,
|
||||
"drawing": {
|
||||
"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.25,
|
||||
"pin_symbol_size": 25.0,
|
||||
"text_offset_ratio": 0.08
|
||||
},
|
||||
"legacy_lib_dir": "",
|
||||
"legacy_lib_list": [],
|
||||
"meta": {
|
||||
"version": 1
|
||||
},
|
||||
"net_format_name": "Pcbnew",
|
||||
"ngspice": {
|
||||
"fix_include_paths": true,
|
||||
"fix_passive_vals": false,
|
||||
"meta": {
|
||||
"version": 0
|
||||
},
|
||||
"model_mode": 0,
|
||||
"workbook_filename": ""
|
||||
},
|
||||
"page_layout_descr_file": "",
|
||||
"plot_directory": "",
|
||||
"spice_adjust_passive_values": false,
|
||||
"spice_external_command": "spice \"%I\"",
|
||||
"subpart_first_id": 65,
|
||||
"subpart_id_separator": 0
|
||||
},
|
||||
"sheets": [
|
||||
[
|
||||
"e502d1d5-04b0-4d4b-b5c3-8c52d09668e7",
|
||||
""
|
||||
]
|
||||
],
|
||||
"text_variables": {}
|
||||
}
|
||||
5678
pcb/mobo/mobo.kicad_sch
Normal file
5678
pcb/mobo/mobo.kicad_sch
Normal file
File diff suppressed because it is too large
Load Diff
BIN
pcb/mobo/rev06-B0.zip
Normal file
BIN
pcb/mobo/rev06-B0.zip
Normal file
Binary file not shown.
2910
pcb/mobo/rev06-B0/mobo-B_Cu.gbr
Normal file
2910
pcb/mobo/rev06-B0/mobo-B_Cu.gbr
Normal file
File diff suppressed because it is too large
Load Diff
33
pcb/mobo/rev06-B0/mobo-B_Mask.gbr
Normal file
33
pcb/mobo/rev06-B0/mobo-B_Mask.gbr
Normal file
@@ -0,0 +1,33 @@
|
||||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.1-0)*
|
||||
G04 #@! TF.CreationDate,2022-04-24T19:17:24-04:00*
|
||||
G04 #@! TF.ProjectId,mobo,6d6f626f-2e6b-4696-9361-645f70636258,rev?*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Soldermask,Bot*
|
||||
G04 #@! TF.FilePolarity,Negative*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW (6.0.1-0)) date 2022-04-24 19:17:24*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
%ADD10R,1.700000X1.700000*%
|
||||
%ADD11O,1.700000X1.700000*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
X-17780000Y-10160000D03*
|
||||
D11*
|
||||
X-20320000Y-10160000D03*
|
||||
X-22860000Y-10160000D03*
|
||||
X-25400000Y-10160000D03*
|
||||
X-27940000Y-10160000D03*
|
||||
X-30480000Y-10160000D03*
|
||||
D10*
|
||||
X-17780000Y-12700000D03*
|
||||
D11*
|
||||
X-20320000Y-12700000D03*
|
||||
X-22860000Y-12700000D03*
|
||||
X-25400000Y-12700000D03*
|
||||
X-27940000Y-12700000D03*
|
||||
X-30480000Y-12700000D03*
|
||||
M02*
|
||||
15
pcb/mobo/rev06-B0/mobo-B_Paste.gbr
Normal file
15
pcb/mobo/rev06-B0/mobo-B_Paste.gbr
Normal file
@@ -0,0 +1,15 @@
|
||||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.1-0)*
|
||||
G04 #@! TF.CreationDate,2022-04-24T19:17:24-04:00*
|
||||
G04 #@! TF.ProjectId,mobo,6d6f626f-2e6b-4696-9361-645f70636258,rev?*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Paste,Bot*
|
||||
G04 #@! TF.FilePolarity,Positive*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW (6.0.1-0)) date 2022-04-24 19:17:24*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 APERTURE END LIST*
|
||||
M02*
|
||||
15
pcb/mobo/rev06-B0/mobo-B_Silkscreen.gbr
Normal file
15
pcb/mobo/rev06-B0/mobo-B_Silkscreen.gbr
Normal file
@@ -0,0 +1,15 @@
|
||||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.1-0)*
|
||||
G04 #@! TF.CreationDate,2022-04-24T19:17:24-04:00*
|
||||
G04 #@! TF.ProjectId,mobo,6d6f626f-2e6b-4696-9361-645f70636258,rev?*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Legend,Bot*
|
||||
G04 #@! TF.FilePolarity,Positive*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW (6.0.1-0)) date 2022-04-24 19:17:24*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 APERTURE END LIST*
|
||||
M02*
|
||||
35
pcb/mobo/rev06-B0/mobo-Edge_Cuts.gbr
Normal file
35
pcb/mobo/rev06-B0/mobo-Edge_Cuts.gbr
Normal file
@@ -0,0 +1,35 @@
|
||||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.1-0)*
|
||||
G04 #@! TF.CreationDate,2022-04-24T19:17:24-04:00*
|
||||
G04 #@! TF.ProjectId,mobo,6d6f626f-2e6b-4696-9361-645f70636258,rev?*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Profile,NP*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW (6.0.1-0)) date 2022-04-24 19:17:24*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 #@! TA.AperFunction,Profile*
|
||||
%ADD10C,0.050000*%
|
||||
G04 #@! TD*
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
X0Y43000000D02*
|
||||
G75*
|
||||
G03*
|
||||
X-5000000Y48000000I-5000000J0D01*
|
||||
G01*
|
||||
X-40000000Y33000000D02*
|
||||
X-40000000Y-40000000D01*
|
||||
X0Y-40000000D02*
|
||||
X0Y33000000D01*
|
||||
X-40000000Y-40000000D02*
|
||||
X0Y-40000000D01*
|
||||
X-5000000Y48000000D02*
|
||||
X-25000000Y48000000D01*
|
||||
X0Y33000000D02*
|
||||
X0Y43000000D01*
|
||||
X-40000000Y33000000D02*
|
||||
X-25000000Y48000000D01*
|
||||
M02*
|
||||
11102
pcb/mobo/rev06-B0/mobo-F_Cu.gbr
Normal file
11102
pcb/mobo/rev06-B0/mobo-F_Cu.gbr
Normal file
File diff suppressed because it is too large
Load Diff
15486
pcb/mobo/rev06-B0/mobo-F_Mask.gbr
Normal file
15486
pcb/mobo/rev06-B0/mobo-F_Mask.gbr
Normal file
File diff suppressed because it is too large
Load Diff
363
pcb/mobo/rev06-B0/mobo-F_Paste.gbr
Normal file
363
pcb/mobo/rev06-B0/mobo-F_Paste.gbr
Normal file
@@ -0,0 +1,363 @@
|
||||
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,(6.0.1-0)*
|
||||
G04 #@! TF.CreationDate,2022-04-24T19:17:23-04:00*
|
||||
G04 #@! TF.ProjectId,mobo,6d6f626f-2e6b-4696-9361-645f70636258,rev?*
|
||||
G04 #@! TF.SameCoordinates,Original*
|
||||
G04 #@! TF.FileFunction,Paste,Top*
|
||||
G04 #@! TF.FilePolarity,Positive*
|
||||
%FSLAX46Y46*%
|
||||
G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
|
||||
G04 Created by KiCad (PCBNEW (6.0.1-0)) date 2022-04-24 19:17:23*
|
||||
%MOMM*%
|
||||
%LPD*%
|
||||
G01*
|
||||
G04 APERTURE LIST*
|
||||
G04 Aperture macros list*
|
||||
%AMRoundRect*
|
||||
0 Rectangle with rounded corners*
|
||||
0 $1 Rounding radius*
|
||||
0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
|
||||
0 Add a 4 corners polygon primitive as box body*
|
||||
4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
|
||||
0 Add four circle primitives for the rounded corners*
|
||||
1,1,$1+$1,$2,$3*
|
||||
1,1,$1+$1,$4,$5*
|
||||
1,1,$1+$1,$6,$7*
|
||||
1,1,$1+$1,$8,$9*
|
||||
0 Add four rect primitives between the rounded corners*
|
||||
20,1,$1+$1,$2,$3,$4,$5,0*
|
||||
20,1,$1+$1,$4,$5,$6,$7,0*
|
||||
20,1,$1+$1,$6,$7,$8,$9,0*
|
||||
20,1,$1+$1,$8,$9,$2,$3,0*%
|
||||
%AMRotRect*
|
||||
0 Rectangle, with rotation*
|
||||
0 The origin of the aperture is its center*
|
||||
0 $1 length*
|
||||
0 $2 width*
|
||||
0 $3 Rotation angle, in degrees counterclockwise*
|
||||
0 Add horizontal line*
|
||||
21,1,$1,$2,0,0,$3*%
|
||||
G04 Aperture macros list end*
|
||||
%ADD10R,2.400000X1.500000*%
|
||||
%ADD11RoundRect,0.250000X-0.475000X0.250000X-0.475000X-0.250000X0.475000X-0.250000X0.475000X0.250000X0*%
|
||||
%ADD12RoundRect,0.250000X0.475000X-0.250000X0.475000X0.250000X-0.475000X0.250000X-0.475000X-0.250000X0*%
|
||||
%ADD13R,0.650000X0.750000*%
|
||||
%ADD14R,0.250000X0.500000*%
|
||||
%ADD15RoundRect,0.250000X-0.262500X-0.450000X0.262500X-0.450000X0.262500X0.450000X-0.262500X0.450000X0*%
|
||||
%ADD16RoundRect,0.232500X-0.232500X-0.232500X0.232500X-0.232500X0.232500X0.232500X-0.232500X0.232500X0*%
|
||||
%ADD17RoundRect,0.062500X-0.375000X-0.062500X0.375000X-0.062500X0.375000X0.062500X-0.375000X0.062500X0*%
|
||||
%ADD18RoundRect,0.062500X-0.062500X-0.375000X0.062500X-0.375000X0.062500X0.375000X-0.062500X0.375000X0*%
|
||||
%ADD19R,1.200000X0.900000*%
|
||||
%ADD20RoundRect,0.250000X0.250000X-0.400000X0.250000X0.400000X-0.250000X0.400000X-0.250000X-0.400000X0*%
|
||||
%ADD21RoundRect,0.150000X0.925000X-0.600000X0.925000X0.600000X-0.925000X0.600000X-0.925000X-0.600000X0*%
|
||||
%ADD22RoundRect,0.250000X-0.450000X0.262500X-0.450000X-0.262500X0.450000X-0.262500X0.450000X0.262500X0*%
|
||||
%ADD23RoundRect,0.250000X0.250000X0.475000X-0.250000X0.475000X-0.250000X-0.475000X0.250000X-0.475000X0*%
|
||||
%ADD24RoundRect,0.075000X-0.662500X-0.075000X0.662500X-0.075000X0.662500X0.075000X-0.662500X0.075000X0*%
|
||||
%ADD25RoundRect,0.075000X-0.075000X-0.662500X0.075000X-0.662500X0.075000X0.662500X-0.075000X0.662500X0*%
|
||||
%ADD26RoundRect,0.075000X-0.575000X-0.075000X0.575000X-0.075000X0.575000X0.075000X-0.575000X0.075000X0*%
|
||||
%ADD27RoundRect,0.075000X-0.075000X-0.575000X0.075000X-0.575000X0.075000X0.575000X-0.075000X0.575000X0*%
|
||||
%ADD28RoundRect,0.243750X-0.243750X-0.456250X0.243750X-0.456250X0.243750X0.456250X-0.243750X0.456250X0*%
|
||||
%ADD29R,2.000000X1.500000*%
|
||||
%ADD30R,2.000000X3.800000*%
|
||||
%ADD31R,1.800000X2.100000*%
|
||||
%ADD32RoundRect,0.250000X-0.250000X-0.475000X0.250000X-0.475000X0.250000X0.475000X-0.250000X0.475000X0*%
|
||||
%ADD33RoundRect,0.250000X0.450000X-0.262500X0.450000X0.262500X-0.450000X0.262500X-0.450000X-0.262500X0*%
|
||||
%ADD34RoundRect,0.250000X1.137500X0.550000X-1.137500X0.550000X-1.137500X-0.550000X1.137500X-0.550000X0*%
|
||||
%ADD35R,1.550000X1.000000*%
|
||||
%ADD36RotRect,1.550000X1.000000X225.000000*%
|
||||
%ADD37RoundRect,0.150000X-0.825000X-0.150000X0.825000X-0.150000X0.825000X0.150000X-0.825000X0.150000X0*%
|
||||
%ADD38R,1.000000X0.700000*%
|
||||
%ADD39RoundRect,0.150000X0.150000X-0.825000X0.150000X0.825000X-0.150000X0.825000X-0.150000X-0.825000X0*%
|
||||
%ADD40R,2.400000X0.740000*%
|
||||
G04 APERTURE END LIST*
|
||||
D10*
|
||||
X-3700000Y-19300000D03*
|
||||
X-3700000Y-24800000D03*
|
||||
D11*
|
||||
X-21150000Y-16075000D03*
|
||||
X-21150000Y-17975000D03*
|
||||
D12*
|
||||
X-30912500Y-17975000D03*
|
||||
X-30912500Y-16075000D03*
|
||||
D11*
|
||||
X-28612500Y-16075000D03*
|
||||
X-28612500Y-17975000D03*
|
||||
D12*
|
||||
X-23500000Y-17975000D03*
|
||||
X-23500000Y-16075000D03*
|
||||
D13*
|
||||
X-33912500Y-17025000D03*
|
||||
X-33112500Y-17025000D03*
|
||||
D14*
|
||||
X-32762500Y-16075000D03*
|
||||
X-33262500Y-16075000D03*
|
||||
X-33762500Y-16075000D03*
|
||||
X-34262500Y-16075000D03*
|
||||
X-34262500Y-17975000D03*
|
||||
X-33762500Y-17975000D03*
|
||||
X-33262500Y-17975000D03*
|
||||
X-32762500Y-17975000D03*
|
||||
D13*
|
||||
X-26450000Y-17025000D03*
|
||||
X-25650000Y-17025000D03*
|
||||
D14*
|
||||
X-25300000Y-16075000D03*
|
||||
X-25800000Y-16075000D03*
|
||||
X-26300000Y-16075000D03*
|
||||
X-26800000Y-16075000D03*
|
||||
X-26800000Y-17975000D03*
|
||||
X-26300000Y-17975000D03*
|
||||
X-25800000Y-17975000D03*
|
||||
X-25300000Y-17975000D03*
|
||||
D15*
|
||||
X-32525000Y-19975000D03*
|
||||
X-30700000Y-19975000D03*
|
||||
X-25112500Y-20075000D03*
|
||||
X-23287500Y-20075000D03*
|
||||
D16*
|
||||
X-25250000Y-29607500D03*
|
||||
D17*
|
||||
X-27687500Y-27857500D03*
|
||||
X-27687500Y-28357500D03*
|
||||
X-27687500Y-28857500D03*
|
||||
X-27687500Y-29357500D03*
|
||||
X-27687500Y-29857500D03*
|
||||
X-27687500Y-30357500D03*
|
||||
X-27687500Y-30857500D03*
|
||||
X-27687500Y-31357500D03*
|
||||
D18*
|
||||
X-27000000Y-32045000D03*
|
||||
X-26500000Y-32045000D03*
|
||||
X-26000000Y-32045000D03*
|
||||
X-25500000Y-32045000D03*
|
||||
X-25000000Y-32045000D03*
|
||||
X-24500000Y-32045000D03*
|
||||
X-24000000Y-32045000D03*
|
||||
X-23500000Y-32045000D03*
|
||||
D17*
|
||||
X-22812500Y-31357500D03*
|
||||
X-22812500Y-30857500D03*
|
||||
X-22812500Y-30357500D03*
|
||||
X-22812500Y-29857500D03*
|
||||
X-22812500Y-29357500D03*
|
||||
X-22812500Y-28857500D03*
|
||||
X-22812500Y-28357500D03*
|
||||
X-22812500Y-27857500D03*
|
||||
D18*
|
||||
X-23500000Y-27170000D03*
|
||||
X-24000000Y-27170000D03*
|
||||
X-24500000Y-27170000D03*
|
||||
X-25000000Y-27170000D03*
|
||||
X-25500000Y-27170000D03*
|
||||
X-26000000Y-27170000D03*
|
||||
X-26500000Y-27170000D03*
|
||||
X-27000000Y-27170000D03*
|
||||
D19*
|
||||
X-11700000Y-24650000D03*
|
||||
X-11700000Y-27950000D03*
|
||||
D20*
|
||||
X-4250000Y-12750000D03*
|
||||
X-4250000Y-10250000D03*
|
||||
X-4250000Y-7750000D03*
|
||||
X-4250000Y-5250000D03*
|
||||
X-4250000Y-2750000D03*
|
||||
D21*
|
||||
X-2100000Y-14650000D03*
|
||||
X-2100000Y-850000D03*
|
||||
D22*
|
||||
X-6000000Y43087500D03*
|
||||
X-6000000Y44912500D03*
|
||||
D15*
|
||||
X-3062500Y-16950000D03*
|
||||
X-1237500Y-16950000D03*
|
||||
D23*
|
||||
X-8850000Y-30000000D03*
|
||||
X-10750000Y-30000000D03*
|
||||
D12*
|
||||
X-11750000Y-36130000D03*
|
||||
X-11750000Y-34230000D03*
|
||||
D24*
|
||||
X-29912500Y-27357500D03*
|
||||
X-29912500Y-27857500D03*
|
||||
X-29912500Y-28357500D03*
|
||||
X-29912500Y-28857500D03*
|
||||
X-29912500Y-29357500D03*
|
||||
X-29912500Y-29857500D03*
|
||||
X-29912500Y-30357500D03*
|
||||
X-29912500Y-30857500D03*
|
||||
X-29912500Y-31357500D03*
|
||||
X-29912500Y-31857500D03*
|
||||
X-29912500Y-32357500D03*
|
||||
X-29912500Y-32857500D03*
|
||||
D25*
|
||||
X-28500000Y-34270000D03*
|
||||
X-28000000Y-34270000D03*
|
||||
X-27500000Y-34270000D03*
|
||||
X-27000000Y-34270000D03*
|
||||
X-26500000Y-34270000D03*
|
||||
X-26000000Y-34270000D03*
|
||||
X-25500000Y-34270000D03*
|
||||
X-25000000Y-34270000D03*
|
||||
X-24500000Y-34270000D03*
|
||||
X-24000000Y-34270000D03*
|
||||
X-23500000Y-34270000D03*
|
||||
X-23000000Y-34270000D03*
|
||||
D24*
|
||||
X-21587500Y-32857500D03*
|
||||
X-21587500Y-32357500D03*
|
||||
X-21587500Y-31857500D03*
|
||||
D26*
|
||||
X-21500000Y-31357500D03*
|
||||
X-21500000Y-30857500D03*
|
||||
X-21500000Y-30357500D03*
|
||||
X-21500000Y-29857500D03*
|
||||
X-21500000Y-29357500D03*
|
||||
X-21500000Y-28857500D03*
|
||||
X-21500000Y-28357500D03*
|
||||
X-21500000Y-27857500D03*
|
||||
D24*
|
||||
X-21587500Y-27357500D03*
|
||||
D25*
|
||||
X-23000000Y-25945000D03*
|
||||
D27*
|
||||
X-23500000Y-25855000D03*
|
||||
X-24000000Y-25855000D03*
|
||||
X-24500000Y-25855000D03*
|
||||
X-25000000Y-25855000D03*
|
||||
X-25500000Y-25855000D03*
|
||||
X-26000000Y-25855000D03*
|
||||
X-26500000Y-25855000D03*
|
||||
X-27000000Y-25855000D03*
|
||||
D25*
|
||||
X-27500000Y-25945000D03*
|
||||
X-28000000Y-25945000D03*
|
||||
X-28500000Y-25945000D03*
|
||||
D22*
|
||||
X-16500000Y43087500D03*
|
||||
X-16500000Y44912500D03*
|
||||
D28*
|
||||
X-13062500Y47000000D03*
|
||||
X-14937500Y47000000D03*
|
||||
D22*
|
||||
X-20000000Y44912500D03*
|
||||
X-20000000Y43087500D03*
|
||||
D29*
|
||||
X-1550000Y-38400000D03*
|
||||
D30*
|
||||
X-7850000Y-36100000D03*
|
||||
D29*
|
||||
X-1550000Y-36100000D03*
|
||||
X-1550000Y-33800000D03*
|
||||
D31*
|
||||
X-37000000Y-28950000D03*
|
||||
X-37000000Y-31850000D03*
|
||||
X-34700000Y-31850000D03*
|
||||
X-34700000Y-28950000D03*
|
||||
D32*
|
||||
X-36800000Y-24150000D03*
|
||||
X-34900000Y-24150000D03*
|
||||
D33*
|
||||
X-5650000Y-17062500D03*
|
||||
X-5650000Y-15237500D03*
|
||||
D22*
|
||||
X-9500000Y43000000D03*
|
||||
X-9500000Y44825000D03*
|
||||
D34*
|
||||
X-7887500Y-12750000D03*
|
||||
X-12012500Y-12750000D03*
|
||||
X-1987500Y-29150000D03*
|
||||
X-6112500Y-29150000D03*
|
||||
D35*
|
||||
X-38625000Y-38850000D03*
|
||||
X-33375000Y-38850000D03*
|
||||
X-38625000Y-37150000D03*
|
||||
X-33375000Y-37150000D03*
|
||||
D36*
|
||||
X-25641332Y45853643D03*
|
||||
X-29353643Y42141332D03*
|
||||
X-28151562Y40939251D03*
|
||||
X-24439251Y44651562D03*
|
||||
D12*
|
||||
X-18970000Y-34250000D03*
|
||||
X-18970000Y-36150000D03*
|
||||
X-9100000Y-27900000D03*
|
||||
X-9100000Y-26000000D03*
|
||||
X-13000000Y-30190000D03*
|
||||
X-13000000Y-32090000D03*
|
||||
D23*
|
||||
X-31250000Y-24150000D03*
|
||||
X-33150000Y-24150000D03*
|
||||
D28*
|
||||
X-16562500Y47000000D03*
|
||||
X-18437500Y47000000D03*
|
||||
D37*
|
||||
X-12625000Y-4545000D03*
|
||||
X-12625000Y-5815000D03*
|
||||
X-12625000Y-7085000D03*
|
||||
X-12625000Y-8355000D03*
|
||||
X-7675000Y-8355000D03*
|
||||
X-7675000Y-7085000D03*
|
||||
X-7675000Y-5815000D03*
|
||||
X-7675000Y-4545000D03*
|
||||
D22*
|
||||
X-32200000Y-32687500D03*
|
||||
X-32200000Y-34512500D03*
|
||||
D38*
|
||||
X-38450000Y-10400000D03*
|
||||
X-38450000Y-12300000D03*
|
||||
X-36050000Y-11350000D03*
|
||||
D11*
|
||||
X-32200000Y-26320000D03*
|
||||
X-32200000Y-28220000D03*
|
||||
D36*
|
||||
X-34957196Y36494885D03*
|
||||
X-31244885Y40207196D03*
|
||||
X-33755115Y35292804D03*
|
||||
X-30042804Y39005115D03*
|
||||
D28*
|
||||
X-20062500Y47000000D03*
|
||||
X-21937500Y47000000D03*
|
||||
D32*
|
||||
X-36800000Y-26400000D03*
|
||||
X-34900000Y-26400000D03*
|
||||
D11*
|
||||
X-31000000Y-37050000D03*
|
||||
X-31000000Y-38950000D03*
|
||||
D28*
|
||||
X-6062500Y47000000D03*
|
||||
X-7937500Y47000000D03*
|
||||
D12*
|
||||
X-16570000Y-34250000D03*
|
||||
X-16570000Y-36150000D03*
|
||||
D23*
|
||||
X-34900000Y-34400000D03*
|
||||
X-36800000Y-34400000D03*
|
||||
D12*
|
||||
X-14150000Y-36150000D03*
|
||||
X-14150000Y-34250000D03*
|
||||
D28*
|
||||
X-9562500Y47000000D03*
|
||||
X-11437500Y47000000D03*
|
||||
D39*
|
||||
X-12005000Y-22425000D03*
|
||||
X-10735000Y-22425000D03*
|
||||
X-9465000Y-22425000D03*
|
||||
X-8195000Y-22425000D03*
|
||||
X-8195000Y-17475000D03*
|
||||
X-9465000Y-17475000D03*
|
||||
X-10735000Y-17475000D03*
|
||||
X-12005000Y-17475000D03*
|
||||
D40*
|
||||
X-15550000Y-25590000D03*
|
||||
X-19450000Y-25590000D03*
|
||||
X-15550000Y-24320000D03*
|
||||
X-19450000Y-24320000D03*
|
||||
X-15550000Y-23050000D03*
|
||||
X-19450000Y-23050000D03*
|
||||
X-15550000Y-21780000D03*
|
||||
X-19450000Y-21780000D03*
|
||||
X-15550000Y-20510000D03*
|
||||
X-19450000Y-20510000D03*
|
||||
D22*
|
||||
X-13000000Y43087500D03*
|
||||
X-13000000Y44912500D03*
|
||||
M02*
|
||||
2293
pcb/mobo/rev06-B0/mobo-F_Silkscreen.gbr
Normal file
2293
pcb/mobo/rev06-B0/mobo-F_Silkscreen.gbr
Normal file
File diff suppressed because it is too large
Load Diff
7
pcb/mobo/rev06-B0/mobo-NPTH.drl
Normal file
7
pcb/mobo/rev06-B0/mobo-NPTH.drl
Normal file
@@ -0,0 +1,7 @@
|
||||
M48
|
||||
INCH,TZ
|
||||
%
|
||||
G90
|
||||
G05
|
||||
T0
|
||||
M30
|
||||
87
pcb/mobo/rev06-B0/mobo-PTH.drl
Normal file
87
pcb/mobo/rev06-B0/mobo-PTH.drl
Normal file
@@ -0,0 +1,87 @@
|
||||
M48
|
||||
INCH,TZ
|
||||
T1C0.0157
|
||||
T2C0.0394
|
||||
%
|
||||
G90
|
||||
G05
|
||||
T1
|
||||
X-15138Y-5276
|
||||
X-14249Y13476
|
||||
X-13878Y-6575
|
||||
X-13051Y-9075
|
||||
X-12854Y-12126
|
||||
X-12480Y-12028
|
||||
X-12008Y-13819
|
||||
X-11890Y-5866
|
||||
X-11732Y-6713
|
||||
X-11713Y-15335
|
||||
X-11673Y-13248
|
||||
X-11654Y-7933
|
||||
X-11654Y-9508
|
||||
X-11555Y-13642
|
||||
X-10965Y-13996
|
||||
X-10925Y-14488
|
||||
X-10827Y17323
|
||||
X-10433Y-14507
|
||||
X-10335Y-13996
|
||||
X-10256Y-6713
|
||||
X-10157Y-11440
|
||||
X-10157Y-11873
|
||||
X-9843Y-14508
|
||||
X-9724Y-11440
|
||||
X-9724Y-11873
|
||||
X-9646Y-9370
|
||||
X-9469Y-14763
|
||||
X-9350Y-5866
|
||||
X-9295Y-9551
|
||||
X-8799Y-6713
|
||||
X-8760Y-7933
|
||||
X-8543Y-8661
|
||||
X-8071Y-7638
|
||||
X-7874Y16614
|
||||
X-7776Y-10650
|
||||
X-7638Y-11043
|
||||
X-7480Y-14724
|
||||
X-7177Y-7274
|
||||
X-7008Y-12362
|
||||
X-6654Y-5669
|
||||
X-6516Y-6043
|
||||
X-6496Y16614
|
||||
X-6369Y-6450
|
||||
X-6260Y-11043
|
||||
X-6181Y-10669
|
||||
X-6008Y-6355
|
||||
X-5866Y-7362
|
||||
X-5866Y-7756
|
||||
X-5866Y-9331
|
||||
X-5780Y-6036
|
||||
X-5118Y16614
|
||||
X-5020Y-4035
|
||||
X-4815Y-701
|
||||
X-3740Y16614
|
||||
X-2362Y16614
|
||||
X-1457Y-9272
|
||||
X-1339Y-79
|
||||
X-1339Y-551
|
||||
X-1339Y-5512
|
||||
X-1339Y-5984
|
||||
X-315Y-79
|
||||
X-315Y-551
|
||||
X-295Y-5512
|
||||
X-295Y-5965
|
||||
T2
|
||||
X-12000Y-4000
|
||||
X-12000Y-5000
|
||||
X-11000Y-4000
|
||||
X-11000Y-5000
|
||||
X-10000Y-4000
|
||||
X-10000Y-5000
|
||||
X-9000Y-4000
|
||||
X-9000Y-5000
|
||||
X-8000Y-4000
|
||||
X-8000Y-5000
|
||||
X-7000Y-4000
|
||||
X-7000Y-5000
|
||||
T0
|
||||
M30
|
||||
3
pcb/mobo/sym-lib-table
Normal file
3
pcb/mobo/sym-lib-table
Normal file
@@ -0,0 +1,3 @@
|
||||
(sym_lib_table
|
||||
(lib (name "index")(type "KiCad")(uri "${KIPRJMOD}/../../../lib/kicad/index.kicad_sym")(options "")(descr ""))
|
||||
)
|
||||
Reference in New Issue
Block a user