Browse Source

first commit

root 8 years ago
commit
4c9acd9661
10 changed files with 68 additions and 0 deletions
  1. 10 0
      README.md
  2. BIN
      arduino_firmware.tar.gz
  3. BIN
      backup.tar.xz
  4. 38 0
      build.sh
  5. BIN
      flashrom-0.9.7.tar.bz2
  6. 3 0
      make_backup.sh
  7. 15 0
      make_dummy.sh
  8. 2 0
      prepare_arduino.sh
  9. BIN
      shematics/P1v1_arduino328.png
  10. BIN
      shematics/P3v1_dil8_so8_spi.png

+ 10 - 0
README.md

@@ -0,0 +1,10 @@
+### SPI Serial Arduino programmer
+
+This project is a personal fork from:
+- https://github.com/urjaman/frser-duino (firmware for arduino)
+- https://github.com/jhcloos/flashrom.git (flashrom tool)
+- https://github.com/pepe2k/u-boot_mod.git (uboot mod for openwrt)
+
+Volontary using other than last build...
+With last build there is some error with mr3020 firmare
+

BIN
arduino_firmware.tar.gz


BIN
backup.tar.xz


+ 38 - 0
build.sh

@@ -0,0 +1,38 @@
+#!/bin/bash
+echo "installation des librairies"
+sleep 1
+apt-get update
+apt-get install build-essential git avr-libc gcc-avr libpci-dev avrdude
+echo "Decompression des fichiers"
+sleep 2
+if [ ! -d "arduino_firmware" ]; then
+tar xvfz arduino_firmware.tar.gz
+fi
+if [ ! -d "flashrom-0.9.7" ]; then
+tar xvfj flashrom-0.9.7.tar.bz2
+fi
+if [ ! -d "backup" ]; then
+tar xvfJ backup.tar.xz
+fi
+echo "Compilation des programmes"
+sleep 2
+cd flashrom-0.9.7
+if [ ! -e "flashrom" ]; then
+make
+fi
+cd ..
+cd arduino_firmware
+if [ ! -e "serprog.hex" ]; then
+make
+fi
+echo "Programmation de l'arduino"
+echo "Press [ENTER] to continue...: "
+read var_name
+make upload
+cd ..
+echo "Arduino Ready..."
+sleep 1
+echo ""
+echo "Test du firmware..."
+ln -s flashrom-0.9.7/flashrom ./flashrom
+./flashrom -p serprog:dev=/dev/ttyACM0:2000000

BIN
flashrom-0.9.7.tar.bz2


+ 3 - 0
make_backup.sh

@@ -0,0 +1,3 @@
+#!/bin/bash
+./flashrom -p serprog:dev=/dev/ttyACM0:2000000 -r backup.bin
+echo "n'oubliez pas de renomer le fichier !!!!"

+ 15 - 0
make_dummy.sh

@@ -0,0 +1,15 @@
+#!/bin/bash
+## dumy maker
+## la fichier dummy correspond à la taille maximale de votre puce - le firmware
+## par exemple pour une puce de 16M la taille de la puce est de 16777216 bytes
+## si mon firmware fait 65536 bytes
+## 16777216-65536 = 16711680 byte
+## le fichier dummy fera donc 16711680
+## ensuite il faudra coller le fichier dummy à la fin du firmware
+## copy firmware.bin tampon.bin
+## cat dummy.bin >> tampon.bin
+## mv tampon.bin firmware_full.bin
+
+#dd if=/dev/zero of=dummy4.bin bs=4128768 count=1
+dd if=/dev/zero of=dummy128.bin bs=16651264 count=1
+#dd if=/dev/zero of=dummy128_f.bin bs=12582912 count=1

+ 2 - 0
prepare_arduino.sh

@@ -0,0 +1,2 @@
+#!/bin/bash
+avrdude -c arduino -p m328p -P /dev/ttyACM0 -B 19200  -U flash:w:frser-duino.hex

BIN
shematics/P1v1_arduino328.png


BIN
shematics/P3v1_dil8_so8_spi.png