fixed paths

This commit is contained in:
cpu
2026-06-07 15:19:45 +02:00
parent b8f169315f
commit 496ef45a44
2 changed files with 4 additions and 4 deletions

View File

@@ -14,6 +14,6 @@ chmod +x export.sh
The script will first generate gerber files in the `output` directory and then convert them into `ngc` format in the `gcode` directory.
Launch the `gSender` program.
* Load the `drill.ngc` file for drilling holes.
* Load the `outline.ngc` file for milling the board outlines.
* Load the `back.ngc` file if you want to mill the isolation traces.
* Load the `gcode/drill.ngc` file for drilling holes.
* Load the `gcode/outline.ngc` file for milling the board outlines.
* Load the `gcode/back.ngc` file if you want to mill the isolation traces.

View File

@@ -11,7 +11,7 @@ kicad-cli pcb export drill -o output $1
mkdir -p gcode
docker run --rm -i -t -v ".:/data" ptodorov/pcb2gcode \
docker run --rm -i -t -u "$(id -u):$(id -g)" -v ".:/data" ptodorov/pcb2gcode \
--back="output/$filename-B_Cu.gbl" \
--drill="output/$filename.drl" \
--outline="output/$filename-Edge_Cuts.gm1"