#46: rename GATT_MTU_SIZE_DEFAULT to BLE_GATT_MTU_SIZE_DEFAULT. This avoids a name conflict with the contant defined in Nordic-SDK.

This commit is contained in:
Rohit Grover 2015-07-01 07:31:24 +01:00
parent dde04982bc
commit 2601599599
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ enum ble_error_t {
};
/** @brief Default MTU size. */
static const unsigned GATT_MTU_SIZE_DEFAULT = 23;
static const unsigned BLE_GATT_MTU_SIZE_DEFAULT = 23;
#ifdef __cplusplus
}

View File

@ -41,7 +41,7 @@ extern const uint8_t UARTServiceRXCharacteristicUUID[UUID::LENGTH_OF_LONG_UUID]
class UARTService {
public:
/**< Maximum length of data (in bytes) that can be transmitted by the UART service module to the peer. */
static const unsigned BLE_UART_SERVICE_MAX_DATA_LEN = (GATT_MTU_SIZE_DEFAULT - 3);
static const unsigned BLE_UART_SERVICE_MAX_DATA_LEN = (BLE_GATT_MTU_SIZE_DEFAULT - 3);
public: