From 98b8a45868ef3b500352bafd4cb0b1ac38d0674d Mon Sep 17 00:00:00 2001 From: sparr Date: Thu, 10 Nov 2011 04:25:13 -0500 Subject: note Sanguino-specific steps --- README | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README b/README index 34fc7a6..21a1272 100644 --- a/README +++ b/README @@ -32,6 +32,8 @@ From a fresh Ubuntu install how to update the firmware of your Prusa Mendel ? This version uses the http://reprap.org/wiki/Sanguinololu. Some details may not fit your hardware, be sure to check what you are doing) +Steps 3,10,11 are hardware-specific to the Sanuiglolu and Bath Prusa and should be skipped or modified accordingly for other hardware such as the Arduino Mega 2560 + Software installation ---------------------- -- cgit v1.2.1 From f0e3ab1e22d80b4edf32862a31eb7f27f60eafa4 Mon Sep 17 00:00:00 2001 From: sparr Date: Thu, 10 Nov 2011 04:31:44 -0500 Subject: spelling correction --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README b/README index 21a1272..2bd4c29 100644 --- a/README +++ b/README @@ -32,7 +32,7 @@ From a fresh Ubuntu install how to update the firmware of your Prusa Mendel ? This version uses the http://reprap.org/wiki/Sanguinololu. Some details may not fit your hardware, be sure to check what you are doing) -Steps 3,10,11 are hardware-specific to the Sanuiglolu and Bath Prusa and should be skipped or modified accordingly for other hardware such as the Arduino Mega 2560 +Steps 3,10,11 are hardware-specific to the Sanguinololu and Bath Prusa and should be skipped or modified accordingly for other hardware such as the Arduino Mega 2560 Software installation ---------------------- -- cgit v1.2.1 From 3bbfe733e7bad3577e0a7bcdcf22155a2808ceb8 Mon Sep 17 00:00:00 2001 From: Markus Hitter Date: Mon, 28 Nov 2011 16:02:58 +0100 Subject: pins.h: allow an ATmega644 (without P). --- Sprinter/pins.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sprinter/pins.h b/Sprinter/pins.h index fbe6a6e..65ef26a 100644 --- a/Sprinter/pins.h +++ b/Sprinter/pins.h @@ -630,7 +630,7 @@ #endif #if MOTHERBOARD == 6 #define KNOWN_BOARD 1 -#if !defined(__AVR_ATmega644P__) && !defined(__AVR_ATmega1284P__) +#if !defined(__AVR_ATmega644__) && !defined(__AVR_ATmega644P__) && !defined(__AVR_ATmega1284P__) #error Oops! Make sure you have 'Sanguino' selected from the 'Tools -> Boards' menu. #endif -- cgit v1.2.1 From 67199da50919088a67d0218103be6244f8cbb9d7 Mon Sep 17 00:00:00 2001 From: Kliment Yanev Date: Mon, 28 Nov 2011 16:10:48 +0100 Subject: Revert "Merge pull request #121 from Traumflug/master" This reverts commit 11d3281a09e2a2f0ae7c9695f79d2d903c22716b, reversing changes made to f8c17d3b4655ba9b694c407ff174135badb914a5. --- Sprinter/pins.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sprinter/pins.h b/Sprinter/pins.h index 65ef26a..fbe6a6e 100644 --- a/Sprinter/pins.h +++ b/Sprinter/pins.h @@ -630,7 +630,7 @@ #endif #if MOTHERBOARD == 6 #define KNOWN_BOARD 1 -#if !defined(__AVR_ATmega644__) && !defined(__AVR_ATmega644P__) && !defined(__AVR_ATmega1284P__) +#if !defined(__AVR_ATmega644P__) && !defined(__AVR_ATmega1284P__) #error Oops! Make sure you have 'Sanguino' selected from the 'Tools -> Boards' menu. #endif -- cgit v1.2.1