aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l1/src
Commit message (Collapse)AuthorAgeFilesLines
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-062-2/+2
|
* added examplesokhsunrog2025-05-211-0/+32
|
* Remove manual settings of `composite_with_iads=true`Eekle2024-12-241-5/+0
|
* stm32/usart: Changing baud rateEnmanuel Parache2024-12-031-0/+37
|
* Reduce use of the full `futures` crate.Dario Nieuwenhuis2024-04-261-1/+1
|
* stm32/spi: remove DMA generic params.Dario Nieuwenhuis2024-04-151-2/+1
|
* usb: remove device_descriptor buffer, store bytes in UsbDevice.inner insteadAdam Greig2024-03-231-2/+0
|
* stm32/rcc: unify naming sysclk field to `sys`, enum to `Sysclk`.Dario Nieuwenhuis2024-02-261-1/+1
|
* usb-serial with HSIshufps2024-01-141-0/+103
|
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-213-3/+0
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-3/+3
| | | | convenience methods
* Set frequency in stm32 SPI examplesbofh2023-07-311-1/+5
|
* Fix formattingbofh2023-07-301-9/+1
|
* Fix stm32 SPI examplesbofh2023-07-301-2/+0
|
* Fix examplesRasmus Melchior Jacobsen2023-05-251-5/+5
|
* Let Flash<Async/Blocking> be a thingRasmus Melchior Jacobsen2023-05-251-1/+1
|
* Align with new bind_interruptRasmus Melchior Jacobsen2023-05-251-2/+2
|
* Align examplesRasmus Melchior Jacobsen2023-05-251-6/+6
|
* Align examplesRasmus Melchior Jacobsen2023-05-251-3/+2
|
* Align flash examplesRasmus Melchior Jacobsen2023-04-051-1/+1
|
* Remove flash lock/unlock public API from stm32 flash, and perform the ↵Mathias2022-09-301-1/+1
| | | | unlocking and locking automatically on erase and write operations
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-183-4/+4
|
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-173-6/+6
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-293-7/+7
|
* Run rustfmt.Dario Nieuwenhuis2022-06-123-11/+4
|
* Add bootloader to CIUlf Lilleengen2022-04-271-1/+1
|
* Add stm32 flash + bootloader supportUlf Lilleengen2022-04-271-0/+43
| | | | | | | | * Add flash drivers for L0, L1, L4, WB and WL. Not tested for WB, but should be similar to WL. * Add embassy-boot-stm32 for bootloading on STM32. * Add flash examples and bootloader examples * Update stm32-data
* Use embassy/defmt-timestamp-uptime in all examples.Dario Nieuwenhuis2022-04-023-23/+6
|
* stm32/spi: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-191-2/+1
|
* stm32/gpio: expose all functionality as inherent methods.Dario Nieuwenhuis2022-01-192-6/+4
|
* Support for STM32L1Ulf Lilleengen2021-09-213-0/+90
* Add RCC * Fix more issues with dash in chip names * Update stm32-data version * Add blinky and spi example