Skip to content

Commit a57ef3d

Browse files
authored
Merge pull request #474 from tyler-potyondy/dev/15.4-cfg-len
15.4: Fix CFG buffer length allowed to kernel (tx)
2 parents 7f2ced0 + 9a4a67b commit a57ef3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libtock/net/ieee802154.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ returncode_t libtock_ieee802154_send(uint32_t addr,
351351
}
352352

353353
// Allow CFG buffer to the kernel
354-
returncode_t ret = libtock_ieee802154_set_readwrite_allow_cfg((void*) BUF_CFG, 27);
354+
returncode_t ret = libtock_ieee802154_set_readwrite_allow_cfg((void*) BUF_CFG, 11);
355355
if (ret != RETURNCODE_SUCCESS) return ret;
356356

357357
// Allow payload buffer to the kernel

0 commit comments

Comments
 (0)