From 10fbc00965622a02b1d4025d3b2c20b4148c26ca Mon Sep 17 00:00:00 2001 From: Jelmer Date: Fri, 17 Feb 2023 14:37:32 +0100 Subject: [PATCH] fixed sending to the correct PAN --- tag_fw/syncedproto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tag_fw/syncedproto.c b/tag_fw/syncedproto.c index 755437f2..09af79e2 100644 --- a/tag_fw/syncedproto.c +++ b/tag_fw/syncedproto.c @@ -124,7 +124,7 @@ static void sendPing() { txframe->fcs.destAddrType = 2; txframe->fcs.srcAddrType = 3; txframe->seq = seq++; - txframe->dstPan = 0xFFFF; + txframe->dstPan = PROTO_PAN_ID; txframe->dstAddr = 0xFFFF; txframe->srcPan = PROTO_PAN_ID; commsTxNoCpy(outBuffer);