|
Arduino an Raspberry Pi über Netzwerk flashen 15. October 2015 11:11 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 3.385 |

|
Re: Arduino an Raspberry Pi über Netzwerk flashen 15. October 2015 11:29 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 2.094 |
|
Re: Arduino an Raspberry Pi über Netzwerk flashen 15. October 2015 12:56 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 4.977 |
| Triffid Hunter's Calibration Guide | --> X <-- Drill for new Monitor | Most important Gcode. |
|
Re: Arduino an Raspberry Pi über Netzwerk flashen 15. October 2015 15:19 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 129 |
|
Re: Arduino an Raspberry Pi über Netzwerk flashen 16. October 2015 12:40 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 214 |
|
Re: Arduino an Raspberry Pi über Netzwerk flashen 16. October 2015 12:56 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 689 |
|
Re: Arduino an Raspberry Pi über Netzwerk flashen 16. October 2015 13:26 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 3.385 |
|
Re: Arduino an Raspberry Pi über Netzwerk flashen 24. October 2015 08:56 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 208 |
apt-get install arduino
diff -Nur Marlin-1.1.0-RC2/Marlin/Makefile Marlin-1.1.0-RC2_prod/Marlin/Makefile --- Marlin-1.1.0-RC2/Marlin/Makefile 2015-09-30 03:28:41.000000000 +0200 +++ Marlin-1.1.0-RC2_prod/Marlin/Makefile 2015-10-24 08:55:00.998151090 +0200 @@ -37,21 +37,21 @@ # from the commandline with "make HARDWARE_MOTHERBOARD=71" for example # This defined the board you are compiling for (see boards.h for the options) -HARDWARE_MOTHERBOARD ?= 11 +HARDWARE_MOTHERBOARD ?= 33 # Arduino source install directory, and version number # On most linuxes this will be /usr/share/arduino -ARDUINO_INSTALL_DIR ?= /usr/share/arduino -ARDUINO_VERSION ?= 105 +ARDUINO_INSTALL_DIR ?= /usr/src/arduino-1.0.6 +ARDUINO_VERSION ?= 106 # You can optionally set a path to the avr-gcc tools. Requires a trailing slash. (ex: /usr/local/avr-gcc/bin) AVR_TOOLS_PATH ?= #Programmer configuration UPLOAD_RATE ?= 115200 -AVRDUDE_PROGRAMMER ?= wiring +AVRDUDE_PROGRAMMER ?= stk500v2 # on most linuxes this will be /dev/ttyACM0 or /dev/ttyACM1 -UPLOAD_PORT ?= /dev/arduino +UPLOAD_PORT ?= /dev/ttyACM0 #Directory used to build files in, contains all the build files, from object files to the final hex file #on linux it is best to put an absolute path like /home/username/tmp . @@ -354,6 +354,7 @@ else AVRDUDE_CONF = $(ARDUINO_INSTALL_DIR)/hardware/tools/avr/etc/avrdude.conf endif +AVRDUDE_CONF = /etc/avrdude.conf AVRDUDE_FLAGS = -D -C$(AVRDUDE_CONF) \ -p$(MCU) -P$(AVRDUDE_PORT) -c$(AVRDUDE_PROGRAMMER) \ -b$(UPLOAD_RATE)
cd /usr/src wget [github.com] mv 1.1.0-RC2.zip Marlin-1.1.0-RC2.zip unzip Marlin-1.1.0-RC2.zip cd Marlin-1.1.0-RC2 && patch -p1 <patchdatei
make clean all upload