Bluetooth: hcitool: add option for LE_Scan_Type parameter

The LE_Scan_Type parameter controls the type of scan to perform.
This commit is contained in:
Andrei Emeltchenko 2011-02-11 09:23:44 -08:00 committed by Johan Hedberg
parent ef4ee19895
commit 2cc99a5ea6

View File

@ -2350,23 +2350,29 @@ done:
static struct option lescan_options[] = {
{ "help", 0, 0, 'h' },
{ "privacy", 0, 0, 'p' },
{ "passive", 0, 0, 'P' },
{ 0, 0, 0, 0 }
};
static const char *lescan_help =
"Usage:\n"
"\tlescan [--privacy] enable privacy\n";
"\tlescan [--privacy] enable privacy\n"
"\tlescan [--passive] set scan type passive (default active)\n";
static void cmd_lescan(int dev_id, int argc, char **argv)
{
int err, opt, dd;
uint8_t own_type = 0x00;
uint8_t scan_type = 0x01;
for_each_opt(opt, lescan_options, NULL) {
switch (opt) {
case 'p':
own_type = 0x01; /* Random */
break;
case 'P':
scan_type = 0x00; /* Passive */
break;
default:
printf("%s", lescan_help);
return;
@ -2383,7 +2389,7 @@ static void cmd_lescan(int dev_id, int argc, char **argv)
exit(1);
}
err = hci_le_set_scan_parameters(dd, 0x01, htobs(0x0010),
err = hci_le_set_scan_parameters(dd, scan_type, htobs(0x0010),
htobs(0x0010), own_type, 0x00);
if (err < 0) {
perror("Set scan parameters failed");