Skip to content

Commit f109810

Browse files
authored
Merge pull request prusa3d#3500 from 3d-gussner/gnu++17
GNU++17 Arduino_boards version 1.0.5-1
2 parents 75521dc + 881e296 commit f109810

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

PF-build.sh

+7-6
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# Some may argue that this is only used by a script, BUT as soon someone accidentally or on purpose starts Arduino IDE
5757
# it will use the default Arduino IDE folders and so can corrupt the build environment.
5858
#
59-
# Version: 2.0.1-Build_67
59+
# Version: 2.0.2-Build_69
6060
# Change log:
6161
# 12 Jan 2019, 3d-gussner, Fixed "compiler.c.elf.flags=-w -Os -Wl,-u,vfprintf -lprintf_flt -lm -Wl,--gc-sections" in 'platform.txt'
6262
# 16 Jan 2019, 3d-gussner, Build_2, Added development check to modify 'Configuration.h' to prevent unwanted LCD messages that Firmware is unknown
@@ -165,10 +165,11 @@
165165
# 23 Jun 2021, 3d-gussner, Improve MK404 usage
166166
# 24 Jun 2021, 3d-gussner, Fix MK404 user interaction not to show if compiling 'All' variants
167167
# 24 Jun 2021, 3d-gussner, MK404 is only supported on Linux at this moment.
168-
# 24 Feb 2021, 3d-gussner, Change to Arduino IDE 1.8.19 and Arduino boards 1.0.5
168+
# 24 Feb 2022, 3d-gussner, Change to Arduino IDE 1.8.19 and Arduino boards 1.0.5
169169
# Fix DEV_STATUS to set correctly on RC/BETA/ALPHA/DEVEL
170170
# Fix atmegaMK404 Board mem and flash modifications
171171
# Limit atmegaMK404 boards mem to 8,16,32
172+
# 20 Jun 2022, 3d-gussner, Change to Ardunio_boards v 1.0.5-1
172173

173174

174175
SCRIPT_PATH="$( cd "$(dirname "$0")" ; pwd -P )"
@@ -225,7 +226,7 @@ while getopts b:c:d:g:h:i:j:l:m:n:o:p:v:x:y:?h flag
225226
# '?' 'h' argument usage and help
226227
if [ "$help_flag" == "1" ] ; then
227228
echo "***************************************"
228-
echo "* PF-build.sh Version: 2.0.1-Build_67 *"
229+
echo "* PF-build.sh Version: 2.0.2-Build_69 *"
229230
echo "***************************************"
230231
echo "Arguments:"
231232
echo "$(tput setaf 2)-b$(tput sgr0) Build/commit number"
@@ -536,20 +537,20 @@ BUILD_ENV="1.0.7"
536537
BOARD="prusa_einsy_rambo"
537538
BOARD_PACKAGE_NAME="PrusaResearch"
538539
if [ "$ARDUINO_ENV" == "1.8.19" ]; then
539-
BOARD_VERSION="1.0.5"
540+
BOARD_VERSION="1.0.5-1"
540541
else
541542
BOARD_VERSION="1.0.4"
542543
fi
543-
#BOARD_URL="https://raw.githubusercontent.com/3d-gussner/Arduino_Boards/master/IDE_Board_Manager/package_prusa3d_index.json"
544544
if [ "$ARDUINO_ENV" == "1.8.19" ]; then
545545
BOARD_URL="https://raw.githubusercontent.com/prusa3d/Arduino_Boards/devel/IDE_Board_Manager/package_prusa3d_index.json"
546+
#BOARD_URL="https://raw.githubusercontent.com/3d-gussner/Arduino_Boards/devel/IDE_Board_Manager/package_prusa3d_index.json"
546547
else
547548
BOARD_URL="https://raw.githubusercontent.com/prusa3d/Arduino_Boards/master/IDE_Board_Manager/package_prusa3d_index.json"
548549
fi
549550
BOARD_FILENAME="prusa3dboards"
550-
#BOARD_FILE_URL="https://raw.githubusercontent.com/3d-gussner/Arduino_Boards/master/IDE_Board_Manager/prusa3dboards-$BOARD_VERSION.tar.bz2"
551551
if [ "$ARDUINO_ENV" == "1.8.19" ]; then
552552
BOARD_FILE_URL="https://raw.githubusercontent.com/prusa3d/Arduino_Boards/devel/IDE_Board_Manager/prusa3dboards-$BOARD_VERSION.tar.bz2"
553+
#BOARD_FILE_URL="https://raw.githubusercontent.com/3d-gussner/Arduino_Boards/devel/IDE_Board_Manager/prusa3dboards-$BOARD_VERSION.tar.bz2"
553554
else
554555
BOARD_FILE_URL="https://raw.githubusercontent.com/prusa3d/Arduino_Boards/master/IDE_Board_Manager/prusa3dboards-$BOARD_VERSION.tar.bz2"
555556
fi

0 commit comments

Comments
 (0)