forked from rusefi/rusefi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to kicad 7 * update rusefi_lib * update InteractiveHtmlBom * use my branch for now
- Loading branch information
1 parent
37b97cc
commit cfce02f
Showing
7 changed files
with
15 additions
and
11 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 |
---|---|---|
|
@@ -23,6 +23,7 @@ err.txt | |
log.txt | ||
*.rusefi_binary | ||
*.msq | ||
*.kicad_prl | ||
|
||
# Eclipse | ||
.metadata/ | ||
|
Submodule InteractiveHtmlBom
updated
46 files
Submodule rusefi_lib
updated
3 files
+63 −0 | LM1949N.kicad_sym | |
+29 −0 | LM1949N.lib | |
+3 −5 | generate_diffs.sh |
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
#!/bin/bash | ||
|
||
INTERACTIVE_HTML_BOM_NO_DISPLAY="true" | ||
IBOM_CMD="python3 hardware/InteractiveHtmlBom/InteractiveHtmlBom/generate_interactive_bom.py --no-browser --name-format \"%f_latest\" --dest-dir ../ibom --include-nets" | ||
echo "IBOM_CMD=$IBOM_CMD" | ||
ibom() { | ||
python3 hardware/InteractiveHtmlBom/InteractiveHtmlBom/generate_interactive_bom.py --no-browser --name-format "%f_latest" --dest-dir ../ibom --include-nets $@ | ||
} | ||
|
||
pwd | ||
[ -e hardware/frankenso/frankenso.kicad_pcb ] || { echo "hardware/frankenso/frankenso.kicad_pcb not found. Was this invoked from wrong folder?"; exit -1; } | ||
echo "Current directory: $(pwd)" | ||
[ $(basename $(pwd)) = 'rusefi' ] || { echo "Not in 'rusefi' directory. Was this invoked from the wrong directory?"; exit 1; } | ||
|
||
for f in $(ls hardware/*/*.kicad_pcb); do | ||
if ls $(dirname $f)/$(basename $f .kicad_pcb).net 2>/dev/null; then | ||
$IBOM_CMD --netlist-file $(ls $(dirname $f)/$(basename $f .kicad_pcb).net) $f | ||
ibom --netlist-file $(ls $(dirname $f)/$(basename $f .kicad_pcb).net) $f | ||
else | ||
$IBOM_CMD $f | ||
ibom $f | ||
fi | ||
done |
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