Browse Source

Rename ultralcd implementation files for consistency

Scott Lahteine 8 years ago
parent
commit
8a2efd1155
4 changed files with 4 additions and 4 deletions
  1. 1
    1
      Marlin/fonts/README.md
  2. 2
    2
      Marlin/ultralcd.cpp
  3. 1
    1
      Marlin/ultralcd_impl_DOGM.h
  4. 0
    0
      Marlin/ultralcd_impl_HD44780.h

+ 1
- 1
Marlin/fonts/README.md View File

@@ -17,7 +17,7 @@ For the second half of the font we now support up to 11x11 pixel.
17 17
 - Export as a `*.bdf` file
18 18
 - Use `bdf2u8g.exe` to produce the `.h` file. Examples for the existing fonts are in `make_fonts.bat`.
19 19
 - Edit the produced `.h` file to match our needs. Find hints in the `dogm_font_data_.h` files.
20
-- Make a new entry in the font list in `dogm_lcd_implementation.h` before the `#else // fall-back` line:
20
+- Make a new entry in the font list in `ultralcd_impl_DOGM.h` before the `#else // fall-back` line:
21 21
 ```cpp
22 22
     #elif ENABLED(DISPLAY_CHARSET_NEWNAME)
23 23
       #include "dogm_font_data_yourfont.h"

+ 2
- 2
Marlin/ultralcd.cpp View File

@@ -44,9 +44,9 @@ uint8_t lcd_status_message_level;
44 44
 char lcd_status_message[3 * (LCD_WIDTH) + 1] = WELCOME_MSG; // worst case is kana with up to 3*LCD_WIDTH+1
45 45
 
46 46
 #if ENABLED(DOGLCD)
47
-  #include "dogm_lcd_implementation.h"
47
+  #include "ultralcd_impl_DOGM.h"
48 48
 #else
49
-  #include "ultralcd_implementation_hitachi_HD44780.h"
49
+  #include "ultralcd_impl_HD44780.h"
50 50
 #endif
51 51
 
52 52
 // The main status screen

Marlin/dogm_lcd_implementation.h → Marlin/ultralcd_impl_DOGM.h View File

@@ -21,7 +21,7 @@
21 21
  */
22 22
 
23 23
 /**
24
- * dogm_lcd_implementation.h
24
+ * ultralcd_impl_DOGM.h
25 25
  *
26 26
  * Graphics LCD implementation for 128x64 pixel LCDs by STB for ErikZalm/Marlin
27 27
  * Demonstrator: http://www.reprap.org/wiki/STB_Electronics

Marlin/ultralcd_implementation_hitachi_HD44780.h → Marlin/ultralcd_impl_HD44780.h View File


Loading…
Cancel
Save