mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
16 lines
636 B
Plaintext
16 lines
636 B
Plaintext
menu "Example Configuration"
|
|
config EXAMPLE_USE_DMA2D_COPY_FRAME
|
|
bool "Use DMA2D to copy draw buffer to frame buffer"
|
|
default y
|
|
help
|
|
Enable this option, DMA2D will be used to copy the LVGL draw buffer to the target frame buffer.
|
|
This can save some CPU time and improve the performance.
|
|
|
|
config EXAMPLE_MONITOR_FPS_BY_GPIO
|
|
bool "Monitor FPS by GPIO"
|
|
default y
|
|
help
|
|
Enable this option, you can visualize the FPS by attaching a logic analyzer to a specific GPIO.
|
|
The GPIO will output a square wave with the frequency of FPS/2.
|
|
endmenu
|