Your Name il y a 3 ans
Parent
commit
b7ffe5e182
2 fichiers modifiés avec 16 ajouts et 2 suppressions
  1. 15 1
      build.sh
  2. 1 1
      make_backup.sh

+ 15 - 1
build.sh

@@ -6,7 +6,7 @@ set -e
 ################
 CWD="$(pwd)" # current working directory
 flash_arduino="u2" # u2 or ftdi
-arduino_device="ttyUSB0" # ls /dev/tty* and find your arduino
+arduino_device="ttyACM0" # ls /dev/tty* and find your arduino
 mega=2560 #2560 or 1280
 
 script_version="1.0.0"
@@ -26,12 +26,26 @@ echo -e "\e[97m\u2551      Release date: \e[93m"$rdate"\e[0m\e[97m    \u2551\e[0
 echo -n -e "\e[97m\u255A"
 for j in {1..34}; do echo -e -n "\u2550";done
 echo -e -n "\u255D\e[0m"
+if [ -a /dev/ttyACM0 ]
+then
+arduino_device="ttyACM0"
 echo
 
 
 function arduino_ {
 echo -e ""
 echo -e "\e[92m\e[4mBuild Arduino SPIFlash tools:\e[0m\e[24m"
+if [ -a /dev/ttyACM0 ]
+then
+arduino_device="ttyACM0"
+fi
+if [ -a /dev/ttyUSB0 ]
+then
+arduino_device="ttyUSB0"
+fi
+
+echo "Arduino device found at: $arduino_device"
+echo ""
 
 echo -e "\n\e[93mPerforming Update :\e[0m"
 sudo apt-get install flashrom gcc-avr binutils-avr gdb-avr avr-libc avrdude libpci-dev git libusb-1.0-0-dev libftdi-dev -y

+ 1 - 1
make_backup.sh

@@ -1,5 +1,5 @@
 #!/bin/bash
-device=raspberry #arduino or raspberry
+device=arduino #arduino or raspberry
 port=ttyACM0
 baud=115200
 rpi_speed=20000 # between 512 to 30000, 20000 seems to be the best