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_AVR.cpp 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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. // NOTE - the HAL version of the rrd device uses a generic ST7920 device. See the
  23. // file u8g_dev_st7920_128x64_HAL.cpp for the HAL version.
  24. #include "../../inc/MarlinConfig.h"
  25. #if ENABLED(U8GLIB_ST7920)
  26. #if !(defined(U8G_HAL_LINKS) || defined(__SAM3X8E__))
  27. #include "../../HAL/shared/Delay.h"
  28. #define ST7920_CLK_PIN LCD_PINS_D4
  29. #define ST7920_DAT_PIN LCD_PINS_ENABLE
  30. #define ST7920_CS_PIN LCD_PINS_RS
  31. //#define PAGE_HEIGHT 8 //128 byte framebuffer
  32. #define PAGE_HEIGHT 16 //256 byte framebuffer
  33. //#define PAGE_HEIGHT 32 //512 byte framebuffer
  34. #define LCD_PIXEL_WIDTH 128
  35. #define LCD_PIXEL_HEIGHT 64
  36. #include <U8glib.h>
  37. //set optimization so ARDUINO optimizes this file
  38. #pragma GCC optimize (3)
  39. // If you want you can define your own set of delays in Configuration.h
  40. //#define ST7920_DELAY_1 DELAY_NS(0)
  41. //#define ST7920_DELAY_2 DELAY_NS(0)
  42. //#define ST7920_DELAY_3 DELAY_NS(0)
  43. #if F_CPU >= 20000000
  44. #define CPU_ST7920_DELAY_1 DELAY_NS(0)
  45. #define CPU_ST7920_DELAY_2 DELAY_NS(0)
  46. #define CPU_ST7920_DELAY_3 DELAY_NS(50)
  47. #elif MB(3DRAG) || MB(K8200) || MB(K8400) || MB(SILVER_GATE)
  48. #define CPU_ST7920_DELAY_1 DELAY_NS(0)
  49. #define CPU_ST7920_DELAY_2 DELAY_NS(188)
  50. #define CPU_ST7920_DELAY_3 DELAY_NS(0)
  51. #elif MB(MINIRAMBO) || MB(EINSY_RAMBO)
  52. #define CPU_ST7920_DELAY_1 DELAY_NS(0)
  53. #define CPU_ST7920_DELAY_2 DELAY_NS(250)
  54. #define CPU_ST7920_DELAY_3 DELAY_NS(0)
  55. #elif MB(RAMBO)
  56. #define CPU_ST7920_DELAY_1 DELAY_NS(0)
  57. #define CPU_ST7920_DELAY_2 DELAY_NS(0)
  58. #define CPU_ST7920_DELAY_3 DELAY_NS(0)
  59. #elif MB(BQ_ZUM_MEGA_3D)
  60. #define CPU_ST7920_DELAY_1 DELAY_NS(0)
  61. #define CPU_ST7920_DELAY_2 DELAY_NS(0)
  62. #define CPU_ST7920_DELAY_3 DELAY_NS(189)
  63. #elif MB(REMRAM_V1)
  64. #define CPU_ST7920_DELAY_1 DELAY_NS(0)
  65. #define CPU_ST7920_DELAY_2 DELAY_NS(0)
  66. #define CPU_ST7920_DELAY_3 DELAY_NS(0)
  67. #elif F_CPU == 16000000
  68. #define CPU_ST7920_DELAY_1 DELAY_NS(0)
  69. #define CPU_ST7920_DELAY_2 DELAY_NS(0)
  70. #define CPU_ST7920_DELAY_3 DELAY_NS(63)
  71. #else
  72. #error "No valid condition for delays in 'ultralcd_st7920_u8glib_rrd.h'"
  73. #endif
  74. #ifndef ST7920_DELAY_1
  75. #define ST7920_DELAY_1 CPU_ST7920_DELAY_1
  76. #endif
  77. #ifndef ST7920_DELAY_2
  78. #define ST7920_DELAY_2 CPU_ST7920_DELAY_2
  79. #endif
  80. #ifndef ST7920_DELAY_3
  81. #define ST7920_DELAY_3 CPU_ST7920_DELAY_3
  82. #endif
  83. #define ST7920_SND_BIT \
  84. WRITE(ST7920_CLK_PIN, LOW); ST7920_DELAY_1; \
  85. WRITE(ST7920_DAT_PIN, val & 0x80); ST7920_DELAY_2; \
  86. WRITE(ST7920_CLK_PIN, HIGH); ST7920_DELAY_3; \
  87. val <<= 1
  88. static void ST7920_SWSPI_SND_8BIT(uint8_t val) {
  89. ST7920_SND_BIT; // 1
  90. ST7920_SND_BIT; // 2
  91. ST7920_SND_BIT; // 3
  92. ST7920_SND_BIT; // 4
  93. ST7920_SND_BIT; // 5
  94. ST7920_SND_BIT; // 6
  95. ST7920_SND_BIT; // 7
  96. ST7920_SND_BIT; // 8
  97. }
  98. #if DOGM_SPI_DELAY_US > 0
  99. #define U8G_DELAY() DELAY_US(DOGM_SPI_DELAY_US)
  100. #else
  101. #define U8G_DELAY() DELAY_US(10)
  102. #endif
  103. #define ST7920_CS() { WRITE(ST7920_CS_PIN,1); U8G_DELAY(); }
  104. #define ST7920_NCS() { WRITE(ST7920_CS_PIN,0); }
  105. #define ST7920_SET_CMD() { ST7920_SWSPI_SND_8BIT(0xF8); U8G_DELAY(); }
  106. #define ST7920_SET_DAT() { ST7920_SWSPI_SND_8BIT(0xFA); U8G_DELAY(); }
  107. #define ST7920_WRITE_BYTE(a) { ST7920_SWSPI_SND_8BIT((uint8_t)((a)&0xF0u)); ST7920_SWSPI_SND_8BIT((uint8_t)((a)<<4u)); U8G_DELAY(); }
  108. #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(); }
  109. uint8_t u8g_dev_rrd_st7920_128x64_fn(u8g_t *u8g, u8g_dev_t *dev, uint8_t msg, void *arg) {
  110. uint8_t i, y;
  111. switch (msg) {
  112. case U8G_DEV_MSG_INIT: {
  113. OUT_WRITE(ST7920_CS_PIN, LOW);
  114. OUT_WRITE(ST7920_DAT_PIN, LOW);
  115. OUT_WRITE(ST7920_CLK_PIN, HIGH);
  116. ST7920_CS();
  117. u8g_Delay(120); //initial delay for boot up
  118. ST7920_SET_CMD();
  119. ST7920_WRITE_BYTE(0x20); //non-extended mode
  120. ST7920_WRITE_BYTE(0x08); //display off, cursor+blink off
  121. ST7920_WRITE_BYTE(0x01); //clear DDRAM ram
  122. u8g_Delay(15); //delay for DDRAM clear
  123. ST7920_WRITE_BYTE(0x24); //extended mode
  124. ST7920_WRITE_BYTE(0x26); //extended mode + GDRAM active
  125. for (y = 0; y < (LCD_PIXEL_HEIGHT) / 2; y++) { //clear GDRAM
  126. ST7920_WRITE_BYTE(0x80 | y); //set y
  127. ST7920_WRITE_BYTE(0x80); //set x = 0
  128. ST7920_SET_DAT();
  129. for (i = 0; i < 2 * (LCD_PIXEL_WIDTH) / 8; i++) //2x width clears both segments
  130. ST7920_WRITE_BYTE(0);
  131. ST7920_SET_CMD();
  132. }
  133. ST7920_WRITE_BYTE(0x0C); //display on, cursor+blink off
  134. ST7920_NCS();
  135. }
  136. break;
  137. case U8G_DEV_MSG_STOP: break;
  138. case U8G_DEV_MSG_PAGE_NEXT: {
  139. uint8_t* ptr;
  140. u8g_pb_t* pb = (u8g_pb_t*)(dev->dev_mem);
  141. y = pb->p.page_y0;
  142. ptr = (uint8_t*)pb->buf;
  143. ST7920_CS();
  144. for (i = 0; i < PAGE_HEIGHT; i ++) {
  145. ST7920_SET_CMD();
  146. if (y < 32) {
  147. ST7920_WRITE_BYTE(0x80 | y); //y
  148. ST7920_WRITE_BYTE(0x80); //x=0
  149. }
  150. else {
  151. ST7920_WRITE_BYTE(0x80 | (y - 32)); //y
  152. ST7920_WRITE_BYTE(0x80 | 8); //x=64
  153. }
  154. ST7920_SET_DAT();
  155. ST7920_WRITE_BYTES(ptr, (LCD_PIXEL_WIDTH) / 8); //ptr is incremented inside of macro
  156. y++;
  157. }
  158. ST7920_NCS();
  159. }
  160. break;
  161. }
  162. #if PAGE_HEIGHT == 8
  163. return u8g_dev_pb8h1_base_fn(u8g, dev, msg, arg);
  164. #elif PAGE_HEIGHT == 16
  165. return u8g_dev_pb16h1_base_fn(u8g, dev, msg, arg);
  166. #else
  167. return u8g_dev_pb32h1_base_fn(u8g, dev, msg, arg);
  168. #endif
  169. }
  170. uint8_t u8g_dev_st7920_128x64_rrd_buf[(LCD_PIXEL_WIDTH) * (PAGE_HEIGHT) / 8] U8G_NOCOMMON;
  171. 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};
  172. 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};
  173. #if ENABLED(LIGHTWEIGHT_UI)
  174. // We have to include the code for the lightweight UI here
  175. // as it relies on macros that are only defined in this file.
  176. #include "status_screen_lite_ST7920_spi.h"
  177. #endif
  178. #pragma GCC reset_options
  179. #endif // U8G_HAL_LINKS
  180. #endif // U8GLIB_ST7920