Compare commits

..

No commits in common. "a195ca2b0c42c39a136b6646b40b7ac8e6a45a6c" and "d42829b643bfce9d426528dfaf4a6b30ecd7133b" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ void setupWifi()
QueueHandle_t setupEspNow()
{
s_esp_now_queue = xQueueCreate(4, sizeof(EspNowEvent));
ESP_ERROR_CHECK(s_esp_now_queue == nullptr);
ESP_ERROR_CHECK(s_esp_now_queue != nullptr);
ESP_ERROR_CHECK(esp_now_init());
// ESP_ERROR_CHECK(esp_now_set_pmk(nullptr));

View File

@ -27,7 +27,7 @@ QueueHandle_t setupSerial()
.source_clk = UART_SCLK_DEFAULT,
};
ESP_ERROR_CHECK(uart_driver_install(UART_NUM_0, 132, 128 * 2, 4, &s_uart_queue, 0));
ESP_ERROR_CHECK(uart_driver_install(UART_NUM_0, 128, 128 * 2, 4, &s_uart_queue, 0));
ESP_ERROR_CHECK(uart_param_config(UART_NUM_0, &config));
ESP_ERROR_CHECK(uart_set_pin(UART_NUM_0, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE));