We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35b5d57 commit 4422086Copy full SHA for 4422086
examples/platform/efr32/init_efrPlatform.cpp
@@ -53,6 +53,7 @@ extern "C" {
53
54
#include "init_efrPlatform.h"
55
#include "sl_component_catalog.h"
56
+#include "sl_mbedtls.h"
57
#include "sl_system_init.h"
58
59
#if DISPLAY_ENABLED
@@ -64,6 +65,7 @@ void initAntenna(void);
64
65
void init_efrPlatform(void)
66
{
67
sl_system_init();
68
+ sl_mbedtls_init();
69
70
71
initLCD();
third_party/efr32_sdk/efr32_sdk.gni
@@ -137,6 +137,9 @@ template("efr32_sdk") {
137
"CHIP_DEVICE_CONFIG_THREAD_ENABLE_CLI=1",
138
"__HEAP_SIZE=0",
139
"SL_CATALOG_FREERTOS_KERNEL_PRESENT=1",
140
+ "MBEDTLS_THREADING_C=1",
141
+ "MBEDTLS_THREADING_ALT=1",
142
+ "SL_THREADING_ALT=1",
143
144
#"__STACK_SIZE=0",
145
]
0 commit comments