-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add nrf54h20dk cpuppr configuration to SPI tests #74860
Add nrf54h20dk cpuppr configuration to SPI tests #74860
Conversation
fd03d9e
to
9ae7d55
Compare
edaa7dd
to
f9194a6
Compare
0d529f2
to
0b8e5c3
Compare
06401ab
to
8f15398
Compare
8f15398
to
63b187c
Compare
63b187c
to
f2ccabd
Compare
@masz-nordic @anangl can you take a look? |
if BOARD_NRF54H20DK_NRF54H20_CPUPPR | ||
|
||
# As PPR has limited memory most of tests does not fit with asserts enabled. | ||
config ASSERT | ||
default n | ||
|
||
endif # BOARD_NRF54H20DK_NRF54H20_CPUPPR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not enable this at soc level?, also, make it conditional to ztest maybe? like
config ASSERT
default n if ZTEST
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
right, done for soc level.
As for assert kconfig. I used to have like you suggested but changed based on that comment: #74297 (comment)
f2ccabd
to
4428355
Compare
8d02717
4428355
to
8d02717
Compare
In order to allow fiting test in targets with smaller memory make large buffer configurable through Kconfig. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
Add overlay for nrf54h20dk cpurad. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
Add configuration for nrf54h20dk//cpuppr target. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
Rework existing nrf54h20dk overlays to allow adding of nrf54h20dk//cpuppr target. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
Rework overlays and add sysbuild/vpr_launcher folder to allow standard test configuration for nrf54h20dk cpuppr. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
@gmarull @masz-nordic @kl-cruz can you re-approve? I had to rebase. |
@tbursztyka can you take a look? |
Add configuration for
spi_loopback
andspi_controller_peripheral
tests. Reworked configuration ofspi_error_cases
using same scheme of configuration as for other tests which does not require special case intestcase.yaml
.