tune cangrow.sh

This commit is contained in:
Marcus 2024-10-17 01:01:37 +02:00
parent cf58ef292b
commit 529bd7e556
2 changed files with 8 additions and 6 deletions

View file

@ -59,6 +59,7 @@
// https://github.com/PaulStoffregen/Time
#include <TimeLib.h>
#include "LittleFS.h"
void setup() {

View file

@ -4,11 +4,12 @@
test -z $TTY && TTY="/dev/ttyUSB0"
test -z $IP && IP="192.168.30.212"
test -z $VER && VER="0.1-dev"
test -z $BOARD && BOARD="esp8266:esp8266:d1_mini_clone"
BUILD="$(git rev-parse --short HEAD)-$(date '+%Y%m%d%H%M%S')"
ACLI="$HOME/.local/bin/arduino-cli"
ACLI_CMD="$ACLI --config-file arduino-cli.yml"
BOARD="esp8266:esp8266:d1_mini_clone"
function help() {
echo "$0 [setup|build|upload|webupload|monitor]"
@ -74,11 +75,11 @@ case $1 in
check_acli
echo ":: Building firmware $VER $BUILD, target dir: $(pwd)/build/"
test -d build || mkdir build
echo "/* CanGrow_Version.h gets generated from cangrow.sh */
const char* CanGrowVer = \"${VER}\";
const char* CanGrowBuild = \"${BUILD}\";
" > Arduino/CanGrow/CanGrow_Version.h
# echo "/* CanGrow_Version.h gets generated from cangrow.sh */
#
#const char* CanGrowVer = \"${VER}\";
#const char* CanGrowBuild = \"${BUILD}\";
#" > Arduino/CanGrow/CanGrow_Version.h
${ACLI_CMD} --no-color compile -b ${BOARD} "Arduino/CanGrow/CanGrow.ino" --output-dir build/ || exit 1
cp build/CanGrow.ino.bin build/CanGrow_v${VER}_${BUILD}.bin
;;