123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- #!/bin/bash
-
- # SPDX-FileCopyrightText: 2024 Thomas Buck <thomas@xythobuz.de>
- # SPDX-License-Identifier: CERN-OHL-S-2.0+
- #
- # ------------------------------------------------------------------------------
- # | Copyright (c) 2024 Thomas Buck <thomas@xythobuz.de> |
- # | |
- # | This source describes Open Hardware and is licensed under the CERN-OHL-S v2 |
- # | or any later version. |
- # | |
- # | You may redistribute and modify this source and make products using it under |
- # | the terms of the CERN-OHL-S v2 (https://ohwr.org/cern_ohl_s_v2.txt) |
- # | or any later version. |
- # | |
- # | This source is distributed WITHOUT ANY EXPRESS OR IMPLIED WARRANTY, |
- # | INCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY AND FITNESS FOR A |
- # | PARTICULAR PURPOSE. Please see the CERN-OHL-S v2 (or any later version) |
- # | for applicable conditions. |
- # | |
- # | Source location: https://git.xythobuz.de/thomas/drumkit |
- # | |
- # | As per CERN-OHL-S v2 section 4, should You produce hardware based on this |
- # | source, You must where practicable maintain the Source Location visible |
- # | on the external case of the Gizmo or other products you make using this |
- # | source. |
- # ------------------------------------------------------------------------------
-
- INSCH="lars2.kicad_sch"
- INPCB="lars2.kicad_pcb"
- OUTDIR="plot"
- LAYER_F="F.Cu,F.Mask,F.Paste,F.Silkscreen,Edge.Cuts,User.Drawings"
- LAYER_B="B.Cu,B.Mask,B.Paste,B.Silkscreen,Edge.Cuts,User.Drawings"
- LAYER_MANUAL="B.Cu,Edge.Cuts"
-
- cd "$(dirname "$0")"
- rm -rf $OUTDIR
- mkdir -p $OUTDIR
-
- # --------------
- # | 2D Schematic |
- # --------------
-
- for IN in $INSCH
- do
- echo "Exporting schematic $IN"
-
- for TYPE in pdf svg
- do
- echo "Exporting schematic $TYPE"
- rm -rf $OUTDIR/$IN.$TYPE
- kicad-cli sch export $TYPE \
- -t "KiCad Default" \
- -o $OUTDIR/$IN.$TYPE \
- $IN
- echo
- done
- done
-
- for IN in $INPCB
- do
- echo "Exporting board $IN"
-
- # -----------
- # | 2D Layout |
- # -----------
-
- for TYPE in pdf svg
- do
- rm -rf $OUTDIR/$IN.$TYPE
-
- echo "Exporting board $TYPE"
- kicad-cli pcb export $TYPE \
- -t "KiCad Classic" \
- -l $LAYER_F,$LAYER_B \
- -o $OUTDIR/$IN.$TYPE \
- $IN
- echo
-
- echo "Exporting DIY board $VAR"
- rm -rf $OUTDIR/${IN}_diy.$TYPE
- kicad-cli pcb export $TYPE \
- -t "KiCad Default" \
- -l $LAYER_MANUAL \
- --black-and-white \
- --negative \
- -o $OUTDIR/${IN}_diy.$TYPE \
- $IN
- echo
- done
-
- # -----------
- # | 3D Layout |
- # -----------
- echo "Exporting board 3D"
- kicad-cli pcb export vrml \
- -o $OUTDIR/$IN.wrl \
- $IN
- echo
- done
|