mirror of https://github.com/ARMmbed/mbed-os.git
BLE: clean separation between GAP v1 and GAP v2 API.
parent
c165bd98b7
commit
7d7ccea827
File diff suppressed because it is too large
Load Diff
|
|
@ -183,9 +183,9 @@ public:
|
|||
/** @copydoc Gap::createSync
|
||||
*/
|
||||
virtual ble_error_t createSync(
|
||||
PeerAddressType_t peerAddressType,
|
||||
uint8_t *peerAddress,
|
||||
uint8_t sid,
|
||||
peer_address_type_t peerAddressType,
|
||||
const address_t &peerAddress,
|
||||
advertising_sid_t sid,
|
||||
slave_latency_t maxPacketSkip,
|
||||
sync_timeout_t timeout
|
||||
);
|
||||
|
|
@ -208,17 +208,17 @@ public:
|
|||
/** @copydoc Gap::addDeviceToPeriodicAdvertiserList
|
||||
*/
|
||||
virtual ble_error_t addDeviceToPeriodicAdvertiserList(
|
||||
PeerAddressType_t peerAddressType,
|
||||
Address_t peerAddress,
|
||||
uint8_t sid
|
||||
peer_address_type_t peerAddressType,
|
||||
const address_t &peerAddress,
|
||||
advertising_sid_t sid
|
||||
);
|
||||
|
||||
/** @copydoc Gap::removeDeviceFromPeriodicAdvertiserList
|
||||
*/
|
||||
virtual ble_error_t removeDeviceFromPeriodicAdvertiserList(
|
||||
PeerAddressType_t peerAddressType,
|
||||
uint8_t *peerAddress,
|
||||
uint8_t sid
|
||||
peer_address_type_t peerAddressType,
|
||||
const address_t &peerAddress,
|
||||
advertising_sid_t sid
|
||||
);
|
||||
|
||||
/** @copydoc Gap::clearPeriodicAdvertiserList
|
||||
|
|
|
|||
|
|
@ -72,6 +72,243 @@ Gap::PeerAddressType_t convert_legacy_address_type(
|
|||
|
||||
}
|
||||
|
||||
uint8_t Gap::getMaxAdvertisingSetNumber()
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return 1;
|
||||
}
|
||||
|
||||
uint8_t Gap::getMaxAdvertisingDataLength()
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return 0x1F;
|
||||
}
|
||||
|
||||
ble_error_t Gap::createAdvertisingSet(
|
||||
ble::advertising_handle_t *handle,
|
||||
const ble::AdvertisingParameters ¶meters
|
||||
)
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::destroyAdvertisingSet(ble::advertising_handle_t handle)
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setAdvertisingParameters(
|
||||
ble::advertising_handle_t handle,
|
||||
const ble::AdvertisingParameters ¶ms
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setAdvertisingPayload(
|
||||
ble::advertising_handle_t handle,
|
||||
mbed::Span<uint8_t> payload,
|
||||
bool minimiseFragmentation
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setAdvertisingScanResponse(
|
||||
ble::advertising_handle_t handle,
|
||||
mbed::Span<uint8_t> response,
|
||||
bool minimiseFragmentation
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::startAdvertising(
|
||||
ble::advertising_handle_t handle,
|
||||
ble::adv_duration_t maxDuration,
|
||||
uint8_t maxEvents
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::stopAdvertising(ble::advertising_handle_t handle)
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
bool Gap::isAdvertisingActive(ble::advertising_handle_t handle) {
|
||||
return false;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setPeriodicAdvertisingParameters(
|
||||
ble::advertising_handle_t handle,
|
||||
ble::periodic_interval_t periodicAdvertisingIntervalMin,
|
||||
ble::periodic_interval_t periodicAdvertisingIntervalMax,
|
||||
bool advertiseTxPower
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setPeriodicAdvertisingPayload(
|
||||
ble::advertising_handle_t handle,
|
||||
mbed::Span<uint8_t> payload
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::startPeriodicAdvertising(ble::advertising_handle_t handle)
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::stopPeriodicAdvertising(ble::advertising_handle_t handle)
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
bool Gap::isPeriodicAdvertisingActive(ble::advertising_handle_t handle)
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return false;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setScanParameters(const ble::ScanParameters& params)
|
||||
{
|
||||
useVersionTwoAPI();
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
};
|
||||
|
||||
ble_error_t Gap::startScan(
|
||||
ble::duplicates_filter_t filtering,
|
||||
ble::scan_duration_t duration,
|
||||
ble::scan_period_t period
|
||||
) {
|
||||
useVersionTwoAPI();
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
};
|
||||
|
||||
ble_error_t Gap::createSync(
|
||||
ble::peer_address_type_t peerAddressType,
|
||||
const ble::address_t &peerAddress,
|
||||
uint8_t sid,
|
||||
ble::slave_latency_t maxPacketSkip,
|
||||
ble::sync_timeout_t timeout
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::createSync(
|
||||
ble::slave_latency_t maxPacketSkip,
|
||||
ble::sync_timeout_t timeout
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::cancelCreateSync()
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::terminateSync(ble::periodic_sync_handle_t handle) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::addDeviceToPeriodicAdvertiserList(
|
||||
ble::peer_address_type_t peerAddressType,
|
||||
const ble::address_t &peerAddress,
|
||||
ble::advertising_sid_t sid
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::removeDeviceFromPeriodicAdvertiserList(
|
||||
ble::peer_address_type_t peerAddressType,
|
||||
const ble::address_t &peerAddress,
|
||||
ble::advertising_sid_t sid
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::clearPeriodicAdvertiserList()
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
uint8_t Gap::getMaxPeriodicAdvertiserListSize()
|
||||
{
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return 0;
|
||||
}
|
||||
|
||||
ble_error_t Gap::connect(
|
||||
ble::target_peer_address_type_t peerAddressType,
|
||||
const ble::address_t &peerAddress,
|
||||
const ble::ConnectionParameters &connectionParams
|
||||
) {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::cancelConnect() {
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::readPhy(ble::connection_handle_t connection)
|
||||
{
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setPreferredPhys(
|
||||
const ble::phy_set_t *txPhys,
|
||||
const ble::phy_set_t *rxPhys
|
||||
) {
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setPhy(
|
||||
ble::connection_handle_t connection,
|
||||
const ble::phy_set_t *txPhys,
|
||||
const ble::phy_set_t *rxPhys,
|
||||
ble::coded_symbol_per_bit_t codedSymbol
|
||||
) {
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
uint8_t Gap::getMaxWhitelistSize(void) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
ble_error_t Gap::getWhitelist(Whitelist_t &whitelist) const
|
||||
{
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
ble_error_t Gap::setWhitelist(const Whitelist_t &whitelist)
|
||||
{
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
|
||||
const Gap::PeripheralPrivacyConfiguration_t Gap::default_peripheral_privacy_configuration = {
|
||||
/* use_non_resolvable_random_address */ false,
|
||||
/* resolution_strategy */ PeripheralPrivacyConfiguration_t::PERFORM_PAIRING_PROCEDURE
|
||||
|
|
|
|||
|
|
@ -2458,9 +2458,9 @@ ble_error_t GenericGap::startScan(
|
|||
}
|
||||
|
||||
ble_error_t GenericGap::createSync(
|
||||
Gap::PeerAddressType_t peerAddressType,
|
||||
uint8_t *peerAddress,
|
||||
uint8_t sid,
|
||||
ble::peer_address_type_t peerAddressType,
|
||||
const address_t &peerAddress,
|
||||
advertising_sid_t sid,
|
||||
slave_latency_t maxPacketSkip,
|
||||
sync_timeout_t timeout
|
||||
)
|
||||
|
|
@ -2469,8 +2469,8 @@ ble_error_t GenericGap::createSync(
|
|||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
if (peerAddressType != PeerAddressType_t::PUBLIC ||
|
||||
peerAddressType != PeerAddressType_t::RANDOM
|
||||
if (peerAddressType != peer_address_type_t::PUBLIC ||
|
||||
peerAddressType != peer_address_type_t::RANDOM
|
||||
) {
|
||||
return BLE_ERROR_INVALID_PARAM;
|
||||
}
|
||||
|
|
@ -2526,9 +2526,9 @@ ble_error_t GenericGap::terminateSync(periodic_sync_handle_t handle)
|
|||
}
|
||||
|
||||
ble_error_t GenericGap::addDeviceToPeriodicAdvertiserList(
|
||||
Gap::PeerAddressType_t peerAddressType,
|
||||
Address_t peerAddress,
|
||||
uint8_t sid
|
||||
peer_address_type_t peerAddressType,
|
||||
const address_t &peerAddress,
|
||||
advertising_sid_t sid
|
||||
)
|
||||
{
|
||||
if (is_extended_advertising_available() == false) {
|
||||
|
|
@ -2553,9 +2553,9 @@ ble_error_t GenericGap::addDeviceToPeriodicAdvertiserList(
|
|||
}
|
||||
|
||||
ble_error_t GenericGap::removeDeviceFromPeriodicAdvertiserList(
|
||||
Gap::PeerAddressType_t peerAddressType,
|
||||
uint8_t *peerAddress,
|
||||
uint8_t sid
|
||||
peer_address_type_t peerAddressType,
|
||||
const address_t &peerAddress,
|
||||
advertising_sid_t sid
|
||||
)
|
||||
{
|
||||
if (is_extended_advertising_available() == false) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue