From 28ffcd1bc62c5a637a8617e2eae5fd904b2cbe57 Mon Sep 17 00:00:00 2001 From: Simon Lin Date: Fri, 11 Oct 2019 01:08:36 +0800 Subject: [PATCH] [posix] always set ACK FP for data requests when SrcMatch is disabled (#4232) --- examples/platforms/posix/radio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platforms/posix/radio.c b/examples/platforms/posix/radio.c index ca815d519..47f82b847 100644 --- a/examples/platforms/posix/radio.c +++ b/examples/platforms/posix/radio.c @@ -177,7 +177,7 @@ static inline bool isDataRequestAndHasFramePending(const uint8_t *aFrame) const uint8_t *cur = aFrame; uint8_t securityControl; bool isDataRequest = false; - bool hasFramePending = false; + bool hasFramePending = true; // FCF + DSN cur += 2 + 1;