mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
aa1e7797b0
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.
26 lines
755 B
Diff
26 lines
755 B
Diff
From 6224ae6d65cf505c03d64636afd596e896291497 Mon Sep 17 00:00:00 2001
|
|
From: Francisco Molina <femolina@uc.cl>
|
|
Date: Fri, 24 Jul 2020 15:42:05 +0200
|
|
Subject: [PATCH 09/10] inc/check_config: skip checking board, unused in RIOT
|
|
|
|
---
|
|
inc/check_config.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/inc/check_config.h b/inc/check_config.h
|
|
index 6cbaaf9d..6ab4c78c 100644
|
|
--- a/inc/check_config.h
|
|
+++ b/inc/check_config.h
|
|
@@ -17,7 +17,7 @@
|
|
!defined(IOTLAB_A8_M3) && \
|
|
!defined(SAMR21_XPRO) && \
|
|
!defined(NRF52840)
|
|
-#error 'Board name must be specified to check for configuration errors'
|
|
+// #error 'Board name must be specified to check for configuration errors'
|
|
#endif
|
|
|
|
#if (defined(OPENMOTE_CC2538) || \
|
|
--
|
|
2.27.0
|
|
|