Skip to content
Snippets Groups Projects
Commit 625cf329 authored by Krisjanis Rijnieks's avatar Krisjanis Rijnieks :lion_face:
Browse files

Add line about using check_symbol.sh to CONTRIBUTING.md

parent 8cffc68f
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,12 @@ Easy...
1. Whenever adding a new part, use official [KiCad Library Utilities](https://github.com/kicad/kicad-library-utils) to check and fix libraries. There are some things that are not fully respected, such as using rounded rects for rectangular footprints. We use regular rects due to compatibility with some PCB milling tool path generating software.
1. At the moment we skip checking the PWR_FLAG symbol as KLC says it should have a power input pin, but in official KiCad libraries it has power output pin. Use the following to skip it.
```
./check_symbol.py ../../fab.kicad_sym -p '^(?!.*PWR_FLAG).*$' -vs
```
Notice the regex.
1. Do a `git push` to the repository if you have access or use the merge request feature. If you do not know what a merge request is, read about [GitLab merge requests here](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html).
## 3D Models
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment