File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libraries/Bluefruit52Lib/examples/Central/central_bleuart_multiple Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -110,13 +110,13 @@ void setup()
110
110
/* Start Central Scanning
111
111
* - Enable auto scan if disconnected
112
112
* - Interval = 100 ms, window = 80 ms
113
- * - Don't use active scan
113
+ * - Don't use active scan (used to retrieve the optional scan response adv packet)
114
114
* - Start(0) = will scan forever since no timeout is given
115
115
*/
116
116
Bluefruit.Scanner .setRxCallback (scan_callback);
117
117
Bluefruit.Scanner .restartOnDisconnect (true );
118
118
Bluefruit.Scanner .setInterval (160 , 80 ); // in units of 0.625 ms
119
- Bluefruit.Scanner .useActiveScan (false );
119
+ Bluefruit.Scanner .useActiveScan (false ); // Don't request scan response data
120
120
Bluefruit.Scanner .start (0 ); // 0 = Don't stop scanning after n seconds
121
121
}
122
122
You can’t perform that action at this time.
0 commit comments