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 d4bb1c6 commit d32b794Copy full SHA for d32b794
tests/kernel/sleep/src/usleep.c
@@ -42,6 +42,11 @@
42
* loaded to its comparator.
43
*/
44
#define MAXIMUM_SHORTEST_TICKS 2
45
+#elif defined(CONFIG_SOC_NRF54H20_CPUPPR) && (CONFIG_SYS_CLOCK_TICKS_PER_SEC > 16384)
46
+/* Similar for nRF54H20 cpuppr (RISC-V core), it has a slow CPU clock
47
+ * compared to other cores, causing the increased overhead.
48
+ */
49
+#define MAXIMUM_SHORTEST_TICKS 4
50
#else
51
#define MAXIMUM_SHORTEST_TICKS 1
52
#endif
0 commit comments