Skip to content

Commit 2d92fa6

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 3b04355 commit 2d92fa6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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++;

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ manifest:
6969
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
7070
- name: zephyr
7171
repo-path: sdk-zephyr
72-
revision: pull/2356/head
72+
revision: 51d538f0a4a264aeedcd34d02e140c95a48c5625
7373
import:
7474
# In addition to the zephyr repository itself, NCS also
7575
# imports the contents of zephyr/west.yml at the above

0 commit comments

Comments
 (0)