From 1f81e5c0a9cd36c6ff337c811201b257b71fe110 Mon Sep 17 00:00:00 2001 From: Gerhard Kalab Date: Thu, 24 Aug 2023 17:41:02 +0200 Subject: [PATCH] Fix compatibility issue with PicoChess --- main/bleuart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/bleuart.cpp b/main/bleuart.cpp index 35c39d2..a0bb978 100644 --- a/main/bleuart.cpp +++ b/main/bleuart.cpp @@ -346,7 +346,7 @@ int BleUart::gatt_svr_chr_access_uart_write(uint16_t conn_handle, uint16_t attr_ } return 0; default: - return BLE_ATT_ERR_UNLIKELY; + return 0; } return 0; }