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.

u8g_dev_ssd1309_12864.cpp 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #include "../../inc/MarlinConfigPre.h"
  23. #if HAS_MARLINUI_U8GLIB
  24. #include "HAL_LCD_com_defines.h"
  25. #include <U8glib-HAL.h>
  26. #define WIDTH 128
  27. #define HEIGHT 64
  28. #define PAGE_HEIGHT 8
  29. // SSD1309 init sequence
  30. static const uint8_t u8g_dev_ssd1309_128x64_init_seq[] PROGMEM = {
  31. U8G_ESC_CS(0), // Disable chip
  32. U8G_ESC_ADR(0), // Instruction mode
  33. U8G_ESC_RST(1), // Do reset low pulse with (1*16)+2 milliseconds
  34. U8G_ESC_CS(1), // Enable chip
  35. 0xFD,0x12, // Command Lock
  36. 0xAE, // Set Display Off
  37. 0xD5,0xA0, // Set Display Clock Divide Ratio/Oscillator Frequency
  38. 0xA8,0x3F, // Set Multiplex Ratio
  39. 0x3D,0x00, // Set Display Offset
  40. 0x40, // Set Display Start Line
  41. 0xA1, // Set Segment Re-Map
  42. 0xC8, // Set COM Output Scan Direction
  43. 0xDA,0x12, // Set COM Pins Hardware Configuration
  44. 0x81,0xDF, // Set Current Control
  45. 0xD9,0x82, // Set Pre-Charge Period
  46. 0xDB,0x34, // Set VCOMH Deselect Level
  47. 0xA4, // Set Entire Display On/Off
  48. 0xA6, // Set Normal/Inverse Display
  49. U8G_ESC_VCC(1), // Power up VCC & Stabilized
  50. U8G_ESC_DLY(50),
  51. 0xAF, // Set Display On
  52. U8G_ESC_DLY(50),
  53. U8G_ESC_CS(0), // Disable chip
  54. U8G_ESC_END // End of sequence
  55. };
  56. // Select one init sequence here
  57. #define u8g_dev_ssd1309_128x64_init_seq u8g_dev_ssd1309_128x64_init_seq
  58. static const uint8_t u8g_dev_ssd1309_128x64_data_start[] PROGMEM = {
  59. U8G_ESC_ADR(0), // Instruction mode
  60. U8G_ESC_CS(1), // Enable chip
  61. 0x010, // Set upper 4 bit of the col adr to 0
  62. 0x000, // Set lower 4 bit of the col adr to 4
  63. U8G_ESC_END // End of sequence
  64. };
  65. static const uint8_t u8g_dev_ssd13xx_sleep_on[] PROGMEM = {
  66. U8G_ESC_ADR(0), // Instruction mode
  67. U8G_ESC_CS(1), // Enable chip
  68. 0x0AE, // Display off
  69. U8G_ESC_CS(0), // Disable chip
  70. U8G_ESC_END // End of sequence
  71. };
  72. static const uint8_t u8g_dev_ssd13xx_sleep_off[] PROGMEM = {
  73. U8G_ESC_ADR(0), // Instruction mode
  74. U8G_ESC_CS(1), // Enable chip
  75. 0x0AF, // Display on
  76. U8G_ESC_DLY(50), // Delay 50 ms
  77. U8G_ESC_CS(0), // Disable chip
  78. U8G_ESC_END // End of sequence
  79. };
  80. uint8_t u8g_dev_ssd1309_128x64_fn(u8g_t *u8g, u8g_dev_t *dev, uint8_t msg, void *arg) {
  81. switch (msg) {
  82. case U8G_DEV_MSG_INIT:
  83. u8g_InitCom(u8g, dev, U8G_SPI_CLK_CYCLE_300NS);
  84. u8g_WriteEscSeqP(u8g, dev, u8g_dev_ssd1309_128x64_init_seq);
  85. break;
  86. case U8G_DEV_MSG_STOP:
  87. break;
  88. case U8G_DEV_MSG_PAGE_NEXT: {
  89. u8g_pb_t *pb = (u8g_pb_t *)(dev->dev_mem);
  90. u8g_WriteEscSeqP(u8g, dev, u8g_dev_ssd1309_128x64_data_start);
  91. u8g_WriteByte(u8g, dev, 0x0B0 | pb->p.page); // Select current page (SSD1306)
  92. u8g_SetAddress(u8g, dev, 1); // Data mode
  93. if (u8g_pb_WriteBuffer(pb, u8g, dev) == 0) return 0;
  94. u8g_SetChipSelect(u8g, dev, 0);
  95. }
  96. break;
  97. case U8G_DEV_MSG_CONTRAST:
  98. u8g_SetChipSelect(u8g, dev, 1);
  99. u8g_SetAddress(u8g, dev, 0); // Instruction mode
  100. u8g_WriteByte(u8g, dev, 0x081);
  101. u8g_WriteByte(u8g, dev, (*(uint8_t *)arg) ); // 11 Jul 2015: fixed contrast calculation
  102. u8g_SetChipSelect(u8g, dev, 0);
  103. return 1;
  104. case U8G_DEV_MSG_SLEEP_ON:
  105. u8g_WriteEscSeqP(u8g, dev, u8g_dev_ssd13xx_sleep_on);
  106. return 1;
  107. case U8G_DEV_MSG_SLEEP_OFF:
  108. u8g_WriteEscSeqP(u8g, dev, u8g_dev_ssd13xx_sleep_off);
  109. return 1;
  110. }
  111. return u8g_dev_pb8v1_base_fn(u8g, dev, msg, arg);
  112. }
  113. uint8_t u8g_dev_ssd1309_buf[WIDTH*2] U8G_NOCOMMON ;
  114. u8g_pb_t u8g_dev_ssd1309_pb = { {8, HEIGHT, 0, 0, 0}, WIDTH, u8g_dev_ssd1309_buf};
  115. u8g_dev_t u8g_dev_ssd1309_sw_spi = { u8g_dev_ssd1309_128x64_fn, &u8g_dev_ssd1309_pb, U8G_COM_HAL_SW_SPI_FN };
  116. #endif // HAS_MARLINUI_U8GLIB