-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: benchmarks: multicore: Test PM in SPI driver with locks
Extend test that checks: - current consumption in IDLE, S2RAM when SPIM was used; - SPIM works correctly after leaving low power state. Add test suites where SPI is configured with SPI_HOLD_ON_CS and/or SPI_LOCK_ON. Confirm that SPI CS line activation/deactivation is according to: - SPI_HOLD_ON_CS configuration; - spi_release_dt() calls; - not affected by the Device Runtime Power Management. Signed-off-by: Sebastian Głąb <[email protected]>
- Loading branch information
1 parent
a07b87c
commit 4a7bc2e
Showing
10 changed files
with
612 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 0 additions & 10 deletions
10
tests/benchmarks/multicore/idle_spim_loopback/Kconfig.sysbuild
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
CONFIG_PRINTK=y | ||
CONFIG_LOG=y | ||
CONFIG_SPI=y | ||
CONFIG_GPIO=y | ||
|
||
CONFIG_ASSERT=y | ||
|
||
CONFIG_NRF_REGTOOL_VERBOSITY=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ CONFIG_UART_CONSOLE=n | |
CONFIG_SERIAL=n | ||
|
||
CONFIG_SPI=y | ||
CONFIG_GPIO=y | ||
CONFIG_ASSERT=y |
Oops, something went wrong.