We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f789a72 commit 5b8e4aeCopy full SHA for 5b8e4ae
tests/kernel/init/src/main.c
@@ -4,14 +4,19 @@
4
* SPDX-License-Identifier: Apache-2.0
5
*/
6
7
-/*
8
- * @brief test delay during boot
9
- *
10
- * This module verifies the delay specified during boot.
11
- */
12
-
13
#include <ztest.h>
14
+/**
+ * @brief Test delay during boot
+ * @defgroup kernel_bootdelay_tests Init
+ * @ingroup all_tests
+ * @{
+ */
15
+
16
17
+ * @brief This module verifies the delay specified during boot.
18
+ * @see k_cycle_get_32, #SYS_CLOCK_HW_CYCLES_TO_NS64(X)
19
20
void verify_bootdelay(void)
21
{
22
u32_t current_cycles = k_cycle_get_32();
@@ -22,6 +27,10 @@ void verify_bootdelay(void)
27
"boot delay not executed");
23
28
}
24
29
30
31
+ * @}
32
33
25
34
/*test case main entry*/
26
35
void test_main(void)
36
0 commit comments