Merge pull request #4238 from 0e4ef622/nrf53-temp

nrf: Enable TEMP driver for nrf5340-net
This commit is contained in:
Dario Nieuwenhuis 2025-05-23 12:11:19 +02:00 committed by GitHub
commit f7405493c1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -201,6 +201,9 @@ embassy_hal_internal::peripherals! {
// EGU
EGU0,
// TEMP
TEMP,
}
impl_ipc!(IPC, IPC, IPC);

View File

@ -149,7 +149,7 @@ pub mod spim;
#[cfg(not(feature = "_nrf51"))]
pub mod spis;
#[cfg(not(feature = "_nrf54l"))] // TODO
#[cfg(not(any(feature = "_nrf5340", feature = "_nrf91")))]
#[cfg(not(any(feature = "_nrf5340-app", feature = "_nrf91")))]
pub mod temp;
#[cfg(not(feature = "_nrf54l"))] // TODO
pub mod timer;