My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ultralcd_st7920_u8glib_rrd.h 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #ifndef ULCDST7920_H
  23. #define ULCDST7920_H
  24. #include <U8glib.h>
  25. #define ST7920_CLK_PIN LCD_PINS_D4
  26. #define ST7920_DAT_PIN LCD_PINS_ENABLE
  27. #define ST7920_CS_PIN LCD_PINS_RS
  28. //#define PAGE_HEIGHT 8 //128 byte framebuffer
  29. #define PAGE_HEIGHT 16 //256 byte framebuffer
  30. //#define PAGE_HEIGHT 32 //512 byte framebuffer
  31. #define LCD_PIXEL_WIDTH 128
  32. #define LCD_PIXEL_HEIGHT 64
  33. //set optimization so ARDUINO optimizes this file
  34. #pragma GCC optimize (3)
  35. // If you want you can define your own set of delays in Configuration.h
  36. //#define ST7920_DELAY_1 DELAY_0_NOP
  37. //#define ST7920_DELAY_2 DELAY_0_NOP
  38. //#define ST7920_DELAY_3 DELAY_0_NOP
  39. #if F_CPU >= 20000000
  40. #define CPU_ST7920_DELAY_1 DELAY_0_NOP
  41. #define CPU_ST7920_DELAY_2 DELAY_0_NOP
  42. #define CPU_ST7920_DELAY_3 DELAY_1_NOP
  43. #elif MB(3DRAG) || MB(K8200) || MB(K8400) || MB(SILVER_GATE)
  44. #define CPU_ST7920_DELAY_1 DELAY_0_NOP
  45. #define CPU_ST7920_DELAY_2 DELAY_3_NOP
  46. #define CPU_ST7920_DELAY_3 DELAY_0_NOP
  47. #elif MB(MINIRAMBO)
  48. #define CPU_ST7920_DELAY_1 DELAY_0_NOP
  49. #define CPU_ST7920_DELAY_2 DELAY_4_NOP
  50. #define CPU_ST7920_DELAY_3 DELAY_0_NOP
  51. #elif MB(RAMBO)
  52. #define CPU_ST7920_DELAY_1 DELAY_0_NOP
  53. #define CPU_ST7920_DELAY_2 DELAY_0_NOP
  54. #define CPU_ST7920_DELAY_3 DELAY_0_NOP
  55. #elif F_CPU == 16000000
  56. #define CPU_ST7920_DELAY_1 DELAY_0_NOP
  57. #define CPU_ST7920_DELAY_2 DELAY_0_NOP
  58. #define CPU_ST7920_DELAY_3 DELAY_1_NOP
  59. #else
  60. #error "No valid condition for delays in 'ultralcd_st7920_u8glib_rrd.h'"
  61. #endif
  62. #ifndef ST7920_DELAY_1
  63. #define ST7920_DELAY_1 CPU_ST7920_DELAY_1
  64. #endif
  65. #ifndef ST7920_DELAY_2
  66. #define ST7920_DELAY_2 CPU_ST7920_DELAY_2
  67. #endif
  68. #ifndef ST7920_DELAY_3
  69. #define ST7920_DELAY_3 CPU_ST7920_DELAY_3
  70. #endif
  71. #define ST7920_SND_BIT \
  72. WRITE(ST7920_CLK_PIN, LOW); ST7920_DELAY_1; \
  73. WRITE(ST7920_DAT_PIN, val & 0x80); ST7920_DELAY_2; \
  74. WRITE(ST7920_CLK_PIN, HIGH); ST7920_DELAY_3; \
  75. val <<= 1
  76. static void ST7920_SWSPI_SND_8BIT(uint8_t val) {
  77. ST7920_SND_BIT; // 1
  78. ST7920_SND_BIT; // 2
  79. ST7920_SND_BIT; // 3
  80. ST7920_SND_BIT; // 4
  81. ST7920_SND_BIT; // 5
  82. ST7920_SND_BIT; // 6
  83. ST7920_SND_BIT; // 7
  84. ST7920_SND_BIT; // 8
  85. }
  86. #if defined(DOGM_SPI_DELAY_US) && DOGM_SPI_DELAY_US > 0
  87. #define U8G_DELAY() delayMicroseconds(DOGM_SPI_DELAY_US)
  88. #else
  89. #define U8G_DELAY() u8g_10MicroDelay()
  90. #endif
  91. #define ST7920_CS() { WRITE(ST7920_CS_PIN,1); U8G_DELAY(); }
  92. #define ST7920_NCS() { WRITE(ST7920_CS_PIN,0); }
  93. #define ST7920_SET_CMD() { ST7920_SWSPI_SND_8BIT(0xF8); U8G_DELAY(); }
  94. #define ST7920_SET_DAT() { ST7920_SWSPI_SND_8BIT(0xFA); U8G_DELAY(); }
  95. #define ST7920_WRITE_BYTE(a) { ST7920_SWSPI_SND_8BIT((uint8_t)((a)&0xF0u)); ST7920_SWSPI_SND_8BIT((uint8_t)((a)<<4u)); U8G_DELAY(); }
  96. #define ST7920_WRITE_BYTES(p,l) { for (uint8_t i = l + 1; --i;) { ST7920_SWSPI_SND_8BIT(*p&0xF0); ST7920_SWSPI_SND_8BIT(*p<<4); p++; } U8G_DELAY(); }
  97. uint8_t u8g_dev_rrd_st7920_128x64_fn(u8g_t *u8g, u8g_dev_t *dev, uint8_t msg, void *arg) {
  98. uint8_t i, y;
  99. switch (msg) {
  100. case U8G_DEV_MSG_INIT: {
  101. OUT_WRITE(ST7920_CS_PIN, LOW);
  102. OUT_WRITE(ST7920_DAT_PIN, LOW);
  103. OUT_WRITE(ST7920_CLK_PIN, HIGH);
  104. ST7920_CS();
  105. u8g_Delay(120); //initial delay for boot up
  106. ST7920_SET_CMD();
  107. ST7920_WRITE_BYTE(0x08); //display off, cursor+blink off
  108. ST7920_WRITE_BYTE(0x01); //clear CGRAM ram
  109. u8g_Delay(15); //delay for CGRAM clear
  110. ST7920_WRITE_BYTE(0x3E); //extended mode + GDRAM active
  111. for (y = 0; y < (LCD_PIXEL_HEIGHT) / 2; y++) { //clear GDRAM
  112. ST7920_WRITE_BYTE(0x80 | y); //set y
  113. ST7920_WRITE_BYTE(0x80); //set x = 0
  114. ST7920_SET_DAT();
  115. for (i = 0; i < 2 * (LCD_PIXEL_WIDTH) / 8; i++) //2x width clears both segments
  116. ST7920_WRITE_BYTE(0);
  117. ST7920_SET_CMD();
  118. }
  119. ST7920_WRITE_BYTE(0x0C); //display on, cursor+blink off
  120. ST7920_NCS();
  121. }
  122. break;
  123. case U8G_DEV_MSG_STOP: break;
  124. case U8G_DEV_MSG_PAGE_NEXT: {
  125. uint8_t* ptr;
  126. u8g_pb_t* pb = (u8g_pb_t*)(dev->dev_mem);
  127. y = pb->p.page_y0;
  128. ptr = (uint8_t*)pb->buf;
  129. ST7920_CS();
  130. for (i = 0; i < PAGE_HEIGHT; i ++) {
  131. ST7920_SET_CMD();
  132. if (y < 32) {
  133. ST7920_WRITE_BYTE(0x80 | y); //y
  134. ST7920_WRITE_BYTE(0x80); //x=0
  135. }
  136. else {
  137. ST7920_WRITE_BYTE(0x80 | (y - 32)); //y
  138. ST7920_WRITE_BYTE(0x80 | 8); //x=64
  139. }
  140. ST7920_SET_DAT();
  141. ST7920_WRITE_BYTES(ptr, (LCD_PIXEL_WIDTH) / 8); //ptr is incremented inside of macro
  142. y++;
  143. }
  144. ST7920_NCS();
  145. }
  146. break;
  147. }
  148. #if PAGE_HEIGHT == 8
  149. return u8g_dev_pb8h1_base_fn(u8g, dev, msg, arg);
  150. #elif PAGE_HEIGHT == 16
  151. return u8g_dev_pb16h1_base_fn(u8g, dev, msg, arg);
  152. #else
  153. return u8g_dev_pb32h1_base_fn(u8g, dev, msg, arg);
  154. #endif
  155. }
  156. uint8_t u8g_dev_st7920_128x64_rrd_buf[(LCD_PIXEL_WIDTH) * (PAGE_HEIGHT) / 8] U8G_NOCOMMON;
  157. u8g_pb_t u8g_dev_st7920_128x64_rrd_pb = {{PAGE_HEIGHT, LCD_PIXEL_HEIGHT, 0, 0, 0}, LCD_PIXEL_WIDTH, u8g_dev_st7920_128x64_rrd_buf};
  158. u8g_dev_t u8g_dev_st7920_128x64_rrd_sw_spi = {u8g_dev_rrd_st7920_128x64_fn, &u8g_dev_st7920_128x64_rrd_pb, &u8g_com_null_fn};
  159. class U8GLIB_ST7920_128X64_RRD : public U8GLIB {
  160. public:
  161. U8GLIB_ST7920_128X64_RRD(uint8_t dummy) : U8GLIB(&u8g_dev_st7920_128x64_rrd_sw_spi) { UNUSED(dummy); }
  162. };
  163. #pragma GCC reset_options
  164. #endif // ULCDST7920_H