aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | embassy_nrf::pwm: expose duty cycle polarity for SimplePwmMaarten de Vries2025-10-151-7/+85
| |
* | embassy_nrf::pwm: derive more traits for public structsMaarten de Vries2025-10-151-1/+12
|/
* Merge pull request #4759 from HaoboGu/feat/nrf54l15_rtcUlf Lilleengen2025-10-142-1/+42
|\ | | | | | | Add rtc support for nRF54L
| * feat(nrf): add rtc support for nRF54LHaobo Gu2025-10-142-1/+42
| | | | | | | | Signed-off-by: Haobo Gu <[email protected]>
* | return error on read when uarte buffer overrunKezi2025-10-141-4/+17
| |
* | remove panic on uarte overrunKezi2025-10-091-1/+2
|/
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-0629-62/+54
|
* Edition 2024.Dario Nieuwenhuis2025-10-061-1/+2
|
* nrf: apply FICR.TRIMCNF valuesMatthew Tran2025-10-053-13/+69
|
* Merge pull request #4718 from mike-kfed/saadc-resetDario Nieuwenhuis2025-09-291-0/+13
|\ | | | | | | Reset SAADC for nrf52, workaround for anomaly 241.
| * fixup: documentation more preciseMichael Kefeder2025-09-291-1/+1
| |
| * Reset SAADC in Drop impl for nrf52, workaround for anomaly 241.Michael Kefeder2025-09-291-0/+13
| |
* | fix: remove instance generic for multiwrite implementationUlf Lilleengen2025-09-291-2/+2
| |
* | nrf/usb: erase instance genericsDario Nieuwenhuis2025-09-281-69/+80
| |
* | nrf/radio: erase instance genericDario Nieuwenhuis2025-09-282-30/+36
| |
* | nrf/i2s: erase instance genericDario Nieuwenhuis2025-09-281-78/+98
| |
* | nrf/wdt: erase instance genericDario Nieuwenhuis2025-09-281-10/+9
| |
* | nrf/rtc: erase instance genericDario Nieuwenhuis2025-09-281-29/+38
| |
* | nrf/rng: erase instance genericsDario Nieuwenhuis2025-09-281-26/+30
| |
* | nrf/qspi: erase instance genericsDario Nieuwenhuis2025-09-281-57/+52
| |
* | nrf/qdec: erase instance genericsDario Nieuwenhuis2025-09-281-16/+23
| |
* | nrf/pwm: erase instance genericsDario Nieuwenhuis2025-09-281-87/+60
| |
* | nrf/pdm: erase instance genericsDario Nieuwenhuis2025-09-281-51/+56
| |
* | nrf/egu: erase instance genericsDario Nieuwenhuis2025-09-281-18/+24
| |
* | nrf/ipc: erase instance genericsDario Nieuwenhuis2025-09-281-62/+70
| |
* | nrf/twis: erase instance genericsDario Nieuwenhuis2025-09-281-31/+34
| |
* | nrf/spis: erase instance genericsDario Nieuwenhuis2025-09-281-22/+28
| |
* | nrf/uart,timer: erase instance generics.Dario Nieuwenhuis2025-09-284-189/+272
| |
* | nrf/twim: erase instance genericsDario Nieuwenhuis2025-09-271-34/+41
|/
* feat(nrf/spim): erase Instance type from SpimAbraham Hamidi2025-09-241-28/+36
|
* doc fixesRobin Mueller2025-09-236-8/+8
|
* add missing timer APIRobin Mueller2025-09-231-3/+14
|
* Merge branch 'main' into add-nrf-rtc-driverUlf Lilleengen2025-09-222-2/+35
|\
| * nrf: add persist() method for gpiote and timerMatthew Tran2025-09-212-0/+27
| |
| * nrf: impl Drop for TimerMatthew Tran2025-09-211-2/+8
| |
* | code review changesRobin Mueller2025-09-2213-12/+29
| |
* | add basic RTC driver for nRFRobin Mueller2025-09-2214-0/+313
|/
* nrf: add persist() method for gpio and ppiMatthew Tran2025-09-205-2/+55
|
* nrf: 802.15.4 embassy-net-driverRemmirad2025-09-062-0/+107
|
* nrf54l: Disable glitch detection and enable DC/DC in init.Ole Bauck2025-09-011-0/+17
|
* Replace SAADC input pins with correct mappingsIke2025-08-251-8/+8
|
* Use from_bits in LoopCntnerwalt2025-08-141-1/+1
|
* Enable temp support on the nrf54l15nerwalt2025-08-122-13/+15
| | | | Alphabetize ther peripherals in the pac
* Merge branch 'main' into nrf54l15-wdtDario Nieuwenhuis2025-08-083-2/+188
|\
| * Adds RRAMC support for the nrf54l15nerwalt2025-08-083-2/+188
| | | | | | | | Adds an Nvmc driver alias for compatibility
* | Fixes broken NS buildnerwalt2025-08-081-0/+6
| |
* | Adds WDT support for the nrf54l15nerwalt2025-08-083-5/+13
|/
* 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]>