|
56 | 56 | # Some may argue that this is only used by a script, BUT as soon someone accidentally or on purpose starts Arduino IDE
|
57 | 57 | # it will use the default Arduino IDE folders and so can corrupt the build environment.
|
58 | 58 | #
|
59 |
| -# Version: 2.0.1-Build_67 |
| 59 | +# Version: 2.0.2-Build_69 |
60 | 60 | # Change log:
|
61 | 61 | # 12 Jan 2019, 3d-gussner, Fixed "compiler.c.elf.flags=-w -Os -Wl,-u,vfprintf -lprintf_flt -lm -Wl,--gc-sections" in 'platform.txt'
|
62 | 62 | # 16 Jan 2019, 3d-gussner, Build_2, Added development check to modify 'Configuration.h' to prevent unwanted LCD messages that Firmware is unknown
|
|
165 | 165 | # 23 Jun 2021, 3d-gussner, Improve MK404 usage
|
166 | 166 | # 24 Jun 2021, 3d-gussner, Fix MK404 user interaction not to show if compiling 'All' variants
|
167 | 167 | # 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 |
169 | 169 | # Fix DEV_STATUS to set correctly on RC/BETA/ALPHA/DEVEL
|
170 | 170 | # Fix atmegaMK404 Board mem and flash modifications
|
171 | 171 | # Limit atmegaMK404 boards mem to 8,16,32
|
| 172 | +# 20 Jun 2022, 3d-gussner, Change to Ardunio_boards v 1.0.5-1 |
172 | 173 |
|
173 | 174 |
|
174 | 175 | 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
|
225 | 226 | # '?' 'h' argument usage and help
|
226 | 227 | if [ "$help_flag" == "1" ] ; then
|
227 | 228 | echo "***************************************"
|
228 |
| -echo "* PF-build.sh Version: 2.0.1-Build_67 *" |
| 229 | +echo "* PF-build.sh Version: 2.0.2-Build_69 *" |
229 | 230 | echo "***************************************"
|
230 | 231 | echo "Arguments:"
|
231 | 232 | echo "$(tput setaf 2)-b$(tput sgr0) Build/commit number"
|
@@ -536,20 +537,20 @@ BUILD_ENV="1.0.7"
|
536 | 537 | BOARD="prusa_einsy_rambo"
|
537 | 538 | BOARD_PACKAGE_NAME="PrusaResearch"
|
538 | 539 | if [ "$ARDUINO_ENV" == "1.8.19" ]; then
|
539 |
| - BOARD_VERSION="1.0.5" |
| 540 | + BOARD_VERSION="1.0.5-1" |
540 | 541 | else
|
541 | 542 | BOARD_VERSION="1.0.4"
|
542 | 543 | fi
|
543 |
| -#BOARD_URL="https://raw.githubusercontent.com/3d-gussner/Arduino_Boards/master/IDE_Board_Manager/package_prusa3d_index.json" |
544 | 544 | if [ "$ARDUINO_ENV" == "1.8.19" ]; then
|
545 | 545 | 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" |
546 | 547 | else
|
547 | 548 | BOARD_URL="https://raw.githubusercontent.com/prusa3d/Arduino_Boards/master/IDE_Board_Manager/package_prusa3d_index.json"
|
548 | 549 | fi
|
549 | 550 | BOARD_FILENAME="prusa3dboards"
|
550 |
| -#BOARD_FILE_URL="https://raw.githubusercontent.com/3d-gussner/Arduino_Boards/master/IDE_Board_Manager/prusa3dboards-$BOARD_VERSION.tar.bz2" |
551 | 551 | if [ "$ARDUINO_ENV" == "1.8.19" ]; then
|
552 | 552 | 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" |
553 | 554 | else
|
554 | 555 | BOARD_FILE_URL="https://raw.githubusercontent.com/prusa3d/Arduino_Boards/master/IDE_Board_Manager/prusa3dboards-$BOARD_VERSION.tar.bz2"
|
555 | 556 | fi
|
|
0 commit comments