ecfdf073fc
apps/graphics/ft80x: Replace polling logic with gentler signal logic when waitinf for the CMD FIFO to become empty. apps/examples/ft80x: Add first co-processor example. apps/graphics: Extend library to manage display lists either in display memory (RAM DL) or provided directly to th co-processor FIFO (RAM CMD). apps/examples/ft80x: Some minor clean-up. Trivial changes for coprocessor support.
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config GRAPHICS_FT80X
|
|
bool "FTDI/BridgeTek FT80x library"
|
|
default n
|
|
---help---
|
|
Enable support for the FTDI/BridgeTek FT80x library.
|
|
|
|
if GRAPHICS_FT80X
|
|
|
|
config GRAPHICS_FT80X_BUFSIZE
|
|
int "I/O buffer size"
|
|
default 512
|
|
range 32 8192
|
|
---help---
|
|
The size of the local display list I/O buffer. Bigger is better!
|
|
This size should be an even multiple of 4 bytes (otherwise, the size
|
|
will be truncated to the next lower, aligned size).
|
|
|
|
config GRAPHICS_FT80X_CMDEMPTY_SIGNAL
|
|
int "CMDEMPTY event signal"
|
|
default 18
|
|
range l 31
|
|
---help---
|
|
This is the signal that will be received when the co-processor CMD
|
|
FIFO becomes empty.
|
|
|
|
config GRAPHICS_FT80X_DEBUG_ERROR
|
|
bool "Enable error output"
|
|
default y
|
|
|
|
config GRAPHICS_FT80X_DEBUG_WARN
|
|
bool "Enable warning output"
|
|
default n
|
|
depends on GRAPHICS_FT80X_DEBUG_ERROR
|
|
|
|
config GRAPHICS_FT80X_DEBUG_INFO
|
|
bool "Enable informational output"
|
|
default n
|
|
depends on GRAPHICS_FT80X_DEBUG_WARN
|
|
|
|
endif # GRAPHICS_FT80X
|