Skip to content

Commit cbce88d

Browse files
author
Seppo Takalo
committed
[ONME-2736] Macro Def. of 6LP-ND Security Mode
* Application has been using MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE as the macro to define Secuity mode. * The fall back mechanism, in case of absence of neo or yotta macro definition, was setting the macro to be yotta format which was not used at all in the application. * The bug was fixed by changing YOTTA_CFG_MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE to MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE in the fall back mechanism.
1 parent 822567b commit cbce88d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/net/FEATURE_NANOSTACK/mbed-mesh-api/source/include/static_config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ extern "C" {
7373
#elif defined MBED_CONF_MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE
7474
#define MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE MBED_CONF_MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE
7575
#else
76-
#define YOTTA_CFG_MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE NONE
76+
#define MBED_MESH_API_6LOWPAN_ND_SECURITY_MODE NONE
7777
#endif
7878

7979
#ifdef YOTTA_CFG_MBED_MESH_API_6LOWPAN_ND_PSK_KEY_ID

0 commit comments

Comments
 (0)