Hello,
I'm trying to build the trusted firmware M for the nrf9151.
I did the following steps:
- git clone git.trustedfirmware.org/.../trusted-firmware-m
- cd trusted-firmware-m && mkdir build
- cmake -S . -B build -DTFM_PLATFORM=nordic_nrf/nrf9160dk_nrf9160 -DCMAKE_BUILD_TYPE=Release
- cmake --build build -- install
And I get the following build error:
/home/nponsard/git/trusted-firmware-m/platform/ext/target/nordic_nrf/common/core/target_cfg.h:38:36: error: 'NRF_UARTENRF_SECURE_UART_INSTANCE' undeclared (first use in this function)
38 | #define NRF_UARTE_INSTANCE(id) NRF_UARTE##id
| ^~~~~~~~~
There's more output but that seems to be the more relevant lines.
I don't understand what I missed, do I need an additional dependency ? I'm on arch linux.
Thanks in advance,
Nils PONSARD