Your Name 5 years ago
parent
commit
60af257303
3 changed files with 34 additions and 0 deletions
  1. BIN
      Install_tools/RaspberryPiArduino2.png
  2. 34 0
      Install_tools/install_pi.sh
  3. BIN
      Install_tools/piATmega.png

BIN
Install_tools/RaspberryPiArduino2.png


+ 34 - 0
Install_tools/install_pi.sh

@@ -0,0 +1,34 @@
+#!/bin/bash
+sudo apt-get update
+sudo apt-get install -y build-essential bison flex automake libelf-dev libusb-1.0-0-dev libusb-dev libftdi-dev libftdi1
+wget http://download.savannah.gnu.org/releases/avrdude/avrdude-6.3.tar.gz
+tar xvfz avrdude-6.3.tar.gz
+cd avrdude-6.3
+./configure --enable-linuxgpio
+make -j4
+sudo make install
+if [ -f ~/avrdude_gpio.conf ]
+then
+rm ~/avrdude_gpio.conf
+fi
+cp /usr/local/etc/avrdude.conf ~/avrdude_gpio.conf
+cat <<'EOF'>> ~/avrdude_gpio.conf
+
+# Linux GPIO configuration for avrdude.
+# Change the lines below to the GPIO pins connected to the AVR.
+
+programmer
+  id    = "linuxgpio";
+  desc  = "Use the Linux sysfs interface to bitbang GPIO lines";
+  type  = "linuxgpio";
+  reset = 4;
+  sck   = 11;
+  mosi  = 10;
+  miso  = 9;
+;
+
+EOF
+
+sudo cp ~/avrdude_gpio.conf cp /usr/local/etc/avrdude.conf
+
+echo ""

BIN
Install_tools/piATmega.png