-
Notifications
You must be signed in to change notification settings - Fork 625
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrf noup] tests: drivers: mspi: add SDP MSPI testcase
Add SDP MPSI testcase to basic API test. Signed-off-by: Jakub Zymelka <[email protected]>
- Loading branch information
1 parent
9f1d6b0
commit 4e5d7cd
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
tests/drivers/mspi/api/boards/nrf54l15dk_nrf54l15_cpuapp.overlay
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright (c) 2024 Ambiq Micro Inc. <www.ambiq.com> | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/ { | ||
aliases { | ||
mspi0 = &emspi; | ||
}; | ||
}; | ||
|
||
&emspi { | ||
status = "okay"; | ||
|
||
mspi_device: mspi_device@0 { | ||
status = "okay"; | ||
compatible = "zephyr,mspi-emul-device"; | ||
reg = <0x0>; | ||
mspi-max-frequency = <48000000>; | ||
}; | ||
}; |
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