From 2ebe5108ee9c03ea1aa67ffd5759cd4a0c500bf7 Mon Sep 17 00:00:00 2001 From: Rohit Grover Date: Tue, 30 Jun 2015 07:46:40 +0100 Subject: [PATCH] Fix #16: move GATT_MTU_SIZE_DEFAULT into blecommon.h Note: there's a corresponding change to mbedmicro/BLE_API --- nordic-sdk/components/softdevice/s130/include/ble_gatt.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nordic-sdk/components/softdevice/s130/include/ble_gatt.h b/nordic-sdk/components/softdevice/s130/include/ble_gatt.h index 626a353..063f0c7 100644 --- a/nordic-sdk/components/softdevice/s130/include/ble_gatt.h +++ b/nordic-sdk/components/softdevice/s130/include/ble_gatt.h @@ -46,8 +46,10 @@ /** @addtogroup BLE_GATT_DEFINES Defines * @{ */ +#if 0 /* The following have been duplicated in blecommon.h */ /** @brief Default MTU size. */ #define GATT_MTU_SIZE_DEFAULT 23 +#endif /** @brief Only the default MTU size of 23 is currently supported. */ #define GATT_RX_MTU 23