mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
c55a07bf57
Increase LP_UART_EMPTY_THRESH_DEFAULT value to 4. The original value could cause the FIFO become empty before filling next data into the FIFO when the buadrate is high. TX_DONE interrupt would raise before actual transmission complete in such case.
8 lines
254 B
CMake
8 lines
254 B
CMake
# In order for the cases defined by `TEST_CASE` to be linked into the final elf,
|
|
# the component can be registered as WHOLE_ARCHIVE
|
|
idf_component_register(
|
|
SRCS "test_app_main.c" "test_uart.c"
|
|
REQUIRES driver unity test_utils
|
|
WHOLE_ARCHIVE
|
|
)
|