mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-08-20 21:32:03 +02:00
M67 (#592)
* Implemented gcode parsing. No action yet. * Added iImmediate version of commands. * Analog I/O working - don't merge yet. * Ready for review * Fixing issues and mask variable size
This commit is contained in:
@@ -9,8 +9,10 @@ trap "echo; exit 255" SIGINT
|
||||
# With -v, show all output. Otherwise, show just the result
|
||||
if [ "$1" = "-v" ]; then
|
||||
FILTER="cat"
|
||||
FILTER2="cat"
|
||||
else
|
||||
FILTER="grep -v Compiling | grep error\|Took"
|
||||
FILTER="grep -v Compiling"
|
||||
FILTER2="grep error\|Took"
|
||||
fi
|
||||
set -o pipefail
|
||||
NUM_ERRORS=0
|
||||
@@ -20,7 +22,7 @@ BuildMachine () {
|
||||
BF="\"-DMACHINE_FILENAME=$basename\""
|
||||
displayname=$basename
|
||||
echo "Building machine $displayname"
|
||||
PLATFORMIO_BUILD_FLAGS=$BF platformio run 2>&1 | $FILTER
|
||||
PLATFORMIO_BUILD_FLAGS=$BF platformio run 2>&1 | $FILTER | $FILTER2
|
||||
local re=$?
|
||||
# check result
|
||||
if [ $re -ne 0 ]; then
|
||||
|
Reference in New Issue
Block a user