Externalize antenna calc and wav view (#2498)

* externalize antenna calc and wav view
* Added a tool to check if all the pictures in graphics are used in internal apps
This commit is contained in:
gullradriel 2025-01-26 21:36:21 +01:00 committed by GitHub
parent b2bb37af74
commit a65ef3ce2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 191 additions and 93 deletions

View file

@ -0,0 +1,10 @@
#!/bin/bash
for fname in $(ls ../graphics/); do
fname=$(echo "$fname" | awk -F'.' '{print $1}')
out=$(grep -r --exclude="bitmap.hpp" "$fname" ../* )
ret=$?
if [[ "$ret" -ne 0 ]]; then
echo "$fname not found"
fi
done