dda793c0ef
- Introduced `kicad_cli.sh` for local and Docker-based kicad-cli execution. - Created `schops.py` for schematic operations including ERC, BOM, netlist exports, and bulk edits. - Added README.md for schops with installation and usage instructions. - Included requirements.txt for necessary Python packages. - Implemented rules engine for applying field defaults and renaming nets. - Added tests for rules engine functionality. - Introduced scope guard script to enforce file modification policies based on PR labels. - Created watch script to monitor KiCad files and trigger hardware gate on changes.
19 lines
335 B
Makefile
19 lines
335 B
Makefile
.PHONY: fw hw s0 docs
|
|
|
|
s0:
|
|
python tools/cockpit/cockpit.py gate_s0
|
|
|
|
fw:
|
|
python tools/cockpit/cockpit.py fw
|
|
|
|
hw:
|
|
@echo "usage: make hw SCHEM=hardware/kicad/<p>/<p>.kicad_sch"
|
|
bash tools/hw/hw_check.sh $(SCHEM)
|
|
|
|
docs:
|
|
python -m pip install -U mkdocs
|
|
mkdocs build --strict
|
|
|
|
compliance:
|
|
python tools/compliance/validate.py --strict
|