Home
last modified time | relevance | path

Searched full:rgb565 (Results 1 – 25 of 34) sorted by relevance

12

/Zephyr-latest/dts/bindings/display/
Dnxp,dcnano-lcdif.yaml27 - "16-bit-config1" # 16 bit configuration 1. RGB565: XXXXXXXX_RRRRRGGG_GGGBBBBB
28 - "16-bit-config2" # 16 bit configuration 2. RGB565: XXXRRRRR_XXGGGGGG_XXXBBBBB
29 - "16-bit-config3" # 16-bit configuration 3. RGB565: XXRRRRRX_XXGGGGGG_XXBBBBBX
Dilitek,ili9xxx-common.yaml14 - 0 # RGB565
/Zephyr-latest/drivers/mipi_dsi/
DKconfig.mcux26 convert RGB565 input data to BGR565 (little endian to big endian),
33 this Kconfig is enabled, the DSI expects RGB565 data in little endian
/Zephyr-latest/drivers/display/
DKconfig.st7789v25 bool "RGB565"
DKconfig.ili9xxx19 API only supports RGB565 mode.
DKconfig.stm32_ltdc38 bool "RGB565"
Ddisplay_sdl.c139 uint16_t rgb565; in sdl_display_write_rgb565() local
148 rgb565 = sys_be16_to_cpu(*pix_ptr); in sdl_display_write_rgb565()
149 pixel = (((rgb565 >> 11) & 0x1F) * 255 / 31) << 16; in sdl_display_write_rgb565()
150 pixel |= (((rgb565 >> 5) & 0x3F) * 255 / 63) << 8; in sdl_display_write_rgb565()
151 pixel |= (rgb565 & 0x1F) * 255 / 31; in sdl_display_write_rgb565()
Ddisplay_ili9xxx.c28 * to RGB565 will result in correct data
203 /* Only RGB565 can be supported, see note below */ in ili9xxx_read()
222 * values. When using RGB565 pixel format, pixels are converted to in ili9xxx_read()
256 /* Bitshift the graphics RAM data to RGB565. in ili9xxx_read()
Ddisplay_st7796s.c108 * For RGB565, Red is placed in byte 1 and Blue in byte 0. in st7796s_get_pixelfmt()
112 * For RGB565, this would map to Red being in D[11:15] and in st7796s_get_pixelfmt()
116 * For RGB565, Blue is placed in byte 0 as mentioned earlier. in st7796s_get_pixelfmt()
Ddisplay_mcux_dcnano_lcdif.c136 /* Zephyr stores RGB565 as big endian, and LCDIF in mcux_dcnano_lcdif_get_capabilities()
180 /* Zephyr stores RGB565 as big endian, and LCDIF in mcux_dcnano_lcdif_set_pixel_format()
/Zephyr-latest/samples/modules/lvgl/demos/boards/
Dmimxrt595_evk_mimxrt595s_cm33.conf8 # 1280x720 display in a 16-bpp format (e.g. RGB565), this is (1280 / 8) * (720 / 4) * 2 = 57600
/Zephyr-latest/modules/lvgl/
DKconfig83 bool "16: RGB565"
91 bool "Swap the 2 bytes of RGB565 color."
/Zephyr-latest/tests/drivers/video/api/src/
Dvideo_common.c11 RGB565, enumerator
17 [RGB565] = {.pixelformat = VIDEO_PIX_FMT_RGB565,
90 zassert_equal(idx, RGB565); in ZTEST()
/Zephyr-latest/include/zephyr/dt-bindings/mipi_dsi/
Dmipi_dsi.h28 /** RGB565 (16bpp). */
/Zephyr-latest/drivers/video/
Dvideo_mcux_smartdma.c65 * SmartDMA engine streams 15 lines of RGB565 data, then interrupts the in nxp_video_sdma_callback()
163 /* SmartDMA will read 30 lines of RGB565 video data into framebuffer */ in nxp_video_sdma_enqueue()
219 /* SDMA only supports 320x240 RGB565 */
277 * Check sensor format. If it is not RGB565 320x240 in nxp_video_sdma_get_format()
286 /* Verify that format is RGB565 */ in nxp_video_sdma_get_format()
298 LOG_ERR("Sensor device does not support RGB565"); in nxp_video_sdma_get_format()
Dvideo_mcux_csi.c106 * 32-bits pixel format. For example, an input in RGB565 or YUYV (2-bytes format) will become a
351 * implicitly converted to a 32-bits pixel format. For example, an input in RGB565 in video_mcux_csi_get_caps()
Dov2640.c636 /* Disable JPEG compression and set output to RGB565 */ in ov2640_set_output_format()
868 /* We only support RGB565 and JPEG pixel formats */ in ov2640_set_fmt()
870 LOG_ERR("ov2640 camera supports only RGB565 and JPG pixelformats!"); in ov2640_set_fmt()
1013 /* set default/init format SVGA RGB565 */ in ov2640_init()
Dgc2145.c898 /* Disable JPEG compression and set output to RGB565 */ in gc2145_set_output_format()
1030 /* We only support RGB565 formats */ in gc2145_set_fmt()
1032 LOG_ERR("gc2145 camera supports only RGB565"); in gc2145_set_fmt()
1151 /* set default/init format QVGA RGB565 */ in gc2145_init()
Dov7725.c429 /* we only support one format for now (VGA RGB565) */ in ov7725_set_fmt()
601 /* set default/init format VGA RGB565 */ in ov7725_init()
Dvideo_sw_generator.c19 * The pattern generator needs about 1.5 ms to fill out a 320x160 RGB565
/Zephyr-latest/tests/drivers/display/display_read_write/
Dtestcase.yaml48 drivers.display.read_write.sdl.rgb565:
/Zephyr-latest/boards/shields/lcd_par_s035/boards/
Drd_rw612_bga.overlay83 * like LVGL, which would otherwise have to swap RGB565 data in
/Zephyr-latest/include/zephyr/drivers/misc/ft8xx/
Dft8xx_copro.h30 /** Co-processor option to decode the JPEG image to RGB565 format */
/Zephyr-latest/samples/drivers/video/capture/src/
Dcheck_test_pattern.h82 /* Convert RGB565 to RGB888 */ in rgb565_to_lab()
/Zephyr-latest/boards/weact/mini_stm32h743/doc/
Dindex.rst21 - ST7735 TFT-LCD 160 x 80 pixels (RGB565 3-SPI)

12