deprecate services that are not useless

pull/8738/head
paul-szczepanek-arm 2018-11-26 15:41:32 +00:00
parent e54e3eaee0
commit 2b94b66fd2
2 changed files with 28 additions and 5 deletions

View File

@ -39,11 +39,16 @@ extern const uint8_t UUID_RESET_CHAR[UUID::LENGTH_OF_LONG_UUID];
extern const uint8_t BEACON_UUID[sizeof(UUID::ShortUUIDBytes_t)];
/**
* @class URIBeaconConfigService
* @brief UriBeacon Configuration Service. Can be used to set URL, adjust power levels, and set flags.
* See http://uribeacon.org
*
*/
* @class URIBeaconConfigService
* @brief UriBeacon Configuration Service. Can be used to set URL, adjust power levels, and set flags.
* See http://uribeacon.org
*
* @deprecated This service is deprecated and no replacement is currently available.
*/
MBED_DEPRECATED_SINCE(
"mbed-os-5.11",
"This service is deprecated and no replacement is currently available."
)
class URIBeaconConfigService {
public:
/**
@ -89,7 +94,13 @@ class URIBeaconConfigService {
* Default un-encoded URI. Applies only if the resetToDefaultsFlag is true.
* @param[in] defaultAdvPowerLevelsIn
* Default power-levels array. Applies only if the resetToDefaultsFlag is true.
*
* @deprecated This service is deprecated and no replacement is currently available.
*/
MBED_DEPRECATED_SINCE(
"mbed-os-5.11",
"This service is deprecated and no replacement is currently available."
)
URIBeaconConfigService(BLE &bleIn,
Params_t &paramsIn,
bool resetToDefaultsFlag,

View File

@ -81,7 +81,13 @@
* The licence also grant access to the iBeacons technical specification.
*
* @note More information at https://developer.apple.com/ibeacon/Getting-Started-with-iBeacon.pdf
*
* @deprecated This service is deprecated and no replacement is currently available.
*/
MBED_DEPRECATED_SINCE(
"mbed-os-5.11",
"This service is deprecated and no replacement is currently available."
)
class iBeacon
{
public:
@ -197,7 +203,13 @@ public:
* to the beacon.
*
* @param[in] compID ID of the beacon manufacturer.
*
* @deprecated This service is deprecated and no replacement is currently available.
*/
MBED_DEPRECATED_SINCE(
"mbed-os-5.11",
"This service is deprecated and no replacement is currently available."
)
iBeacon(
BLE &_ble,
LocationUUID_t uuid,