aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5029 from robamu/tiny-docs-improvementsUlf Lilleengen2025-12-121-2/+2
|\ | | | | | | tiny improvements for nrf init code docs
| * tiny improvements for nrf docsRobin Mueller2025-12-101-2/+2
| |
* | feat: add nRF54LM20A supportHaobo Gu2025-12-081-0/+3
| | | | | | | | Signed-off-by: Haobo Gu <[email protected]>
* | chore: expose uicr write functionsUlf Lilleengen2025-12-041-3/+12
| | | | | | | | | | | | Applications may need to write UICR registers independently of the HAL (for instance, softdevice-specific registers). Exposing these functions will allow that to be done in the correct way.
* | fix: use correct cfg guardUlf Lilleengen2025-12-021-2/+2
| |
* | feat: support nrf54l10 and nrf54l05 in HALUlf Lilleengen2025-12-021-2/+12
| |
* | feat: support nrf54 GRTC as time-driverUlf Lilleengen2025-11-261-0/+1
| | | | | | | | | | | | | | * Refactor GRTC peripheral splitting it into multiple channels * Reserve channel 1 for time-driver if enabled * Implement time-driver using GRTC (RTC peripheral is now removed). * Add timer example to nrf54l15
* | embassy-nrf: add workaround for anomaly 66 on nrf52Matthew Tran2025-11-231-0/+24
|/
* fix: cracen only in secure modeUlf Lilleengen2025-11-041-1/+1
|
* fix: warningsUlf Lilleengen2025-11-041-0/+1
|
* feat: add nrf54 config to set clock speedUlf Lilleengen2025-11-041-0/+30
|
* feat: initial support for nrf54 CRACEN peripheralUlf Lilleengen2025-11-041-1/+3
| | | | | | | The CRACEN peripheral supports random number generation, digest and key generation, and key exchange. The initial support implements random number generation.
* nrf5340: Do not write to UICR from non-secure worldDmitry Tarnyagin2025-10-281-1/+1
| | | | | Ref nRF5340 PS v1.6: > UICR is only accessible by secure code. Any write from non-secure code will be faulted.
* feat: improve nrf54 support using new nrf-pacUlf Lilleengen2025-10-281-12/+0
| | | | | | | | | | | | | * Update nrf-pac to version that modifies nrf52 register layout to match nrf54 to reduce the amount of cfg needed for nrf54 support. * Make the following peripherals available on nrf54: twim, twis, spim, spis, uart, buffered uarte, dppi, gpiote, pwm, saadc * Add examples tested on the nrf54 dk Some code is based on or copied from other pull requests, modified to match the new nrf-pac layout. Co-authored-by: Dmitry Tarnyagin <[email protected]>
* feat(nrf): add rtc support for nRF54LHaobo Gu2025-10-141-1/+0
| | | | Signed-off-by: Haobo Gu <[email protected]>
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* Edition 2024.Dario Nieuwenhuis2025-10-061-1/+2
|
* nrf: apply FICR.TRIMCNF valuesMatthew Tran2025-10-051-13/+51
|
* doc fixesRobin Mueller2025-09-231-1/+1
|
* add basic RTC driver for nRFRobin Mueller2025-09-221-0/+2
|
* nrf: 802.15.4 embassy-net-driverRemmirad2025-09-061-0/+11
|
* nrf54l: Disable glitch detection and enable DC/DC in init.Ole Bauck2025-09-011-0/+17
|
* Enable temp support on the nrf54l15nerwalt2025-08-121-1/+0
| | | | Alphabetize ther peripherals in the pac
* Merge branch 'main' into nrf54l15-wdtDario Nieuwenhuis2025-08-081-1/+5
|\
| * Adds RRAMC support for the nrf54l15nerwalt2025-08-081-1/+5
| | | | | | | | Adds an Nvmc driver alias for compatibility
* | Adds WDT support for the nrf54l15nerwalt2025-08-081-1/+0
|/
* Merge pull request #4427 from clubby789/unsafe-opDario Nieuwenhuis2025-07-231-4/+6
|\ | | | | | | HAL: Use `unsafe` block in IRQ handler
| * Use `unsafe` block in IRQ handlersclubby7892025-07-201-4/+6
| |
* | feat(embassy-nrf): add uicr hfxo workaroundNils Ponsard2025-07-181-7/+36
|/ | | | | | | | | | | | In the MDK, there is a workaround "UICR_HFXO_WORKAROUND" that resests the HFXO values if they are erased. This is necessary on my nrf9151 to have the modem working properly. I found this thanks to these two messages: https://github.com/diondokter/nrf-modem/issues/32#issuecomment-2704598018 https://devzone.nordicsemi.com/f/nordic-q-a/96093/nrf9160-porting-the-modem-library-to-work-with-bare-metal-application/435351?focus=true Signed-off-by: Nils Ponsard <[email protected]>
* nrf: add support for nrf9120, nrf9151, nrf9161 approtect.Dario Nieuwenhuis2025-07-151-0/+31
|
* nrf: Enable TEMP driver for nrf5340-netMatthew Tran2025-05-221-1/+1
|
* nrf/rng: add Blocking/Async Mode param.Dario Nieuwenhuis2025-05-211-0/+24
| | | | | This allows avoiding creating the irq handler if you're only going to use it in blocking mode.
* add the possibility to document `bind_interrupts` `struct`sRalph Ursprung2025-05-151-4/+8
| | | | | | | | | | | | the `bind_interrupts` macro creates a `struct` for the interrupts. it was so far not possible to document those (except for STM32) and there was no generic documentation being generated/added either, thus the `missing_docs` lint was triggered for consumers which enabled it. with this change it is now possible to manually add a comment on the `struct` being defined in the macro invocation. to show that this works one RP example has been modified accordingly.
* nrf: _3v3 -> _3V3Matthew Tran2025-05-141-2/+2
|
* nrf: Add IPC peripheral for nRF5340Alessandro Gasbarroni2025-05-101-0/+2
|
* nrf53: add WDT supportMatthew Tran2025-04-201-1/+0
|
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-1/+1
|
* Merge pull request #3939 from 0e4ef622/nrf53-int-capDario Nieuwenhuis2025-03-021-1/+155
|\ | | | | | | nrf5340: add internal capacitor config
| * nrf5340: add internal capacitor configMatthew Tran2025-03-021-1/+155
| |
* | nrf5340: add regh_voltage configMatthew Tran2025-03-011-0/+39
|/
* remove redundant cfgMatthew Tran2025-02-221-13/+5
|
* nrf5340: configure LFCLKMatthew Tran2025-02-221-3/+58
|
* nrf52833: configure internal LDOklownfish2025-01-281-4/+4
|
* nrf54l: Allow debug access from firmware sid3Dominik Boehi2024-12-261-9/+67
| | | | This adds support for the
* Add nrf9160Alexander Walter2024-12-141-1/+1
|
* Added system off and wake-on-fieldAlexander Walter2024-12-131-0/+3
|
* nrf: Add RESET operations helpers for the nrf5340Alessandro Gasbarroni2024-12-121-0/+3
|
* nrf: Add NFCT driver.Dario Nieuwenhuis2024-11-201-0/+8
| | | | | Co-Authored-By: turbocool3r <[email protected]> Co-Authored-By: ferris <[email protected]>
* nrf: add nrf54l base: gpio and time driver.Dario Nieuwenhuis2024-11-171-20/+62
|
* Update nrf-pac.Dario Nieuwenhuis2024-11-151-1/+1
|