Pārlūkot izejas kodu

Fysetc rename Part 2

Scott Lahteine 4 gadus atpakaļ
vecāks
revīzija
3d153486da

+ 1
- 1
Marlin/Makefile Parādīt failu

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

+ 1
- 1
Marlin/src/core/boards.h Parādīt failu

@@ -88,7 +88,7 @@
88 88
 #define BOARD_RAMPS_ENDER_4           1134  // Creality: Ender-4, CR-8
89 89
 #define BOARD_RAMPS_CREALITY          1135  // Creality: CR10S, CR20, CR-X
90 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 92
 #define BOARD_DUPLICATOR_I3_PLUS      1138  // Wanhao Duplicator i3 Plus
93 93
 #define BOARD_VORON                   1139  // VORON Design
94 94
 #define BOARD_TRONXY_V3_1_0           1140  // Tronxy TRONXY-V3-1.0

+ 1
- 1
Marlin/src/inc/SanityCheck.h Parādīt failu

@@ -1561,7 +1561,7 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
1561 1561
  * LED Backlight Timeout
1562 1562
  */
1563 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 1565
 #endif
1566 1566
 
1567 1567
 /**

+ 9
- 9
Marlin/src/pins/lpc1768/pins_MKS_SBASE.h Parādīt failu

@@ -231,33 +231,33 @@
231 231
 
232 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 235
      * special cable is needed to go between EXP2 on the FYSETC and the
236 236
      * controller board's EXP2 and J8. It also means that a software SPI
237 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 241
      * Pins 6, 7 & 8 on EXP2 are no connects. That means a second special
242 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 249
     //#define FORCE_SOFT_SPI    // Use this if default of hardware SPI causes display problems
250 250
                                 //   results in LCD soft SPI mode 3, SD soft SPI mode 0
251 251
 
252 252
     #if EITHER(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
253 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 255
       #endif
256 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 258
       #endif
259 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 261
       #endif
262 262
     #elif ENABLED(FYSETC_MINI_12864_2_1)
263 263
       #define NEOPIXEL_PIN P2_12

+ 1
- 1
Marlin/src/pins/ramps/pins_FYSETC_F6_13.h Parādīt failu

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

config/examples/_FYSETC/AIO_II/Configuration.h → config/examples/FYSETC/AIO_II/Configuration.h Parādīt failu


config/examples/_FYSETC/AIO_II/Configuration_adv.h → config/examples/FYSETC/AIO_II/Configuration_adv.h Parādīt failu


config/examples/_FYSETC/Cheetah/Configuration.h → config/examples/FYSETC/Cheetah/Configuration.h Parādīt failu


config/examples/_FYSETC/Cheetah/Configuration_adv.h → config/examples/FYSETC/Cheetah/Configuration_adv.h Parādīt failu


config/examples/_FYSETC/F6_13/Configuration.h → config/examples/FYSETC/F6_13/Configuration.h Parādīt failu


config/examples/_FYSETC/F6_13/Configuration_adv.h → config/examples/FYSETC/F6_13/Configuration_adv.h Parādīt failu


Notiek ielāde…
Atcelt
Saglabāt