Browse Source

[2.0.x] Add Viki support to RAMPS_FD_V1 (DUE) (#10598)

Bob-the-Kuhn 6 years ago
parent
commit
410b023b50
2 changed files with 19 additions and 3 deletions
  1. 6
    3
      Marlin/src/lcd/dogm/HAL_LCD_com_defines.h
  2. 13
    0
      Marlin/src/pins/pins_RAMPS_FD_V1.h

+ 6
- 3
Marlin/src/lcd/dogm/HAL_LCD_com_defines.h View File

@@ -28,13 +28,16 @@
28 28
   uint8_t u8g_com_arduino_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
29 29
   #define U8G_COM_HAL_SW_SPI_FN  u8g_com_arduino_sw_spi_fn
30 30
 
31
-  uint8_t u8g_com_arduino_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
32
-  #define U8G_COM_HAL_HW_SPI_FN u8g_com_arduino_hw_spi_fn
33
-
34 31
   #ifdef __SAM3X8E__
32
+    uint8_t u8g_com_HAL_DUE_shared_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
33
+    #define U8G_COM_HAL_HW_SPI_FN u8g_com_HAL_DUE_shared_hw_spi_fn
34
+
35 35
     uint8_t u8g_com_HAL_DUE_ST7920_sw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
36 36
     #define U8G_COM_ST7920_HAL_SW_SPI u8g_com_HAL_DUE_ST7920_sw_spi_fn
37 37
   #else
38
+    uint8_t u8g_com_arduino_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
39
+    #define U8G_COM_HAL_HW_SPI_FN u8g_com_arduino_hw_spi_fn
40
+
38 41
     uint8_t u8g_com_arduino_st7920_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr);
39 42
     #define U8G_COM_ST7920_HAL_SW_SPI u8g_com_arduino_st7920_spi_fn
40 43
   #endif

+ 13
- 0
Marlin/src/pins/pins_RAMPS_FD_V1.h View File

@@ -161,6 +161,19 @@
161 161
     #define DOGLCD_CS      25
162 162
     #define DOGLCD_A0      27
163 163
   #endif
164
+
165
+  #if ENABLED(VIKI2) || ENABLED(miniVIKI)
166
+    #define DOGLCD_A0           16
167
+    #define KILL_PIN            51
168
+    #define STAT_LED_BLUE_PIN   29
169
+    #define STAT_LED_RED_PIN    23
170
+    #define DOGLCD_CS           17
171
+    #define DOGLCD_SCK          76 //SCK_PIN   - required so that the DUE hardware SPI will be used
172
+    #define DOGLCD_MOSI         75 //MOSI_PIN  - required so that the DUE hardware SPI will be used
173
+    #define DOGLCD_MISO         74 //MISO_PIN
174
+  #endif
175
+
176
+
164 177
 #endif // ULTRA_LCD
165 178
 
166 179
 #if ENABLED(HAVE_TMC2208)

Loading…
Cancel
Save