Commit 6abfab08 authored by Johan Hedberg's avatar Johan Hedberg Committed by Johan Hedberg
Browse files

Bluetooth: Mesh: Fix not including RSSI into network RX context



The RSSI was supposed to be stored in the net_rx struct.

Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
parent b451f132
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1167,7 +1167,7 @@ void bt_mesh_net_recv(struct net_buf_simple *data, s8_t rssi,
		      enum bt_mesh_net_if net_if)
{
	struct net_buf_simple *buf = NET_BUF_SIMPLE(29);
	struct bt_mesh_net_rx rx;
	struct bt_mesh_net_rx rx = { .rssi = rssi };

	BT_DBG("rssi %d net_if %u", rssi, net_if);