From 607060b0e255292e0936ba88273e313a71e6a930 Mon Sep 17 00:00:00 2001 From: Nuno Sa Date: Fri, 2 Feb 2024 16:19:47 +0100 Subject: [PATCH] plugins: adrv9002: make sure to update device widgets The device widgets were not being updated when pressing the reload button or when a new profile is loaded. Signed-off-by: Nuno Sa --- plugins/adrv9002.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/adrv9002.c b/plugins/adrv9002.c index 2b024c01..5aabbda9 100644 --- a/plugins/adrv9002.c +++ b/plugins/adrv9002.c @@ -1076,6 +1076,7 @@ static void update_all(struct plugin_private *priv) adrv9002_update_tx_widgets(priv, i); } + iio_update_widgets_block_signals_by_data(priv->device_w, priv->num_widgets); adrv9002_profile_read(priv); update_label(&priv->temperature); update_dac_manager(priv);