aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32u5
Commit message (Collapse)AuthorAgeFilesLines
...
* Add example for touch sensitive controllerKarun2024-06-131-0/+89
|
* prepare for embassy-time 0.3.1 releaseUlf Lilleengen2024-06-041-1/+1
|
* Prepare for embassy-sync 0.6.0 releaseUlf Lilleengen2024-05-291-1/+1
|
* examples/stm32: do not enable vbus detect by default, it doesn't work on all ↵Dario Nieuwenhuis2024-05-131-0/+4
| | | | boards.
* Reduce use of the full `futures` crate.Dario Nieuwenhuis2024-04-262-2/+2
|
* Update dependent versionsJames Munns2024-04-231-1/+1
|
* Merge pull request #2792 from wagcampbell/wgc/u5-flash-non-secureDario Nieuwenhuis2024-04-151-0/+4
|\ | | | | | | Support non-secure flash operations on STM32U5
| * Add support for using secure registersWarren Campbell2024-04-151-0/+4
| |
* | stm32/i2c: remove DMA generic params.Dario Nieuwenhuis2024-04-151-17/+1
|/
* usb: remove device_descriptor buffer, store bytes in UsbDevice.inner insteadAdam Greig2024-03-231-2/+0
|
* stm32/usb: ensure mux is configured in examples.Dario Nieuwenhuis2024-03-191-0/+1
|
* stm32/usb: merge usb and usb_otg into single module.Dario Nieuwenhuis2024-03-191-4/+4
|
* stm32/rcc: unify naming sysclk field to `sys`, enum to `Sysclk`.Dario Nieuwenhuis2024-02-261-1/+1
|
* stm32/rcc: port U5 to new API, add all PLLs, all HSE modes.Dario Nieuwenhuis2024-02-231-11/+16
|
* Merge pull request #2594 from exzachlyvv/zvv/u5-i2cDario Nieuwenhuis2024-02-181-0/+41
|\ | | | | | | Add simple i2c example for u5
| * Add simple i2c example for u5Zach2024-02-181-0/+41
| |
* | Merge pull request #2591 from exzachlyvv/zvv/u5-flashDario Nieuwenhuis2024-02-181-0/+55
|\ \ | | | | | | | | | support u5 flash
| * | support u5 flashZach2024-02-171-0/+55
| |/
* / u5 - add working rng exampleZach2024-02-171-0/+25
|/
* bump embassy-time 0.3, embassy-executor 0.5, embassy-net 0.4.Dario Nieuwenhuis2024-01-111-2/+2
|
* Update STM32 RCC U5 to support P and Q dividersTyler Gilbert2024-01-031-0/+2
|
* examples: configure executor task arena sizes.Dario Nieuwenhuis2024-01-021-2/+2
|
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-214-4/+1
|
* Update all references to `embasy-executor` to the latest versionJesse Braham2023-12-061-1/+1
|
* update release version in examples and other cratesScott Mabin2023-12-041-2/+2
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-291-1/+1
|
* executor: release v0.3.3Dario Nieuwenhuis2023-11-151-1/+1
|
* stm32/rcc: consistent casing and naming for PLL enums.Dario Nieuwenhuis2023-11-131-1/+1
|
* Update heapless to v0.8, embedded-nal-async to v0.7Dario Nieuwenhuis2023-11-101-1/+1
|
* usb: remove msos-descriptor feature.Dario Nieuwenhuis2023-11-081-0/+1
|
* stm32/rcc: add shared code for hsi48 with crs support.Dario Nieuwenhuis2023-11-051-2/+1
|
* Release embassy-executor v0.3.1Dario Nieuwenhuis2023-11-011-1/+1
|
* Prepare embassy-net 0.2.1 and embassy-sync 0.4.0Dániel Buga2023-10-311-1/+1
|
* stm32: rename HSI16 -> HSIDario Nieuwenhuis2023-10-221-2/+2
|
* time: add `links` key, release v0.1.5.Dario Nieuwenhuis2023-10-161-1/+1
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-3/+3
| | | | convenience methods
* Release embassy-time 0.1.4Dániel Buga2023-10-121-1/+1
|
* stm32/rcc: use PLL enums from PAC.Dario Nieuwenhuis2023-10-091-3/+3
|
* stm32: u5: implement >55 MHz clock speedsWill Glynn2023-10-051-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit allows STM32U5 devices to operate at 160 MHz. On STM32U5, MSIS can run at 48 MHz and HSE can reach 50 MHz. Faster clocks require using PLL1's R output, though PLL1 can serve other functions besides using the R output for the system clock. This commit extracts a public `PllConfig` struct, primarily to place associated constructors on that type, but also with an eye towards enabling the P and Q outputs in a later commit. STM32U5 PLLs have various frequency requirements on each stage: after the `m` prescaler, after the `n` multiplier, and after the `r` divider. This commit implements the associated checks as assertions. This commit fixes clock calculation and PLL register configuration errors in PLL initialization. STM32U5 has a PWR peripheral which can be configured to push Vcore into different voltage ranges. System clocks exceeding 55 MHz require range 2, and system clocks exceeding 110 MHz require range 1. This commit adds `voltage_range` to `Config` and configures PWR as directed. The voltage range implies different performance limits on various clock signals, including inside a PLL. This commit implements voltage range <-> frequency range checks as assertions, and extracts the otherwise-repeated MSIS, HSI16, and HSE initialization into private methods on `Config`. STM32U5 frequencies above 55 MHz require using the PWR EPOD booster. The EPOD booster requires configuring a second `m` term for PLL1, `mboost`, such that it falls in a particular range. (Recall that >50 MHz cannot be reached without PLL1, so there is no scenario where EPOD is needed but PLL1 is not.) This commit configures and enables the EPOD booster automatically as required.
* feat: bump embassy-sync version to 0.3.0Ulf Lilleengen2023-09-141-1/+1
| | | | Update changelog in preparation for release
* Release embassy-time v0.1.3Jesse Braham2023-08-281-1/+1
|
* Bump executor crate version to 0.3.0Dániel Buga2023-08-231-1/+1
|
* Added debug=2 in release profile to all examples.Piotr Esden-Tempski2023-07-261-0/+3
| | | | | | | This makes rtt output work right when using `cargo run` in release mode. Debug was already enabled for release builds in some of the examples but not all.
* Add notes about setting chip name correctly for examples.Adam Greig2023-07-221-1/+2
|
* Release embassy-time v0.1.2Dario Nieuwenhuis2023-07-061-1/+1
|
* Update probe-rs-cli -> probe-rsDario Nieuwenhuis2023-06-291-2/+2
|
* stm32/otg: add VBUS detection.Dario Nieuwenhuis2023-06-271-1/+3
| | | | Fixes #1442.
* Remove embassy-cortex-m crate, move stuff to embassy-hal-common.Dario Nieuwenhuis2023-06-091-1/+1
|
* stm32: move to bind_interruptsxoviat2023-05-241-3/+6
| | | | disable lora functionality for now
* Fix some typosDirk Stolle2023-05-081-1/+1
|