1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/openwsn/patches/0006-openstack-openstack-dont-init-idmanager.patch
Francisco Molina aa1e7797b0
pkg/openwsn: bump version
With the new version some OpenWSN modules are optional:
- openwsn_cjoin (and therefore opewnsn_coap)
- openwsn_6lo_fragmentation
- openwsn_icmpv6echo
- openwsn_crypto
- openwsn_udp (optional but kept as default)

New optional modules have been added:
- openwsn_iee802154e_security (link layer security)
- openwsn_adaptive_msf (MSF dynamic slot allocation)

Openvisualizer needs to be updated to be compatible with the new
version.
2020-08-11 15:24:33 +02:00

28 lines
850 B
Diff

From e8b844e1af690c1734602911c498ac15e0e1f9ed Mon Sep 17 00:00:00 2001
From: Francisco Molina <femolina@uc.cl>
Date: Fri, 15 May 2020 13:45:02 +0200
Subject: [PATCH 06/10] openstack/openstack: dont init idmanager
Dont initiate idmanager in OpenWSN but in RIOT to allow overriding
default short address.
---
openstack/openstack.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/openstack/openstack.c b/openstack/openstack.c
index 8c074d30..a7972024 100644
--- a/openstack/openstack.c
+++ b/openstack/openstack.c
@@ -59,7 +59,7 @@ void openstack_init(void) {
//===== stack
//-- cross-layer
- idmanager_init(); // call first since initializes EUI64 and isDAGroot
+ // idmanager_init(); // call first since initializes EUI64 and isDAGroot
openqueue_init();
openrandom_init();
--
2.27.0