Browse Source

Fysetc rename Part 2

Scott Lahteine 5 years ago
parent
commit
3d153486da

+ 1
- 1
Marlin/Makefile View File

237
 else ifeq ($(HARDWARE_MOTHERBOARD),1135)
237
 else ifeq ($(HARDWARE_MOTHERBOARD),1135)
238
 # Dagoma F5
238
 # Dagoma F5
239
 else ifeq ($(HARDWARE_MOTHERBOARD),1136)
239
 else ifeq ($(HARDWARE_MOTHERBOARD),1136)
240
-# Fysetc F6
240
+# FYSETC F6
241
 else ifeq ($(HARDWARE_MOTHERBOARD),1137)
241
 else ifeq ($(HARDWARE_MOTHERBOARD),1137)
242
 # Duplicator i3 Plus
242
 # Duplicator i3 Plus
243
 else ifeq ($(HARDWARE_MOTHERBOARD),1138)
243
 else ifeq ($(HARDWARE_MOTHERBOARD),1138)

+ 1
- 1
Marlin/src/core/boards.h View File

88
 #define BOARD_RAMPS_ENDER_4           1134  // Creality: Ender-4, CR-8
88
 #define BOARD_RAMPS_ENDER_4           1134  // Creality: Ender-4, CR-8
89
 #define BOARD_RAMPS_CREALITY          1135  // Creality: CR10S, CR20, CR-X
89
 #define BOARD_RAMPS_CREALITY          1135  // Creality: CR10S, CR20, CR-X
90
 #define BOARD_RAMPS_DAGOMA            1136  // Dagoma F5
90
 #define BOARD_RAMPS_DAGOMA            1136  // Dagoma F5
91
-#define BOARD_FYSETC_F6_13            1137  // Fysetc F6
91
+#define BOARD_FYSETC_F6_13            1137  // FYSETC F6
92
 #define BOARD_DUPLICATOR_I3_PLUS      1138  // Wanhao Duplicator i3 Plus
92
 #define BOARD_DUPLICATOR_I3_PLUS      1138  // Wanhao Duplicator i3 Plus
93
 #define BOARD_VORON                   1139  // VORON Design
93
 #define BOARD_VORON                   1139  // VORON Design
94
 #define BOARD_TRONXY_V3_1_0           1140  // Tronxy TRONXY-V3-1.0
94
 #define BOARD_TRONXY_V3_1_0           1140  // Tronxy TRONXY-V3-1.0

+ 1
- 1
Marlin/src/inc/SanityCheck.h View File

1561
  * LED Backlight Timeout
1561
  * LED Backlight Timeout
1562
  */
1562
  */
1563
 #if defined(LED_BACKLIGHT_TIMEOUT) && !(EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1) && HAS_POWER_SWITCH)
1563
 #if defined(LED_BACKLIGHT_TIMEOUT) && !(EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1) && HAS_POWER_SWITCH)
1564
-  #error "LED_BACKLIGHT_TIMEOUT requires a Fysetc Mini Panel and a Power Switch."
1564
+  #error "LED_BACKLIGHT_TIMEOUT requires a FYSETC Mini Panel and a Power Switch."
1565
 #endif
1565
 #endif
1566
 
1566
 
1567
 /**
1567
 /**

+ 9
- 9
Marlin/src/pins/lpc1768/pins_MKS_SBASE.h View File

231
 
231
 
232
   #if ENABLED(FYSETC_MINI_12864)
232
   #if ENABLED(FYSETC_MINI_12864)
233
     /**
233
     /**
234
-     * The Fysetc display can NOT use the SCK and MOSI pins on EXP2, so a
234
+     * The FYSETC display can NOT use the SCK and MOSI pins on EXP2, so a
235
      * special cable is needed to go between EXP2 on the FYSETC and the
235
      * special cable is needed to go between EXP2 on the FYSETC and the
236
      * controller board's EXP2 and J8. It also means that a software SPI
236
      * controller board's EXP2 and J8. It also means that a software SPI
237
      * is needed to drive those pins.
237
      * is needed to drive those pins.
238
      *
238
      *
239
-     * The Fysetc requires mode 3 SPI interface.
239
+     * The FYSETC requires mode 3 SPI interface.
240
      *
240
      *
241
      * Pins 6, 7 & 8 on EXP2 are no connects. That means a second special
241
      * Pins 6, 7 & 8 on EXP2 are no connects. That means a second special
242
      * cable will be needed if the RGB LEDs are to be active.
242
      * cable will be needed if the RGB LEDs are to be active.
243
      */
243
      */
244
-    #define DOGLCD_CS      LCD_PINS_ENABLE // EXP1.3  (LCD_EN on Fysetc schematic)
245
-    #define DOGLCD_A0      LCD_PINS_RS     // EXP1.4  (LCD_A0 on Fysetc schematic)
246
-    #define DOGLCD_SCK     P2_11           // J8-5  (SCK on Fysetc schematic)
247
-    #define DOGLCD_MOSI    P4_28           // J8-6  (MOSI on Fysetc schematic)
244
+    #define DOGLCD_CS      LCD_PINS_ENABLE // EXP1.3  (LCD_EN on FYSETC schematic)
245
+    #define DOGLCD_A0      LCD_PINS_RS     // EXP1.4  (LCD_A0 on FYSETC schematic)
246
+    #define DOGLCD_SCK     P2_11           // J8-5  (SCK on FYSETC schematic)
247
+    #define DOGLCD_MOSI    P4_28           // J8-6  (MOSI on FYSETC schematic)
248
 
248
 
249
     //#define FORCE_SOFT_SPI    // Use this if default of hardware SPI causes display problems
249
     //#define FORCE_SOFT_SPI    // Use this if default of hardware SPI causes display problems
250
                                 //   results in LCD soft SPI mode 3, SD soft SPI mode 0
250
                                 //   results in LCD soft SPI mode 3, SD soft SPI mode 0
251
 
251
 
252
     #if EITHER(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
252
     #if EITHER(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
253
       #ifndef RGB_LED_R_PIN
253
       #ifndef RGB_LED_R_PIN
254
-        #define RGB_LED_R_PIN P2_12        // J8-4  (LCD_D6 on Fysetc schematic)
254
+        #define RGB_LED_R_PIN P2_12        // J8-4  (LCD_D6 on FYSETC schematic)
255
       #endif
255
       #endif
256
       #ifndef RGB_LED_G_PIN
256
       #ifndef RGB_LED_G_PIN
257
-        #define RGB_LED_G_PIN P1_23        // J8-3  (LCD_D5 on Fysetc schematic)
257
+        #define RGB_LED_G_PIN P1_23        // J8-3  (LCD_D5 on FYSETC schematic)
258
       #endif
258
       #endif
259
       #ifndef RGB_LED_B_PIN
259
       #ifndef RGB_LED_B_PIN
260
-        #define RGB_LED_B_PIN P1_22        // J8-2  (LCD_D7 on Fysetc schematic)
260
+        #define RGB_LED_B_PIN P1_22        // J8-2  (LCD_D7 on FYSETC schematic)
261
       #endif
261
       #endif
262
     #elif ENABLED(FYSETC_MINI_12864_2_1)
262
     #elif ENABLED(FYSETC_MINI_12864_2_1)
263
       #define NEOPIXEL_PIN P2_12
263
       #define NEOPIXEL_PIN P2_12

+ 1
- 1
Marlin/src/pins/ramps/pins_FYSETC_F6_13.h View File

22
 #pragma once
22
 #pragma once
23
 
23
 
24
 //
24
 //
25
-// Fysetc F6 pin assignments
25
+// FYSETC F6 pin assignments
26
 //
26
 //
27
 
27
 
28
 #ifndef __AVR_ATmega2560__
28
 #ifndef __AVR_ATmega2560__

config/examples/_FYSETC/AIO_II/Configuration.h → config/examples/FYSETC/AIO_II/Configuration.h View File


config/examples/_FYSETC/AIO_II/Configuration_adv.h → config/examples/FYSETC/AIO_II/Configuration_adv.h View File


config/examples/_FYSETC/Cheetah/Configuration.h → config/examples/FYSETC/Cheetah/Configuration.h View File


config/examples/_FYSETC/Cheetah/Configuration_adv.h → config/examples/FYSETC/Cheetah/Configuration_adv.h View File


config/examples/_FYSETC/F6_13/Configuration.h → config/examples/FYSETC/F6_13/Configuration.h View File


config/examples/_FYSETC/F6_13/Configuration_adv.h → config/examples/FYSETC/F6_13/Configuration_adv.h View File


Loading…
Cancel
Save