Skip to content

Commit cd8e668

Browse files
nika-nordicNordicBuilder
authored andcommitted
tests: benchmarks: idle_spim_loopback: reduce expected SPI xfers
SPIM120 with power management enabled has reduced performance due to GD2/GD3 handling performed on each transfer. Signed-off-by: Nikodem Kastelik <[email protected]>
1 parent dd8c669 commit cd8e668

File tree

1 file changed

+2
-2
lines changed
  • tests/benchmarks/multicore/idle_spim_loopback/src

1 file changed

+2
-2
lines changed

tests/benchmarks/multicore/idle_spim_loopback/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,8 @@ int main(void)
275275
/* SPI was active for ~1 second with separate SPI CS activations
276276
* for each spi_transceive_dt() call.
277277
*/
278-
__ASSERT_NO_MSG(high >= 1000);
279-
__ASSERT_NO_MSG(low >= 1000);
278+
__ASSERT_NO_MSG(high >= 100);
279+
__ASSERT_NO_MSG(low >= 100);
280280
__ASSERT_NO_MSG(low == high);
281281
#endif
282282
counter++;

0 commit comments

Comments
 (0)