* [PATCH BlueZ] client/advertising: Add support for setting min/max intervals
@ 2021-05-13 0:34 Luiz Augusto von Dentz
2021-05-13 1:46 ` [BlueZ] " bluez.test.bot
0 siblings, 1 reply; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2021-05-13 0:34 UTC (permalink / raw)
To: linux-bluetooth
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
This adds support for setting MinInterval/MaxInterval.
---
client/advertising.c | 62 ++++++++++++++++++++++++++++++++++++++++++++
client/advertising.h | 1 +
client/main.c | 45 ++++++++++++++++++++++++++++++++
3 files changed, 108 insertions(+)
diff --git a/client/advertising.c b/client/advertising.c
index c1a00502e..3bf12fe87 100644
--- a/client/advertising.c
+++ b/client/advertising.c
@@ -52,6 +52,8 @@ static struct ad {
char *type;
char *local_name;
char *secondary;
+ uint32_t min_interval;
+ uint32_t max_interval;
uint16_t local_appearance;
uint16_t duration;
uint16_t timeout;
@@ -182,6 +184,10 @@ static void print_ad(void)
if (ad.timeout)
bt_shell_printf("Timeout: %u sec\n", ad.timeout);
+
+ if (ad.min_interval)
+ bt_shell_printf("Interval: %u-%u msec\n", ad.min_interval,
+ ad.max_interval);
}
static void register_reply(DBusMessage *message, void *user_data)
@@ -445,6 +451,36 @@ static gboolean get_secondary(const GDBusPropertyTable *property,
return TRUE;
}
+static gboolean min_interval_exits(const GDBusPropertyTable *property,
+ void *data)
+{
+ return ad.min_interval;
+}
+
+static gboolean get_min_interval(const GDBusPropertyTable *property,
+ DBusMessageIter *iter, void *user_data)
+{
+ dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT32,
+ &ad.min_interval);
+
+ return TRUE;
+}
+
+static gboolean max_interval_exits(const GDBusPropertyTable *property,
+ void *data)
+{
+ return ad.max_interval;
+}
+
+static gboolean get_max_interval(const GDBusPropertyTable *property,
+ DBusMessageIter *iter, void *user_data)
+{
+ dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT32,
+ &ad.max_interval);
+
+ return TRUE;
+}
+
static const GDBusPropertyTable ad_props[] = {
{ "Type", "s", get_type },
{ "ServiceUUIDs", "as", get_uuids, NULL, uuids_exists },
@@ -460,6 +496,8 @@ static const GDBusPropertyTable ad_props[] = {
{ "Appearance", "q", get_appearance, NULL, appearance_exits },
{ "Duration", "q", get_duration, NULL, duration_exits },
{ "Timeout", "q", get_timeout, NULL, timeout_exits },
+ { "MinInterval", "u", get_min_interval, NULL, min_interval_exits },
+ { "MaxInterval", "u", get_max_interval, NULL, max_interval_exits },
{ "SecondaryChannel", "s", get_secondary, NULL, secondary_exits },
{ }
};
@@ -951,3 +989,27 @@ void ad_advertise_secondary(DBusConnection *conn, const char *value)
return bt_shell_noninteractive_quit(EXIT_SUCCESS);
}
+
+void ad_advertise_interval(DBusConnection *conn, uint32_t *min, uint32_t *max)
+{
+ if (!min && !max) {
+ if (ad.min_interval && ad.max_interval)
+ bt_shell_printf("Interval: %u-%u msec\n",
+ ad.min_interval, ad.max_interval);
+ return bt_shell_noninteractive_quit(EXIT_SUCCESS);
+ }
+
+ if (ad.min_interval != *min) {
+ ad.min_interval = *min;
+ g_dbus_emit_property_changed(conn, AD_PATH, AD_IFACE,
+ "MinInterval");
+ }
+
+ if (ad.max_interval != *max) {
+ ad.max_interval = *max;
+ g_dbus_emit_property_changed(conn, AD_PATH, AD_IFACE,
+ "MaxInterval");
+ }
+
+ return bt_shell_noninteractive_quit(EXIT_SUCCESS);
+}
diff --git a/client/advertising.h b/client/advertising.h
index 25e6aee99..472396efd 100644
--- a/client/advertising.h
+++ b/client/advertising.h
@@ -29,3 +29,4 @@ void ad_disable_data(DBusConnection *conn);
void ad_advertise_discoverable(DBusConnection *conn, dbus_bool_t *value);
void ad_advertise_discoverable_timeout(DBusConnection *conn, long int *value);
void ad_advertise_secondary(DBusConnection *conn, const char *value);
+void ad_advertise_interval(DBusConnection *conn, uint32_t *min, uint32_t *max);
diff --git a/client/main.c b/client/main.c
index 1669d2c89..c1a62edb7 100644
--- a/client/main.c
+++ b/client/main.c
@@ -2625,6 +2625,40 @@ static void cmd_advertise_secondary(int argc, char *argv[])
ad_advertise_secondary(dbus_conn, argv[1]);
}
+static void cmd_advertise_interval(int argc, char *argv[])
+{
+ uint32_t min, max;
+ char *endptr = NULL;
+
+ if (argc < 2) {
+ ad_advertise_interval(dbus_conn, NULL, NULL);
+ return;
+ }
+
+ min = strtol(argv[1], &endptr, 0);
+ if (!endptr || *endptr != '\0' || min < 20 || min > 10485) {
+ bt_shell_printf("Invalid argument\n");
+ return bt_shell_noninteractive_quit(EXIT_FAILURE);
+ }
+
+ max = min;
+
+ if (argc > 2) {
+ max = strtol(argv[1], &endptr, 0);
+ if (!endptr || *endptr != '\0' || max < 20 || max > 10485) {
+ bt_shell_printf("Invalid argument\n");
+ return bt_shell_noninteractive_quit(EXIT_FAILURE);
+ }
+ }
+
+ if (min > max) {
+ bt_shell_printf("Invalid argument: %u > %u\n", min, max);
+ return bt_shell_noninteractive_quit(EXIT_FAILURE);
+ }
+
+ ad_advertise_interval(dbus_conn, &min, &max);
+}
+
static void ad_clear_uuids(void)
{
ad_disable_uuids(dbus_conn);
@@ -2683,6 +2717,14 @@ static void ad_clear_secondary(void)
ad_advertise_secondary(dbus_conn, value);
}
+static void ad_clear_interval(void)
+{
+ uint32_t min = 0;
+ uint32_t max = 0;
+
+ ad_advertise_interval(dbus_conn, &min, &max);
+}
+
static const struct clear_entry ad_clear[] = {
{ "uuids", ad_clear_uuids },
{ "service", ad_clear_service },
@@ -2694,6 +2736,7 @@ static const struct clear_entry ad_clear[] = {
{ "duration", ad_clear_duration },
{ "timeout", ad_clear_timeout },
{ "secondary", ad_clear_secondary },
+ { "interval", ad_clear_interval },
{}
};
@@ -2812,6 +2855,8 @@ static const struct bt_shell_menu advertise_menu = {
"Set/Get advertise timeout" },
{ "secondary", "[1M/2M/Coded]", cmd_advertise_secondary,
"Set/Get advertise secondary channel" },
+ { "interval", "[min] [max] ", cmd_advertise_interval,
+ "Set/Get advertise interval range" },
{ "clear", "[uuids/service/manufacturer/config-name...]", cmd_ad_clear,
"Clear advertise config" },
{ } },
--
2.30.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* RE: [BlueZ] client/advertising: Add support for setting min/max intervals
2021-05-13 0:34 [PATCH BlueZ] client/advertising: Add support for setting min/max intervals Luiz Augusto von Dentz
@ 2021-05-13 1:46 ` bluez.test.bot
2021-05-13 20:26 ` Luiz Augusto von Dentz
0 siblings, 1 reply; 3+ messages in thread
From: bluez.test.bot @ 2021-05-13 1:46 UTC (permalink / raw)
To: linux-bluetooth, luiz.dentz
[-- Attachment #1: Type: text/plain, Size: 1953 bytes --]
This is automated email and please do not reply to this email!
Dear submitter,
Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=481575
---Test result---
Test Summary:
CheckPatch PASS 0.87 seconds
GitLint PASS 0.15 seconds
Prep - Setup ELL PASS 52.17 seconds
Build - Prep PASS 0.15 seconds
Build - Configure PASS 8.90 seconds
Build - Make PASS 223.46 seconds
Make Check PASS 9.53 seconds
Make Distcheck PASS 261.17 seconds
Build w/ext ELL - Configure PASS 9.00 seconds
Build w/ext ELL - Make PASS 210.86 seconds
Details
##############################
Test: CheckPatch - PASS
Desc: Run checkpatch.pl script with rule in .checkpatch.conf
##############################
Test: GitLint - PASS
Desc: Run gitlint with rule in .gitlint
##############################
Test: Prep - Setup ELL - PASS
Desc: Clone, build, and install ELL
##############################
Test: Build - Prep - PASS
Desc: Prepare environment for build
##############################
Test: Build - Configure - PASS
Desc: Configure the BlueZ source tree
##############################
Test: Build - Make - PASS
Desc: Build the BlueZ source tree
##############################
Test: Make Check - PASS
Desc: Run 'make check'
##############################
Test: Make Distcheck - PASS
Desc: Run distcheck to check the distribution
##############################
Test: Build w/ext ELL - Configure - PASS
Desc: Configure BlueZ source with '--enable-external-ell' configuration
##############################
Test: Build w/ext ELL - Make - PASS
Desc: Build BlueZ source with '--enable-external-ell' configuration
---
Regards,
Linux Bluetooth
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [BlueZ] client/advertising: Add support for setting min/max intervals
2021-05-13 1:46 ` [BlueZ] " bluez.test.bot
@ 2021-05-13 20:26 ` Luiz Augusto von Dentz
0 siblings, 0 replies; 3+ messages in thread
From: Luiz Augusto von Dentz @ 2021-05-13 20:26 UTC (permalink / raw)
To: linux-bluetooth@vger.kernel.org
Hi,
On Wed, May 12, 2021 at 6:46 PM <bluez.test.bot@gmail.com> wrote:
>
> This is automated email and please do not reply to this email!
>
> Dear submitter,
>
> Thank you for submitting the patches to the linux bluetooth mailing list.
> This is a CI test results with your patch series:
> PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=481575
>
> ---Test result---
>
> Test Summary:
> CheckPatch PASS 0.87 seconds
> GitLint PASS 0.15 seconds
> Prep - Setup ELL PASS 52.17 seconds
> Build - Prep PASS 0.15 seconds
> Build - Configure PASS 8.90 seconds
> Build - Make PASS 223.46 seconds
> Make Check PASS 9.53 seconds
> Make Distcheck PASS 261.17 seconds
> Build w/ext ELL - Configure PASS 9.00 seconds
> Build w/ext ELL - Make PASS 210.86 seconds
>
> Details
> ##############################
> Test: CheckPatch - PASS
> Desc: Run checkpatch.pl script with rule in .checkpatch.conf
>
> ##############################
> Test: GitLint - PASS
> Desc: Run gitlint with rule in .gitlint
>
> ##############################
> Test: Prep - Setup ELL - PASS
> Desc: Clone, build, and install ELL
>
> ##############################
> Test: Build - Prep - PASS
> Desc: Prepare environment for build
>
> ##############################
> Test: Build - Configure - PASS
> Desc: Configure the BlueZ source tree
>
> ##############################
> Test: Build - Make - PASS
> Desc: Build the BlueZ source tree
>
> ##############################
> Test: Make Check - PASS
> Desc: Run 'make check'
>
> ##############################
> Test: Make Distcheck - PASS
> Desc: Run distcheck to check the distribution
>
> ##############################
> Test: Build w/ext ELL - Configure - PASS
> Desc: Configure BlueZ source with '--enable-external-ell' configuration
>
> ##############################
> Test: Build w/ext ELL - Make - PASS
> Desc: Build BlueZ source with '--enable-external-ell' configuration
>
>
>
> ---
> Regards,
> Linux Bluetooth
Pushed.
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-05-13 20:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-13 0:34 [PATCH BlueZ] client/advertising: Add support for setting min/max intervals Luiz Augusto von Dentz
2021-05-13 1:46 ` [BlueZ] " bluez.test.bot
2021-05-13 20:26 ` Luiz Augusto von Dentz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox