Home
last modified time | relevance | path

Searched full:display (Results 1 – 25 of 499) sorted by relevance

12345678910>>...20

/Zephyr-Core-3.4.0/drivers/display/
DKconfig1 # Display drivers
6 menuconfig DISPLAY config
7 bool "Display controller drivers"
9 Enable display drivers
11 if DISPLAY
14 int "Display devices init priority"
17 Display devices initialization priority.
19 module = DISPLAY
20 module-str = display
23 source "drivers/display/Kconfig.mcux_elcdif"
[all …]
DKconfig.ili9xxx1 # ILI9XXX display driver configuration options
14 bool "ILI9340 display driver"
20 Enable driver for ILI9340 display driver.
23 bool "ILI9341 display driver"
29 Enable driver for ILI9341 display driver.
32 bool "ILI9342C display driver"
38 Enable driver for ILI9342C display driver.
41 bool "ILI9488 display driver"
47 Enable driver for ILI9488 display driver.
DKconfig.sdl1 # SDL based emulated display configuration options
7 bool "SDL based emulated display"
12 Enable SDL based emulated display compliant with display driver API.
20 Default pixel format to be used by the display
DKconfig.microbit1 # Microbit display driver configuration options
7 bool "BBC micro:bit 5x5 LED Display support"
11 Enable this to be able to display images and text on the 5x5
12 LED matrix display on the BBC micro:bit.
15 int "Maximum length of strings that can be shown on the display"
DKconfig.dummy1 # Configuration options for dummy display
7 bool "Dummy display driver"
9 Enable dummy display driver compliant with display driver API.
DKconfig.st7789v1 # ST7789V display driver configuration options
7 bool "ST7789V display driver"
12 Enable driver for ST7789V display driver.
19 Specify the color pixel format for the ST7789V display controller.
/Zephyr-Core-3.4.0/samples/drivers/display/
Dsample.yaml5 sample.display.shield.adafruit_2_8_tft_touch_v2:
20 - display
25 sample.display.shield.ssd1306_128x32:
29 - display
34 sample.display.shield.ssd1306_128x64:
38 - display
43 sample.display.shield.waveshare_epaper_gdeh0213b1:
49 sample.display.shield.waveshare_epaper_gdew042t2:
55 sample.display.st7789v_tl019fqv01:
59 - display
[all …]
DREADME.rst3 Display Sample
9 This sample will draw some basic rectangles onto the display.
20 As this is a generic sample it should work with any display supported by Zephyr.
26 :zephyr-app: samples/drivers/display
36 :zephyr-app: samples/drivers/display
41 List of Arduino-based display shields
/Zephyr-Core-3.4.0/samples/subsys/display/cfb_custom_font/src/
Dmain.c9 #include <zephyr/display/cfb.h>
16 const struct device *const display = DEVICE_DT_GET(DT_CHOSEN(zephyr_display)); in main() local
19 if (!device_is_ready(display)) { in main()
20 printk("Display device not ready\n"); in main()
23 if (display_set_pixel_format(display, PIXEL_FORMAT_MONO10) != 0) { in main()
28 if (display_blanking_off(display) != 0) { in main()
29 printk("Failed to turn off display blanking\n"); in main()
33 err = cfb_framebuffer_init(display); in main()
38 err = cfb_framebuffer_clear(display, true); in main()
43 err = cfb_print(display, "123456", 0, 0); in main()
[all …]
/Zephyr-Core-3.4.0/include/zephyr/drivers/
Ddisplay.h9 * @brief Public API for display drivers and applications
16 * @brief Display Interface
17 * @defgroup display_interface Display Interface
25 #include <zephyr/dt-bindings/display/panel.h>
32 * @brief Display pixel formats
34 * Display pixel format enumeration.
49 * @brief Bits required per pixel for display format
51 * This macro expands to the number of bits required for a given display
53 * display format type
75 * Electrophoretic Display.
[all …]
Dauxdisplay.h9 * @brief Public API for auxiliary (textual/non-graphical) display drivers
16 * @brief Auxiliary (Text) Display Interface
17 * @defgroup auxdisplay_interface Text Display Interface
34 /** @brief Used to describe the mode of an auxiliary (text) display */
37 /** @brief Used for moving the cursor or display position */
42 /** Shifts current position by +/- X,Y position, does not take display direction into
47 /** Shifts current position by +/- X,Y position, takes display direction into
67 * display/driver, both minimum and maximum will be AUXDISPLAY_LIGHT_NOT_SUPPORTED.
77 /** @brief Structure holding display capabilities. */
85 /** Display-specific data (e.g. 4-bit or 8-bit mode for HD44780-based displays) */
[all …]
/Zephyr-Core-3.4.0/include/zephyr/display/
Dmb_display.h2 * @brief BBC micro:bit display APIs.
15 * @brief BBC micro:bit display APIs
16 * @defgroup mb_display BBC micro:bit display APIs
32 * @brief Representation of a BBC micro:bit display image.
51 * @brief Display mode.
59 /** Display images sequentially, one at a time. */
62 /** Display images by scrolling. */
65 /* Display flags, i.e. modifiers to the chosen mode */
99 * @brief Opaque struct representing the BBC micro:bit display.
105 * https://lancaster-university.github.io/microbit-docs/ubit/display/
[all …]
/Zephyr-Core-3.4.0/tests/lib/gui/lvgl/
Dtestcase.yaml4 - display
10 - display
19 - display
29 - display
36 - display
43 - display
50 - display
/Zephyr-Core-3.4.0/dts/bindings/display/
Dsharp,ls0xx.yaml4 description: Sharp memory display controller
8 include: [spi-device.yaml, display-controller.yaml]
23 datasheet of particular display. Higher frequency gives better
28 description: DISPLAY pin
30 The DISPLAY pin controls if the LCD displays memory contents or
32 initialization. display blanking apis can be used to control it.
Dilitek,ili9xxx-common.yaml5 description: ILI9XXX display controllers common properties.
7 include: [spi-device.yaml, display-controller.yaml]
34 Display pixel format. Note that when RGB888 pixel format is selected
47 Display rotation (CW) in degrees.
49 display-inversion:
52 Display inversion mode. Every bit is inverted from the frame memory to
53 the display.
/Zephyr-Core-3.4.0/drivers/auxdisplay/
DKconfig1 # Auxiliary Display drivers
7 bool "Auxiliary (textual) Display Drivers"
9 Enable auxiliary/texual display drivers (e.g. alphanumerical displays)
14 int "Auxiliary display devices init priority"
17 Auxiliary (textual) display devices initialization priority.
/Zephyr-Core-3.4.0/samples/drivers/misc/ft800/
Dsample.yaml2 name: FT800 display sample
4 sample.display.ft800:
7 - display
11 harness: display
/Zephyr-Core-3.4.0/boards/arm/mimxrt595_evk/
DKconfig.defconfig22 if DISPLAY
24 # Enable MIPI display driver
42 endif # DISPLAY
49 # LVGL should allocate buffers equal to size of display
58 # display refreshes, which is not necessary for the eLCDIF driver
68 # Force display buffers to be aligned for DCNANO LCDIF (128 byte alignment)
72 # LVGL display buffers will be too large for internal SRAM, locate in
/Zephyr-Core-3.4.0/samples/subsys/display/cfb/
Dsample.yaml2 harness: display
3 tags: display
8 sample.display.cfb.ssd1306:
12 sample.display.cfb.ssd16xx:
/Zephyr-Core-3.4.0/samples/subsys/display/cfb_shell/
Dsample.yaml2 harness: display
3 tags: display
8 sample.display.cfb_shell.ssd1306:
12 sample.display.cfb_shell.ssd16xx:
DREADME.rst17 :zephyr-app: samples/subsys/display/cfb_shell
42 **init**: should be called first to initialize the display.
50 Display Cleared
52 **get_device**: prints the display device name.
61 **get_param**: get the display parameters where height, width and ppt
98 **invert**: invert the pixel color of the display.
109 of the display the remaining characters will be displayed on the next line. The
120 marks when it contains spaces. If the text hits the edge of the display, the
122 until it hits the display boundary, last column for horizontal and last row
124 vertically or horizontally on the display.
[all …]
/Zephyr-Core-3.4.0/samples/drivers/auxdisplay/
DREADME.rst3 Auxiliary display sample
9 This sample shows how to use the auxiliary display drivers by outputting a
15 Note that this sample requires a board with an auxiliary display setup. A
17 HD44780-compatible 20 character by 4 line display. See the overlay file
28 If successful, the display will show `Hello World from <board>`.
/Zephyr-Core-3.4.0/samples/drivers/misc/ft800/src/
Dmain.c14 * @file Display a counter using FT800.
37 /* To get touch events calibrate the display */ in main()
48 /* Start Display List */ in main()
56 /* Display the counter */ in main()
60 /* Display the hello message */ in main()
66 /* Display value set with buttons */ in main()
76 /* Finish Display List */ in main()
78 /* Display created frame */ in main()
/Zephyr-Core-3.4.0/samples/subsys/display/lvgl/
Dsample.yaml5 sample.display.lvgl.gui:
6 filter: dt_chosen_enabled("zephyr,display")
9 # the display buffer, but a minimum is also required for the system itself.
16 - display
/Zephyr-Core-3.4.0/samples/subsys/display/cfb_custom_font/
DREADME.rst13 to show the font elements on the display of a supported board.
16 :zephyr_file:`samples/subsys/display/cfb_custom_font`.
28 This overlay config enables support for SSD16XX display controller
32 Example building for the reel_board with SSD16XX display support:
35 :zephyr-app: samples/subsys/display/cfb_custom_font

12345678910>>...20