Skip to content

Commit

Permalink
tests: benchmarks: multicore: idle_spim: radio sleeps forever
Browse files Browse the repository at this point in the history
Do not wakeup radio as it make current measurements noisy.

Signed-off-by: Piotr Kosycarz <[email protected]>
  • Loading branch information
nordic-piks authored and rlubos committed Oct 22, 2024
1 parent 2586b81 commit c673d2b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/benchmarks/multicore/idle_spim/remote/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@

int main(void)
{
k_msleep(500);
while (1) {
k_msleep(2000);
}
k_sleep(K_FOREVER);

return 0;
}

0 comments on commit c673d2b

Please sign in to comment.