Browse Source

Merge pull request #2123 from AnHardt/Duemilanove

 Remove Duemilanove
Scott Lahteine 10 years ago
parent
commit
7bc5fd8193
6 changed files with 0 additions and 56 deletions
  1. 0
    3
      .travis.yml
  2. 0
    6
      Marlin/Makefile
  3. 0
    1
      Marlin/boards.h
  4. 0
    1
      Marlin/configurator/config/boards.h
  5. 0
    2
      Marlin/pins.h
  6. 0
    43
      Marlin/pins_DUEMILANOVE_328P.h

+ 0
- 3
.travis.yml View File

@@ -161,6 +161,3 @@ script:
161 161
   #- rm -rf .build/
162 162
   #- ino build -m mega2560
163 163
   ######## Board Types #############
164
-  - sed -i 's/#define MOTHERBOARD BOARD_RAMPS_13_EFB/#define MOTHERBOARD BOARD_DUEMILANOVE_328P/g' Marlin/Configuration.h
165
-  - rm -rf .build/
166
-  - ino build -m atmega328

+ 0
- 6
Marlin/Makefile View File

@@ -99,12 +99,6 @@ else ifeq  ($(HARDWARE_MOTHERBOARD),34)
99 99
 HARDWARE_VARIANT ?= arduino
100 100
 MCU              ?= atmega2560
101 101
 
102
-#Duemilanove w/ ATMega328P pin assignment
103
-else ifeq  ($(HARDWARE_MOTHERBOARD),4)
104
-HARDWARE_VARIANT ?= arduino
105
-HARDWARE_SUB_VARIANT ?= standard
106
-MCU              ?= atmega328p
107
-
108 102
 #Gen6
109 103
 else ifeq  ($(HARDWARE_MOTHERBOARD),5)
110 104
 HARDWARE_VARIANT ?= Gen6

+ 0
- 1
Marlin/boards.h View File

@@ -16,7 +16,6 @@
16 16
 #define BOARD_RAMPS_13_EEF      36   // RAMPS 1.3 / 1.4 (Power outputs: Extruder0, Extruder1, Fan)
17 17
 #define BOARD_RAMPS_13_SF       38   // RAMPS 1.3 / 1.4 (Power outputs: Spindle, Controller Fan)
18 18
 #define BOARD_FELIX2            37   // Felix 2.0+ Electronics Board (RAMPS like)
19
-#define BOARD_DUEMILANOVE_328P  4    // Duemilanove w/ ATMega328P pin assignments
20 19
 #define BOARD_GEN6              5    // Gen6
21 20
 #define BOARD_GEN6_DELUXE       51   // Gen6 deluxe
22 21
 #define BOARD_SANGUINOLOLU_11   6    // Sanguinololu < 1.2

+ 0
- 1
Marlin/configurator/config/boards.h View File

@@ -15,7 +15,6 @@
15 15
 #define BOARD_RAMPS_13_EFF      35   // RAMPS 1.3 / 1.4 (Power outputs: Extruder, Fan, Fan)
16 16
 #define BOARD_RAMPS_13_EEF      36   // RAMPS 1.3 / 1.4 (Power outputs: Extruder0, Extruder1, Fan)
17 17
 #define BOARD_FELIX2            37   // Felix 2.0+ Electronics Board (RAMPS like)
18
-#define BOARD_DUEMILANOVE_328P  4    // Duemilanove w/ ATMega328P pin assignments
19 18
 #define BOARD_GEN6              5    // Gen6
20 19
 #define BOARD_GEN6_DELUXE       51   // Gen6 deluxe
21 20
 #define BOARD_SANGUINOLOLU_11   6    // Sanguinololu < 1.2

+ 0
- 2
Marlin/pins.h View File

@@ -36,8 +36,6 @@
36 36
   #include "pins_RAMPS_OLD.h"
37 37
 #elif MB(RAMPS_13_EFB) || MB(RAMPS_13_EEB) || MB(RAMPS_13_EFF) || MB(RAMPS_13_EEF) || MB(RAMPS_13_SF)
38 38
   #include "pins_RAMPS_13.h"
39
-#elif MB(DUEMILANOVE_328P)
40
-  #include "pins_DUEMILANOVE_328P.h"
41 39
 #elif MB(GEN6)
42 40
   #include "pins_GEN6.h"
43 41
 #elif MB(GEN6_DELUXE)

+ 0
- 43
Marlin/pins_DUEMILANOVE_328P.h View File

@@ -1,43 +0,0 @@
1
-/**
2
- * Duemilanove w/ ATMega328P pin assignments
3
- */
4
-
5
-#ifndef __AVR_ATmega328P__
6
-  #error Oops!  Make sure you have 'Arduino Duemilanove w/ ATMega328' selected from the 'Tools -> Boards' menu.
7
-#endif
8
-
9
-#define X_STEP_PIN         19
10
-#define X_DIR_PIN          18
11
-#define X_ENABLE_PIN       -1
12
-#define X_STOP_PIN         17
13
-
14
-#define Y_STEP_PIN         10
15
-#define Y_DIR_PIN           7
16
-#define Y_ENABLE_PIN       -1
17
-#define Y_STOP_PIN          8
18
-
19
-#define Z_STEP_PIN         13
20
-#define Z_DIR_PIN           3
21
-#define Z_ENABLE_PIN        2
22
-#define Z_STOP_PIN          4
23
-
24
-#define E0_STEP_PIN         11
25
-#define E0_DIR_PIN          12
26
-#define E0_ENABLE_PIN       -1
27
-
28
-#define SDPOWER          -1
29
-#define SDSS          -1
30
-#define LED_PIN            -1
31
-#define FAN_PIN             5
32
-#define PS_ON_PIN          -1
33
-#define KILL_PIN           -1
34
-
35
-#define HEATER_0_PIN        6
36
-#define HEATER_1_PIN        -1
37
-#define HEATER_2_PIN        -1
38
-#define TEMP_0_PIN          0    // MUST USE ANALOG INPUT NUMBERING NOT DIGITAL OUTPUT NUMBERING!!!!!!!!!
39
-#define TEMP_1_PIN          -1
40
-#define TEMP_2_PIN          -1
41
-#define HEATER_BED_PIN      -1
42
-#define TEMP_BED_PIN        -1
43
-

Loading…
Cancel
Save