aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/temp.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-6/+3
|
* nrf: port to chiptool-based `nrf-pac`.Dario Nieuwenhuis2024-11-041-11/+11
|
* nrf: Remove useless returnsPriit Laes2024-02-171-1/+1
|
* nrf: Remove unneeded include from Temp's examplePriit Laes2023-09-101-1/+0
| | | | Fixes doctest when `time` feature is not enabled.
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-2/+2
| | | | internal use only. (#1700)
* Make interrupt module more standard.Dario Nieuwenhuis2023-06-081-5/+5
| | | | | | | | | | | | - Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`.
* cortex-m: remove owned interrupts.Dario Nieuwenhuis2023-06-011-4/+3
|
* ci: fix nrf, rp tests.Dario Nieuwenhuis2023-05-291-1/+12
|
* nrf/temp: switch to new interrupt binding.Dario Nieuwenhuis2023-03-061-11/+24
|
* nrf: docs.Dario Nieuwenhuis2023-02-011-2/+3
|
* Replace futures::future::poll_fn -> core::future::poll_fn.Dario Nieuwenhuis2022-09-221-1/+1
|
* split `embassy-util` into `embassy-futures`, `embassy-sync`.Dario Nieuwenhuis2022-08-221-1/+1
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-291-1/+1
|
* Rename Unborrowed -> PeripheralRef, Unborrow -> PeripheralDario Nieuwenhuis2022-07-231-5/+5
|
* WIP: Make unborrow safe to useGrant Miller2022-07-231-8/+3
|
* Run rustfmt.Dario Nieuwenhuis2022-06-121-11/+8
|
* Add embassy-cortex-m crate.Dario Nieuwenhuis2022-06-121-2/+2
| | | | | | - Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`.
* Use async fn instead of impl FutureUlf Lilleengen2021-10-191-17/+14
|
* Use AtomicWaker instead of SignalUlf Lilleengen2021-10-191-14/+19
|
* Add support for temperature sensor peripheralUlf Lilleengen2021-10-191-0/+84
* Add TEMP peripheral to all nRF52 chips * Add async HAL for reading temperature values * Add example application reading temperature values