-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
434 changed files
with
1,509,617 additions
and
287,606 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,4 +28,4 @@ for harness in pnp/cad/CHA/*/ ; do | |
echo "Skipping img folder" | ||
fi | ||
fi | ||
done | ||
done |
101 changes: 101 additions & 0 deletions
101
.github/workflows/scripts/kibot/config-2layer-nobom.kibot.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# 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] | ||
- ["^SSOP-", 270.0] | ||
|
||
preflight: | ||
# Disable ERC for now while GPereira updates these items. | ||
run_erc: false | ||
update_xml: false | ||
# Disable DRC for now while GPereira updates these items. | ||
run_drc: false | ||
check_zone_fills: true | ||
ignore_unconnected: true | ||
|
||
outputs: | ||
- 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 | ||
|
||
- 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 | ||
|
||
- name: board_bottom | ||
comment: "Bottom layer view" | ||
type: pcbdraw | ||
dir: . | ||
options: | ||
format: png | ||
bottom: true | ||
|
||
- name: 'step_file' | ||
comment: 'STEP file generation' | ||
type: step | ||
dir: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.