mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
# Copyright (c) 2020 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
menu "ILI9341 driver"
|
|
depends on USEMODULE_ILI9341
|
|
|
|
config ILI9341_GVDD
|
|
int "GVDD voltage level (in millivolts)"
|
|
default 4800
|
|
range 3000 6000
|
|
help
|
|
Configure GVDD level, which is a reference level for the VCOM level and
|
|
the grayscale voltage level. GVDD should be ≦ (AVDD - 0.5) V .
|
|
|
|
config ILI9341_VCOMH
|
|
int "VCOMH voltage level (in millivolts)"
|
|
default 4250
|
|
range 2700 5875
|
|
help
|
|
Configure the high level of VCOM AC voltage. VCOM needs to be adjusted
|
|
to match the capacitance and performance specifications of the TFT panel
|
|
to maximize contrast and minimize flickering
|
|
|
|
config ILI9341_VCOML
|
|
int "VCOML voltage level (in millivolts)"
|
|
default -2000
|
|
range -2500 0
|
|
help
|
|
Configure the low level of VCOM AC voltage. VCOM needs to be adjusted to
|
|
match the capacitance and performance specifications of the TFT panel to
|
|
maximize contrast and minimize flickering
|
|
|
|
endmenu # ILI9341 driver
|