Skip to content

Commit f68a3ac

Browse files
committed
Remove unneeds empty lines
1 parent 54a8455 commit f68a3ac

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/BaseClasses/ANTPLUS_BaseSlaveProfile.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ class BaseSlaveProfile : public BaseProfile {
88
BaseSlaveProfile();
99
BaseSlaveProfile(uint16_t deviceNumber);
1010
BaseSlaveProfile(uint16_t deviceNumber, uint8_t transmissionType);
11-
1211
/**
1312
* Pass in a pointer to an array uint16_t[ANTPLUS_MAX_CHANNELS_POSSIBLE]
1413
* Starts a search for all devices configured with this profle
@@ -19,38 +18,32 @@ class BaseSlaveProfile : public BaseProfile {
1918
* returns the number of the ids filled.
2019
*/
2120
uint8_t searchForDevices(uint16_t* buffer);
22-
2321
/**
2422
* Pass in a pointer to an array uint16_t[ANTPLUS_MAX_CHANNELS_POSSIBLE]
2523
* Start a non-blocking search for the following device profile.
2624
* This will disrupt all other channels to do the search, therefore you will have to
2725
* call start() on all registered profiles.
2826
*/
2927
void backgroundDeviceSearch(uint16_t* buffer);
30-
3128
/**
3229
* Check the status of the backgroundDeviceSearch.
3330
*/
3431
uint8_t backgroundDeviceSearchStatus();
35-
3632
/**
3733
* Call this to determine the number of devices found using backgroundDeviceSearch.
3834
* This can be called before the search is completed.
3935
*/
4036
uint8_t backgroundDeviceSearchNumberDevices();
41-
4237
/**
4338
* TODO
4439
*
4540
* Register a callback method for when backgroundDeviceSearch completes.
4641
*/
4742
void backgroundDeviceSearchCallback();
48-
4943
/**
5044
* Will return once the device either pairs or timesout its search
5145
*/
5246
uint8_t waitForPair();
53-
5447
private:
5548
};
5649

0 commit comments

Comments
 (0)