I wrote a github issue on this but I try in this forum because I find strange the problem that I face of. I took ble_spp_client example along with ble_spp_server example. The only thing that I did was to change to UART pins on ble_spp_client. Precisely, I changed the following line:
Code: Select all
uart_set_pin(UART_NUM_0, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE);
Code: Select all
uart_set_pin(UART_NUM_0, GPIO_NUM_4, GPIO_NUM_5, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE);
Then, the ESP32 crashed. It is impossible that nobody saw this problem before… Changing the pins on uart_events example cause no problem…
Is there any limitation using BLE and UART together?
Thanks for your help!
JS