aboutsummaryrefslogtreecommitdiff
path: root/embassy-imxrt/src/lib.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* Edition 2024.Dario Nieuwenhuis2025-10-061-1/+2
|
* Use `unsafe` block in IRQ handlersclubby7892025-07-201-3/+5
|
* Merge pull request #4206 from ↵Dario Nieuwenhuis2025-05-151-4/+8
|\ | | | | | | | | | | rursprung/add-possibility-to-document-bind_interrupts-structs add the possibility to document `bind_interrupts` `struct`s
| * 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.
* | Add UART and DMA driversFelipe Balbi2025-05-151-2/+24
|/ | | | | Both blocking and async versions are supported. Add separate examples for each mode.
* Merge branch 'main' into add-rngDario Nieuwenhuis2025-05-131-0/+1
|\
| * Add embassy-imxrt CRC driverFelipe Balbi2025-05-091-0/+1
| |
* | Add embassy-imxrt RNG driverFelipe Balbi2025-05-091-0/+1
|/
* Add OS Event timer supportFelipe Balbi2025-05-071-3/+1
| | | | | | Allow for the use of the OS Event timer as a time source. Signed-off-by: Felipe Balbi <[email protected]>
* Rename rtc.rs to time_driver.rsFelipe Balbi2025-05-071-2/+2
| | | | We will add another time driver for user selection.
* Add Embassy iMXRT RTC Time DriverFelipe Balbi2025-04-091-1/+18
|
* Add embassy-imxrtFelipe Balbi2025-04-091-0/+130
Adds initial support for MIMXRT600 series MCUs from NXP. Subsequent PRs will add more drivers.