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 5d8570b commit d764a7cCopy full SHA for d764a7c
TESTS/mbed_platform/stats_sys/main.cpp
@@ -32,10 +32,6 @@ void test_sys_info()
32
mbed_stats_sys_t stats;
33
mbed_stats_sys_get(&stats);
34
35
-#if defined(MBED_VERSION)
36
- TEST_ASSERT_NOT_EQUAL(0, stats.os_version);
37
-#endif
38
-
39
#if defined(__CORTEX_M)
40
TEST_ASSERT_NOT_EQUAL(0, stats.cpu_id);
41
#endif
platform/mbed_stats.c
@@ -123,9 +123,6 @@ void mbed_stats_sys_get(mbed_stats_sys_t *stats)
123
memset(stats, 0, sizeof(mbed_stats_sys_t));
124
125
#if defined(MBED_SYS_STATS_ENABLED)
126
127
- stats->os_version = MBED_VERSION;
128
129
130
stats->cpu_id = SCB->CPUID;
131
0 commit comments