Sample showing how to use the additional wakeup signal in nordic,nrf-spis driver. The application, configured as a SPIS, is put to sleep while waiting for an SPI transmission. An external device working as a SPIM and also handling the wakeup signal wakes the application up just before the transmission starts. Signed-off-by: Piotr Krzyzanowski <piotr.krzyzanowski@nordicsemi.no>
14 lines
342 B
CMake
14 lines
342 B
CMake
#
|
|
# Copyright (c) 2025 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if(SB_CONFIG_SOC_NRF54H20)
|
|
# Add remote project
|
|
ExternalZephyrProject_Add(
|
|
APPLICATION wakeup_trigger
|
|
SOURCE_DIR ${APP_DIR}/wakeup_trigger
|
|
BOARD ${SB_CONFIG_BOARD}/${SB_CONFIG_SOC}/cpurad
|
|
BOARD_REVISION ${BOARD_REVISION}
|
|
)
|
|
endif()
|