:orphan: .. title:: SSD1306 .. option:: CONFIG_SSD1306 *SSD1306 display driver* Type: ``bool`` Help ==== .. code-block:: none Enable driver for SSD1306 display driver. Direct dependencies =================== (\ :option:`DISPLAY ` && (\ :option:`SHIELD_SSD1306_128X64 ` || \ :option:`SHIELD_SSD1306_128X64_SPI ` || \ :option:`SHIELD_SSD1306_128X32 ` || \ :option:`SHIELD_SH1106_128X64 `)) || (\ :option:`DISPLAY ` && (\ :option:`SHIELD_SSD1306_128X64 ` || \ :option:`SHIELD_SSD1306_128X64_SPI ` || \ :option:`SHIELD_SSD1306_128X32 ` || \ :option:`SHIELD_SH1106_128X64 `)) || ((\ :option:`I2C ` || \ :option:`SPI `) && \ :option:`DISPLAY `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y Kconfig definitions =================== At ``/shields/ssd1306/Kconfig.defconfig:22`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:17`` → ``/kconfig/Kconfig.shield.defconfig:1`` Menu path: (Top) .. code-block:: kconfig config SSD1306 bool default y depends on DISPLAY && (SHIELD_SSD1306_128X64 || SHIELD_SSD1306_128X64_SPI || SHIELD_SSD1306_128X32 || SHIELD_SH1106_128X64) ---- At ``/shields/ssd1306/Kconfig.defconfig:22`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. code-block:: kconfig config SSD1306 bool default y depends on DISPLAY && (SHIELD_SSD1306_128X64 || SHIELD_SSD1306_128X64_SPI || SHIELD_SSD1306_128X32 || SHIELD_SH1106_128X64) ---- At ``/display/Kconfig.ssd1306:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``/Kconfig:72`` → ``/display/Kconfig:22`` Menu path: (Top) → Device Drivers → Display Drivers .. code-block:: kconfig menuconfig SSD1306 bool "SSD1306 display driver" depends on (I2C || SPI) && DISPLAY help Enable driver for SSD1306 display driver. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*