From 286bc45cdcaca0c41262a27afcb0c74402bba367 Mon Sep 17 00:00:00 2001 From: EcotechBrad <97967104+EcotechBrad@users.noreply.github.com> Date: Tue, 17 May 2022 10:42:34 -0400 Subject: [PATCH] Fix Typo in bluedroid spp client readme `uart_wrire_bytes` to `uart_write_bytes` --- examples/bluetooth/bluedroid/ble/ble_spp_client/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bluetooth/bluedroid/ble/ble_spp_client/README.md b/examples/bluetooth/bluedroid/ble/ble_spp_client/README.md index ba4373e4e7..00b0abb709 100644 --- a/examples/bluetooth/bluedroid/ble/ble_spp_client/README.md +++ b/examples/bluetooth/bluedroid/ble/ble_spp_client/README.md @@ -65,7 +65,7 @@ idf.py set-target ### Receiving Data Wirelessly - The server will receive this data in the ESP_GATTS_WRITE_EVT event and send data to the Uart terminal by `uart_wrire_bytes` function. For example: + The server will receive this data in the ESP_GATTS_WRITE_EVT event and send data to the Uart terminal by `uart_write_bytes` function. For example: case ESP_GATTS_WRITE_EVT: ...