mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-15 15:04:34 +08:00
client: Rename set-filter-rssi to rssi
All commands under scan submenu are related to set-filter so remove its portion from it and make the command return the current value if no parameters: [bluetooth]# rssi 0 SetDiscoveryFilter success [bluetooth]# rssi RSSI: 0
This commit is contained in:
parent
e1021f7e48
commit
4a6a055681
@ -1327,14 +1327,16 @@ commit:
|
||||
cmd_set_scan_filter_commit();
|
||||
}
|
||||
|
||||
static void cmd_set_scan_filter_rssi(int argc, char *argv[])
|
||||
static void cmd_scan_filter_rssi(int argc, char *argv[])
|
||||
{
|
||||
filtered_scan_pathloss = DISTANCE_VAL_INVALID;
|
||||
if (argc < 2 || !strlen(argv[1])) {
|
||||
if (filtered_scan_rssi != DISTANCE_VAL_INVALID)
|
||||
bt_shell_printf("RSSI: %d\n", filtered_scan_rssi);
|
||||
return;
|
||||
}
|
||||
|
||||
if (argc < 2 || !strlen(argv[1]))
|
||||
filtered_scan_rssi = DISTANCE_VAL_INVALID;
|
||||
else
|
||||
filtered_scan_rssi = atoi(argv[1]);
|
||||
filtered_scan_pathloss = DISTANCE_VAL_INVALID;
|
||||
filtered_scan_rssi = atoi(argv[1]);
|
||||
|
||||
cmd_set_scan_filter_commit();
|
||||
}
|
||||
@ -2246,8 +2248,8 @@ static const struct bt_shell_menu scan_menu = {
|
||||
.entries = {
|
||||
{ "uuids", "[all/uuid1 uuid2 ...]", cmd_scan_filter_uuids,
|
||||
"Set/Get UUIDs filter" },
|
||||
{ "set-filter-rssi", "[rssi]", cmd_set_scan_filter_rssi,
|
||||
"Set scan filter rssi, and clears pathloss" },
|
||||
{ "rssi", "[rssi]", cmd_scan_filter_rssi,
|
||||
"Set/Get RSSI filter, and clears pathloss" },
|
||||
{ "set-filter-pathloss", "[pathloss]", cmd_set_scan_filter_pathloss,
|
||||
"Set scan filter pathloss, and clears rssi" },
|
||||
{ "set-filter-transport", "[transport]", cmd_set_scan_filter_transport,
|
||||
|
Loading…
Reference in New Issue
Block a user