| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617 |
- /*
- u8x8_d_sed1330.c
-
- Universal 8bit Graphics Library (https://github.com/olikraus/u8g2/)
- Copyright (c) 2016, olikraus@gmail.com
- All rights reserved.
- Redistribution and use in source and binary forms, with or without modification,
- are permitted provided that the following conditions are met:
- * Redistributions of source code must retain the above copyright notice, this list
- of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above copyright notice, this
- list of conditions and the following disclaimer in the documentation and/or other
- materials provided with the distribution.
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
- CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- The device might also work with the RA8835, SED1335 and SED1336 controller.
- The following devices might be compatible:
- RA8835
- SED1330
- SED1335
- S1D13700
- */
- #include "u8x8.h"
- static const uint8_t u8x8_d_sed1330_powersave0_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_CA(0x040, 0x030), /* sys init (0x040) with one arg, where 0x030 is a wild guess */
- U8X8_CA(0x059, 0x004), /* send display on command (hex 0x059, see p37 ) */
- /* display cmd has one arg: 01010100 should enable all three blocks, but disable the cursor*/
-
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- static const uint8_t u8x8_d_sed1330_powersave1_seq[] = {
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_CA(0x058, 0x000), /* send display off command (hex 0x059, see p37) and turn of all banks */
- /* maybe send a sleep in cmd */
- //U8X8_C(0x053) /* sleep in: 0x053 */
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_END() /* end of sequence */
- };
- uint8_t u8x8_d_sed1330_common(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- uint8_t c, i;
- uint16_t y;
- uint8_t *ptr;
- switch(msg)
- {
- /* U8X8_MSG_DISPLAY_SETUP_MEMORY is handled by the calling function */
- /*
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- break;
- case U8X8_MSG_DISPLAY_INIT:
- break;
- */
- case U8X8_MSG_DISPLAY_SET_POWER_SAVE:
- if ( arg_int == 0 )
- u8x8_cad_SendSequence(u8x8, u8x8_d_sed1330_powersave0_seq);
- else
- u8x8_cad_SendSequence(u8x8, u8x8_d_sed1330_powersave1_seq);
- break;
- case U8X8_MSG_DISPLAY_DRAW_TILE:
- y = (((u8x8_tile_t *)arg_ptr)->y_pos);
- y*=8;
- y*= u8x8->display_info->tile_width;
-
- u8x8_cad_StartTransfer(u8x8);
-
- c = ((u8x8_tile_t *)arg_ptr)->cnt; /* number of tiles */
- ptr = ((u8x8_tile_t *)arg_ptr)->tile_ptr; /* data ptr to the tiles */
- for( i = 0; i < 8; i++ )
- {
- u8x8_cad_SendCmd(u8x8, 0x046 ); /* CSRW command*/
- u8x8_cad_SendArg(u8x8, y&255); /* CSRW low adr byte */
- u8x8_cad_SendArg(u8x8, y>>8); /* CSRW high adr byte */
- u8x8_cad_SendCmd(u8x8, 0x042 ); /* MWRITE */
-
- u8x8_cad_SendData(u8x8, c, ptr); /* note: SendData can not handle more than 255 bytes, send one line of data */
-
- ptr += u8x8->display_info->tile_width;
- y += u8x8->display_info->tile_width;
- }
- /* sometimes the display switches off... so just sent a display on command */
- u8x8_cad_SendCmd(u8x8, 0x059 ); /* display on */
- u8x8_cad_SendArg(u8x8, 0x004); /* arg for display on */
- u8x8_cad_EndTransfer(u8x8);
- //u8x8->gpio_and_delay_cb(u8x8, U8X8_MSG_DELAY_NANO, 200, NULL); /* extra dely required */
- break;
- default:
- return 0;
- }
- return 1;
- }
- /*=============================================*/
- static const u8x8_display_info_t u8x8_sed1330_240x128_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 30, /* G242CX Datasheet p5 */
- /* pre_chip_disable_wait_ns = */ 10, /* G242CX Datasheet p5 */
- /* reset_pulse_width_ms = */ 1,
- /* post_reset_wait_ms = */ 6,
- /* sda_setup_time_ns = */ 20,
- /* sck_pulse_width_ns = */ 140,
- /* sck_clock_hz = */ 1000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0,
- /* i2c_bus_clock_100kHz = */ 4,
- /* data_setup_time_ns = */ 120, /* G242CX Datasheet p5 */
- /* write_pulse_width_ns = */ 220, /* G242CX Datasheet p5 */
- /* tile_width = */ 0x01e,
- /* tile_height = */ 16,
- /* default_x_offset = */ 0,
- /* flipmode_x_offset = */ 0,
- /* pixel_width = */ 240,
- /* pixel_height = */ 128
- };
- /* 240x128 Seiko G242C */
- static const uint8_t u8x8_d_sed1330_240x128_init_seq[] = {
- U8X8_DLY(100),
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_DLY(100),
- /* system init command, see also u8x8_d_sed1330_powersave0_seq */
- U8X8_CA(0x040, 0x030), /* sys init (0x040) with one arg, where 0x030 is a wild guess */
- /* system init has total 8 parameters, so 7 more are here */
- U8X8_A(0x087), /* no idea here... WF (topmost bit) is set to one because it is suggested in the datasheet, lowest 3 bits refer to text mode only */
- U8X8_A(0x007), /* FY: height of a char+1, does not matter here (hopefully), because we use graphics mode only */
- U8X8_A(0x01d), /* C/R: this could be the number of horizontal bytes - 1 (Value confirmed with app notes p41) */
- U8X8_A(0x050), /* TC/R: According to app notes fOSC=6Mhz fFF=70Hz --> TC/R = 74d*/
- U8X8_A(0x080), /* L/F: Lines per frame - 1, probably this is the height of the display - 1 (value confirmed with app notes p41)*/
- U8X8_A(0x01e), /* Low byte of the virtual screen size. (Value confirmed with app notes p41) */
- U8X8_A(0), /* High byte of the virtual screen size, see also section 9.1.2 */
-
- U8X8_C(0x044), /* SCROLL */
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x080),
- U8X8_A(0x000),
- U8X8_A(0x040),
- U8X8_A(0x080),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
-
- U8X8_CA(0x05a, 0), /* HDOT SCR: Horizontal dotwise scroll... set to 0 */
-
- U8X8_CA(0x05b, 0x0c), /* OVLAY: 2-layer, all graphics, OR between layer 1 and 2 */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_DLY(100),
- };
- /* RA8835 NHD-240128BZ */
- static const uint8_t u8x8_d_rh8835_nhd_240128_init_seq[] = {
- U8X8_DLY(100),
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_DLY(100),
- /* system init command, see also u8x8_d_sed1330_powersave0_seq */
- U8X8_CA(0x040, 0x030), /* sys init (0x040) with one arg, where 0x030 is a wild guess */
- /* system init has total 8 parameters, so 7 more are here */
- U8X8_A(0x087), /* no idea here... WF (topmost bit) is set to one because it is suggested in the datasheet, lowest 3 bits refer to text mode only */
- U8X8_A(0x007), /* FY: height of a char+1, does not matter here (hopefully), because we use graphics mode only */
- U8X8_A(0x01d), /* C/R: this could be the number of horizontal bytes - 1 (Value confirmed with app notes p41) */
- U8X8_A(0x050), /* TC/R: According to app notes fOSC=6Mhz fFF=70Hz --> TC/R = 74d*/
- U8X8_A(0x080), /* L/F: Lines per frame - 1, probably this is the height of the display - 1 (value confirmed with app notes p41)*/
- U8X8_A(0x01e), /* Low byte of the virtual screen size. (Value confirmed with app notes p41) */
- U8X8_A(0), /* High byte of the virtual screen size, see also section 9.1.2 */
- U8X8_C(0x044), /* SCROLL */
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x080),
- U8X8_A(0x000),
- U8X8_A(0x040),
- U8X8_A(0x080),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
-
- //U8X8_CA(0x05a, 0), /* HDOT SCR: Horizontal dotwise scroll... set to 0 */
-
- U8X8_CA(0x05b, 0x0c), /* OVLAY: 2-layer, all graphics, OR between layer 1 and 2 */
- //U8X8_CA(0x059, 0x04), /* send display on command (hex 0x059, see p37 ) */
-
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_DLY(100),
-
- };
- uint8_t u8x8_d_sed1330_240x128(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_sed1330_240x128_display_info);
- break;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_sed1330_240x128_init_seq);
- break;
- default:
- return u8x8_d_sed1330_common(u8x8, msg, arg_int, arg_ptr);
- }
- return 1;
- }
- uint8_t u8x8_d_ra8835_nhd_240x128(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_sed1330_240x128_display_info);
- break;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_rh8835_nhd_240128_init_seq);
- break;
- default:
- return u8x8_d_sed1330_common(u8x8, msg, arg_int, arg_ptr);
- }
- return 1;
- }
- /*=============================================*/
- /* issue 2518 https://github.com/olikraus/u8g2/issues/2518 */
- static const u8x8_display_info_t u8x8_sed1330_240x64_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 30, /* G242CX Datasheet p5 */
- /* pre_chip_disable_wait_ns = */ 10, /* G242CX Datasheet p5 */
- /* reset_pulse_width_ms = */ 1,
- /* post_reset_wait_ms = */ 6,
- /* sda_setup_time_ns = */ 20,
- /* sck_pulse_width_ns = */ 140,
- /* sck_clock_hz = */ 1000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0,
- /* i2c_bus_clock_100kHz = */ 4,
- /* data_setup_time_ns = */ 120, /* G242CX Datasheet p5 */
- /* write_pulse_width_ns = */ 220, /* G242CX Datasheet p5 */
- /* tile_width = */ 30,
- /* tile_height = */ 8,
- /* default_x_offset = */ 0,
- /* flipmode_x_offset = */ 0,
- /* pixel_width = */ 240,
- /* pixel_height = */ 64
- };
- static const uint8_t u8x8_d_sed1330_240x64_init_seq[] = {
- U8X8_DLY(100),
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_DLY(100),
- /* system init command, see also u8x8_d_sed1330_powersave0_seq */
- U8X8_CA(0x040, 0x030), /* sys init (0x040) with one arg, where 0x030 is a wild guess */
- /* system init has total 8 parameters, so 7 more are here */
- U8X8_A(0x087), /* no idea here... WF (topmost bit) is set to one because it is suggested in the datasheet, lowest 3 bits refer to text mode only */
- U8X8_A(0x007), /* FY: height of a char+1, does not matter here (hopefully), because we use graphics mode only */
- U8X8_A(0x01d), /* C/R: this could be the number of horizontal bytes - 1 (Value confirmed with app notes p41) */
- U8X8_A(0x050), /* TC/R: According to app notes fOSC=6Mhz fFF=70Hz --> TC/R = 74d*/
- U8X8_A(0x03f), /* L/F: Lines per frame - 1, probably this is the height of the display - 1 (value confirmed with app notes p41)*/
- U8X8_A(0x01e), /* Low byte of the virtual screen size. (Value confirmed with app notes p41) */
- U8X8_A(0), /* High byte of the virtual screen size, see also section 9.1.2 */
-
- U8X8_C(0x044), /* SCROLL */
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x080),
- U8X8_A(0x000),
- U8X8_A(0x040),
- U8X8_A(0x080),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
-
- U8X8_CA(0x05a, 0), /* HDOT SCR: Horizontal dotwise scroll... set to 0 */
-
- U8X8_CA(0x05b, 0x0c), /* OVLAY: 2-layer, all graphics, OR between layer 1 and 2 */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_DLY(100),
- };
- uint8_t u8x8_d_sed1330_240x64(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_sed1330_240x64_display_info);
- break;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_sed1330_240x64_init_seq);
- u8x8_SendF(u8x8, "caaaaaaaa", 0x40, 0x30, 0x87, 0x07, 0x1d, 0x50, 0x3f, 0x1e, 0x00); /* send init again, issue 2518 https://github.com/olikraus/u8g2/issues/2518 */
- break;
- default:
- return u8x8_d_sed1330_common(u8x8, msg, arg_int, arg_ptr);
- }
- return 1;
- }
- /*=============================================*/
- static const u8x8_display_info_t u8x8_sed1330_320x240_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 30, /* G242CX Datasheet p5 */
- /* pre_chip_disable_wait_ns = */ 10, /* G242CX Datasheet p5 */
- /* reset_pulse_width_ms = */ 1,
- /* post_reset_wait_ms = */ 6,
- /* sda_setup_time_ns = */ 20,
- /* sck_pulse_width_ns = */ 140,
- /* sck_clock_hz = */ 1000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0,
- /* i2c_bus_clock_100kHz = */ 4,
- /* data_setup_time_ns = */ 120, /* G242CX Datasheet p5 */
- /* write_pulse_width_ns = */ 220, /* G242CX Datasheet p5 */
- /* tile_width = */ 40,
- /* tile_height = */ 30,
- /* default_x_offset = */ 0,
- /* flipmode_x_offset = */ 0,
- /* pixel_width = */ 320,
- /* pixel_height = */ 240
- };
- static const uint8_t u8x8_d_sed1330_320x240_init_seq[] = {
- U8X8_DLY(100),
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_DLY(100),
- /* system init command, see also u8x8_d_sed1330_powersave0_seq */
- U8X8_CA(0x040, 0x030), /* sys init (0x040) with one arg, where 0x030 is a wild guess */
- /* system init has total 8 parameters, so 7 more are here */
- U8X8_A(0x087), /* no idea here... WF (topmost bit) is set to one because it is suggested in the datasheet, lowest 3 bits refer to text mode only */
- U8X8_A(0x007), /* FY: height of a char+1, does not matter here (hopefully), because we use graphics mode only */
- U8X8_A(0x027), /* 40-1 */ /* C/R: this could be the number of horizontal bytes - 1 (Value confirmed with app notes p41) */
- U8X8_A(0x039), /* TC/R: According to app notes fOSC=6Mhz fFF=70Hz --> TC/R = 74d*/
- U8X8_A(0x0ef), /* L/F: Lines per frame - 1, probably this is the height of the display - 1 (value confirmed with app notes p41)*/
- U8X8_A(0x028), /* Low byte of the virtual screen size. (Value confirmed with app notes p41) */
- U8X8_A(0), /* High byte of the virtual screen size, see also section 9.1.2 */
-
- U8X8_C(0x044), /* SCROLL */
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x0ef),
- U8X8_A(0x0b0),
- U8X8_A(0x004),
- U8X8_A(0x0ef),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
-
- U8X8_CA(0x05a, 0), /* HDOT SCR: Horizontal dotwise scroll... set to 0 */
-
- U8X8_CA(0x05b, 0x0c), /* OVLAY: 2-layer, all graphics, OR between layer 1 and 2 */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_DLY(100),
- };
- uint8_t u8x8_d_ra8835_320x240(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_sed1330_320x240_display_info);
- break;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_sed1330_320x240_init_seq);
- break;
- default:
- return u8x8_d_sed1330_common(u8x8, msg, arg_int, arg_ptr);
- }
- return 1;
- }
- /*=============================================*/
- /*
- https://github.com/olikraus/u8g2/issues/1908
- https://www.allelectronics.com/mas_assets/media/allelectronics2018/spec/LCD-101.pdf
- */
- static const u8x8_display_info_t u8x8_sed1330_256x128_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 30, /* G242CX Datasheet p5 */
- /* pre_chip_disable_wait_ns = */ 10, /* G242CX Datasheet p5 */
- /* reset_pulse_width_ms = */ 1,
- /* post_reset_wait_ms = */ 6,
- /* sda_setup_time_ns = */ 20,
- /* sck_pulse_width_ns = */ 140,
- /* sck_clock_hz = */ 1000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0,
- /* i2c_bus_clock_100kHz = */ 4,
- /* data_setup_time_ns = */ 120, /* G242CX Datasheet p5 */
- /* write_pulse_width_ns = */ 220, /* G242CX Datasheet p5 */
- /* tile_width = */ 32,
- /* tile_height = */ 16,
- /* default_x_offset = */ 0,
- /* flipmode_x_offset = */ 0,
- /* pixel_width = */ 256,
- /* pixel_height = */ 128
- };
- /* 256x128 Hyundai HG25604 (HG25504???) */
- static const uint8_t u8x8_d_sed1330_256x128_init_seq[] = {
- U8X8_DLY(100),
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_DLY(100),
- /* system init command, see also u8x8_d_sed1330_powersave0_seq */
- U8X8_CA(0x040, 0x030), /* sys init (0x040) with one arg, where 0x030 is a wild guess */
- /* system init has total 8 parameters, so 7 more are here */
- U8X8_A(0x087), /* no idea here... WF (topmost bit) is set to one because it is suggested in the datasheet, lowest 3 bits refer to text mode only */
- U8X8_A(0x007), /* FY: height of a char+1, does not matter here (hopefully), because we use graphics mode only */
- U8X8_A(0x01f), /* 32-1*/ /* C/R: this could be the number of horizontal bytes - 1 (Value confirmed with app notes p41) */
- U8X8_A(0x050), /* TC/R: According to app notes fOSC=6Mhz fFF=70Hz --> TC/R = 74d*/
- U8X8_A(0x080), /* L/F: Lines per frame - 1, probably this is the height of the display - 1 (value confirmed with app notes p41)*/
- U8X8_A(0x020), /* 32 */ /* Low byte of the virtual screen size. (Value confirmed with app notes p41) */
- U8X8_A(0), /* High byte of the virtual screen size, see also section 9.1.2 */
-
- U8X8_C(0x044), /* SCROLL, 11 Bytes in total */
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x080),
- U8X8_A(0x000),
- U8X8_A(0x040),
- U8X8_A(0x080),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
-
- U8X8_CA(0x05a, 0), /* HDOT SCR: Horizontal dotwise scroll... set to 0 */
-
- U8X8_CA(0x05b, 0x0c), /* OVLAY: 2-layer, all graphics, OR between layer 1 and 2 */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_DLY(100),
- };
- uint8_t u8x8_d_sed1330_256x128(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_sed1330_256x128_display_info);
- break;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_sed1330_256x128_init_seq);
- break;
- default:
- return u8x8_d_sed1330_common(u8x8, msg, arg_int, arg_ptr);
- }
- return 1;
- }
- /*=============================================*/
- /*
- https://github.com/olikraus/u8g2/issues/1086
- */
- static const u8x8_display_info_t u8x8_sed1330_320x200_display_info =
- {
- /* chip_enable_level = */ 0,
- /* chip_disable_level = */ 1,
-
- /* post_chip_enable_wait_ns = */ 30, /* G242CX Datasheet p5 */
- /* pre_chip_disable_wait_ns = */ 10, /* G242CX Datasheet p5 */
- /* reset_pulse_width_ms = */ 1,
- /* post_reset_wait_ms = */ 6,
- /* sda_setup_time_ns = */ 20,
- /* sck_pulse_width_ns = */ 140,
- /* sck_clock_hz = */ 1000000UL, /* since Arduino 1.6.0, the SPI bus speed in Hz. Should be 1000000000/sck_pulse_width_ns */
- /* spi_mode = */ 0,
- /* i2c_bus_clock_100kHz = */ 4,
- /* data_setup_time_ns = */ 120, /* G242CX Datasheet p5 */
- /* write_pulse_width_ns = */ 220, /* G242CX Datasheet p5 */
- /* tile_width = */ 40,
- /* tile_height = */ 25,
- /* default_x_offset = */ 0,
- /* flipmode_x_offset = */ 0,
- /* pixel_width = */ 320,
- /* pixel_height = */ 200
- };
- static const uint8_t u8x8_d_sed1330_320x200_init_seq[] = {
- U8X8_DLY(100),
- U8X8_START_TRANSFER(), /* enable chip, delay is part of the transfer start */
- U8X8_DLY(100),
- /* system init command, see also u8x8_d_sed1330_powersave0_seq */
- U8X8_CA(0x040, 0x030), /* sys init (0x040) with one arg, where 0x030 is a wild guess */
- /* system init has total 8 parameters, so 7 more are here */
-
- U8X8_A(0x087), /* no idea here... WF (topmost bit) is set to one because it is suggested in the datasheet, lowest 3 bits refer to text mode only */
- U8X8_A(0x007), /* FY: height of a char+1, does not matter here (hopefully), because we use graphics mode only */
- U8X8_A(0x027), /* 40-1 */ /* C/R: this could be the number of horizontal bytes - 1 (Value confirmed with app notes p41) */
- U8X8_A(0x02F), /* TC/R: According to app notes fOSC=6Mhz fFF=70Hz --> TC/R = 74d*/
- U8X8_A(0x0c7), /* 0xc7=199, L/F: Lines per frame - 1, probably this is the height of the display - 1 (value confirmed with app notes p41)*/
- U8X8_A(0x028), /* Low byte of the virtual screen size. (Value confirmed with app notes p41) */
- U8X8_A(0x000), /* High byte of the virtual screen size, see also section 9.1.2 */
-
- U8X8_C(0x044), /* SCROLL, 11 Bytes in total */
- U8X8_A(0x000), /* Screen 1 Start Address (Low) = 00H */
- U8X8_A(0x000), /* Screen 1 Start Address (High) = 00H */
- U8X8_A(0x0c7), /* Screen Layer 1 Number of lines = 200d */
- U8X8_A(0x0b0), /* Screen 2 Start Address (Low) = 00H */
- U8X8_A(0x005), /* Screen 2 Start Address (High) = 00H */
- U8X8_A(0x0c7), /* Screen Layer 2 Number of lines = 200d */
- U8X8_C(0x04C), /* Cursor Direction 0,0 Shift Direction = Right */
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_A(0x000),
- U8X8_CA(0x05a, 0), /* HDOT SCR: Horizontal dotwise scroll... set to 0 */
-
- U8X8_CA(0x05b, 0x0c), /* OVLAY: 2-layer, all graphics, OR between layer 1 and 2 */
- U8X8_DLY(100),
- U8X8_END_TRANSFER(), /* disable chip */
- U8X8_DLY(100),
- };
- uint8_t u8x8_d_sed1330_320x200(u8x8_t *u8x8, uint8_t msg, uint8_t arg_int, void *arg_ptr)
- {
- switch(msg)
- {
- case U8X8_MSG_DISPLAY_SETUP_MEMORY:
- u8x8_d_helper_display_setup_memory(u8x8, &u8x8_sed1330_320x200_display_info);
- break;
- case U8X8_MSG_DISPLAY_INIT:
- u8x8_d_helper_display_init(u8x8);
- u8x8_cad_SendSequence(u8x8, u8x8_d_sed1330_320x200_init_seq);
- break;
- default:
- return u8x8_d_sed1330_common(u8x8, msg, arg_int, arg_ptr);
- }
- return 1;
- }
|