Skip to content

Commit 2586b81

Browse files
nordic-piksrlubos
authored andcommitted
tests: benchmarks: multicore: idle_twim: radio sleeps forever
Do not wakeup radio as it make current measurements noisy. Signed-off-by: Piotr Kosycarz <[email protected]>
1 parent 4aab4b2 commit 2586b81

File tree

1 file changed

+1
-4
lines changed
  • tests/benchmarks/multicore/idle_twim/remote/src

1 file changed

+1
-4
lines changed

tests/benchmarks/multicore/idle_twim/remote/src/main.c

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@
88

99
int main(void)
1010
{
11-
k_msleep(500);
12-
while (1) {
13-
k_msleep(2000);
14-
}
11+
k_sleep(K_FOREVER);
1512

1613
return 0;
1714
}

0 commit comments

Comments
 (0)