We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8565a1 commit 7a2fc37Copy full SHA for 7a2fc37
features/storage/TESTS/kvstore/direct_access_devicekey_test/main.cpp
@@ -16,9 +16,14 @@
16
*/
17
18
#include "mbed.h"
19
+#include "DeviceKey.h"
20
+
21
+#if !defined(COMPONENT_FLASHIAP) || !DEVICEKEY_ENABLED
22
+#error [NOT_SUPPORTED] Target must have internal FlashIAP and Device Key configured for this test
23
+#else
24
25
#include <stdio.h>
26
#include <string.h>
-#include "DeviceKey.h"
27
#include "KVStore.h"
28
#include "KVMap.h"
29
#include "kv_config.h"
@@ -31,10 +36,6 @@
31
36
#include "utest.h"
32
37
#include <stdlib.h>
33
38
34
-#if !defined(COMPONENT_FLASHIAP) || !DEVICEKEY_ENABLED
35
-#error [NOT_SUPPORTED] Target must have internal FlashIAP and Device Key configured for this test
-#else
-
39
using namespace utest::v1;
40
using namespace mbed;
41
0 commit comments