minor changes to comments for porting.
This commit is contained in:
parent
735e18aab3
commit
9d289f811b
3 changed files with 8 additions and 8 deletions
|
@ -178,21 +178,21 @@ public:
|
|||
* @return Minimum Advertising interval in milliseconds.
|
||||
*/
|
||||
virtual uint16_t getMinAdvertisingInterval(void) const {
|
||||
return 0; /* default implementation; override this API if this capability is supported. */
|
||||
return 0; /* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Minimum Advertising interval in milliseconds for non-connectible mode.
|
||||
*/
|
||||
virtual uint16_t getMinNonConnectableAdvertisingInterval(void) const {
|
||||
return 0; /* default implementation; override this API if this capability is supported. */
|
||||
return 0; /* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Maximum Advertising interval in milliseconds.
|
||||
*/
|
||||
virtual uint16_t getMaxAdvertisingInterval(void) const {
|
||||
return 0xFFFF; /* default implementation; override this API if this capability is supported. */
|
||||
return 0xFFFF; /* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
}
|
||||
|
||||
virtual ble_error_t stopAdvertising(void) {
|
||||
|
@ -410,7 +410,7 @@ public:
|
|||
(void)valueArrayPP;
|
||||
(void)countP;
|
||||
|
||||
*countP = 0; /* default implementation; override this API if this capability is supported. */
|
||||
*countP = 0; /* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
}
|
||||
|
||||
protected:
|
||||
|
|
|
@ -186,7 +186,7 @@ public:
|
|||
* Is service-discovery currently active?
|
||||
*/
|
||||
virtual bool isServiceDiscoveryActive(void) const {
|
||||
return false; /* default implementation; override this API if this capability is supported. */
|
||||
return false; /* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -194,7 +194,7 @@ public:
|
|||
* invocation of the TerminationCallback if service-discovery is active.
|
||||
*/
|
||||
virtual void terminateServiceDiscovery(void) {
|
||||
/* default implementation; override this API if this capability is supported. */
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
}
|
||||
|
||||
/* Initiate a Gatt Client read procedure by attribute-handle. */
|
||||
|
@ -261,7 +261,7 @@ public:
|
|||
virtual void onServiceDiscoveryTermination(ServiceDiscovery::TerminationCallback_t callback) {
|
||||
(void)callback; /* avoid compiler warnings about ununsed variables */
|
||||
|
||||
/* default implementation; override this API if this capability is supported. */
|
||||
/* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -220,7 +220,7 @@ public:
|
|||
* onDataRead(). It should be overridden to return true as applicable.
|
||||
*/
|
||||
virtual bool isOnDataReadAvailable() const {
|
||||
return false; /* default implementation; override this API if this capability is supported. */
|
||||
return false; /* Requesting action from porter(s): override this API if this capability is supported. */
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue