Skip to content
Snippets Groups Projects
Commit bdd24341 authored by fxk8y's avatar fxk8y :spider:
Browse files

Better queue length

parent bb1c20c9
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,7 @@ namespace SiliconTorch {
ESP_ERROR_CHECK(uart_set_pin(_ch, tx, rx, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE));
//uart_intr_config(_ch);
ESP_ERROR_CHECK(uart_driver_install(_ch, MTU * 2, 0, 32, &uartEvQ, 0)); // txBuf = 0; queue size = 32; TODO: evaluate!!!
ESP_ERROR_CHECK(uart_driver_install(_ch, MTU * 2, 0, 64, &uartEvQ, 0)); // txBuf = 0; queue size = 64
ESP_ERROR_CHECK(uart_set_mode(_ch, UART_MODE_UART));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment