| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #2410 from eZioPan/waveform-on-CHx | Dario Nieuwenhuis | 2024-02-01 | 1 | -1/+1 |
| |\ | | | | | | | impl waveform with TIM OC Channel DMA | ||||
| | * | impl waveform with TIM Channel | eZio Pan | 2024-01-06 | 1 | -1/+1 |
| | | | |||||
| * | | stm32/gpio: remove generics. | Dario Nieuwenhuis | 2024-01-22 | 1 | -3/+2 |
| | | | |||||
| * | | Change GPIO inherent methods back to `&self`. | Dario Nieuwenhuis | 2024-01-10 | 1 | -1/+1 |
| |/ | | | | | | | With the embedded-hal rc3 update I changed them to require `&mut self`, but in retrospect I think `&self` is better, for extra flexibility. This PR reverts the changes from the rc3 update to inherent methods. | ||||
| * | ask a DMA Channel only when use .gen_waveform() | eZio Pan | 2024-01-02 | 2 | -14/+4 |
| | | |||||
| * | some trivial fix | eZio Pan | 2023-12-30 | 1 | -1/+1 |
| | | | | | use less #[cfg] macro; reuse same variable | ||||
| * | implement PWM waveform generating with DMA | eZio Pan | 2023-12-28 | 2 | -63/+24 |
| | | |||||
| * | update metapac after stm32-data PR323 | eZio Pan | 2023-12-25 | 1 | -2/+1 |
| | | | | | and refactor a few code with cargo clippy | ||||
| * | enable output compare preload for TIM | eZio Pan | 2023-12-23 | 1 | -0/+7 |
| | | | | | keep output waveform integrity | ||||
| * | remove unused feature attribute | eZio Pan | 2023-12-22 | 1 | -1/+0 |
| | | |||||
| * | fix timing, turn TIM UDE on only necessary, clean DMA FEIF after each Transfer | eZio Pan | 2023-12-22 | 1 | -4/+12 |
| | | |||||
| * | Merge branch 'main' into stm32f4-example-ws2812-spi | eZio Pan | 2023-12-22 | 30 | -53/+35 |
| |\ | |||||
| | * | ci: use beta, add secondary nightly ci. | Dario Nieuwenhuis | 2023-12-21 | 30 | -30/+0 |
| | | | |||||
| | * | chore: replace make_static! macro usage with non-macro version | Ulf Lilleengen | 2023-12-21 | 2 | -16/+28 |
| | | | |||||
| | * | stm32/timer: docs. | Dario Nieuwenhuis | 2023-12-19 | 1 | -1/+1 |
| | | | |||||
| | * | stm32: add some docs. | Dario Nieuwenhuis | 2023-12-18 | 2 | -6/+6 |
| | | | |||||
| * | | typo fix | eZio Pan | 2023-12-18 | 1 | -4/+5 |
| | | | |||||
| * | | match up with stm32f429zi feature flag | eZio Pan | 2023-12-18 | 1 | -1/+1 |
| | | | | | | | | | stm32f429 has less DMA channel than stm32f411 | ||||
| * | | stm32f4 ws2812 example with spi ... | eZio Pan | 2023-12-17 | 2 | -35/+136 |
| |/ | | | | | | | ... and more doc on TIM&DMA version, also remove useless TIM APRE settings, and use for loop instead of manually flip the index bit, and replace `embassy_time::Timer` with `embassy_time::Ticker`, for more constant time interval. | ||||
| * | unify channel assign | eZio Pan | 2023-12-16 | 1 | -4/+6 |
| | | |||||
| * | cargo fmt | eZio Pan | 2023-12-15 | 1 | -11/+5 |
| | | |||||
| * | add ws2812 example for stm32f4 with PWM and DMA | eZio Pan | 2023-12-15 | 1 | -0/+135 |
| | | |||||
| * | Update embedded-hal to 1.0.0-rc.3 | Dario Nieuwenhuis | 2023-12-14 | 1 | -1/+1 |
| | | |||||
| * | STM32 DAC: Rework DAC driver, support all families. | Adam Greig | 2023-11-25 | 1 | -3/+2 |
| | | |||||
| * | stm32/i2c: implement async i2c v1. | Barnaby Walters | 2023-11-24 | 2 | -0/+197 |
| | | |||||
| * | stm32/i2c: add async, dual interrupt scaffolding. | Dario Nieuwenhuis | 2023-11-24 | 1 | -1/+2 |
| | | |||||
| * | stm32/rcc: fix pll enum naming on f4, f7. | Dario Nieuwenhuis | 2023-11-13 | 5 | -9/+9 |
| | | |||||
| * | usb: remove msos-descriptor feature. | Dario Nieuwenhuis | 2023-11-08 | 2 | -2/+2 |
| | | |||||
| * | Update stm32 usb_raw example to use MSOS descriptors for WinUSB | Adam Greig | 2023-11-07 | 3 | -0/+23 |
| | | |||||
| * | Add raw USB example using control transfers | Adam Greig | 2023-11-05 | 1 | -0/+201 |
| | | |||||
| * | Merge branch 'master' into center-align | Dion Dokter | 2023-10-20 | 15 | -67/+124 |
| |\ | |||||
| | * | stm32/rcc: refactor and unify f4 into f7. | Dario Nieuwenhuis | 2023-10-18 | 5 | -16/+81 |
| | | | |||||
| | * | time: Update examples, tests, and other code to use new Timer::after_x ↵ | Adam Greig | 2023-10-15 | 11 | -35/+35 |
| | | | | | | | | | convenience methods | ||||
| | * | Merge pull request #2033 from andresovela/stm32-add-timeout-to-i2c | Ulf Lilleengen | 2023-10-12 | 1 | -7/+2 |
| | |\ | | | | | | | | | | stm32: add timeout to I2C driver | ||||
| | | * | Remove more unused stuff | Andres Oliva | 2023-10-11 | 1 | -1/+0 |
| | | | | |||||
| | | * | stm32: add timeout to I2C driver | Andres Oliva | 2023-10-10 | 1 | -6/+2 |
| | | | | |||||
| | * | | stm32/rcc: add LSE/LSI to all chips, add RTC to more chips. | Dario Nieuwenhuis | 2023-10-11 | 1 | -4/+2 |
| | |/ | |||||
| | * | Patch tests & examples | Gabriel Górski | 2023-10-09 | 1 | -2/+1 |
| | | | |||||
| | * | stm32: implement MCO for all chips. | Dario Nieuwenhuis | 2023-10-07 | 1 | -3/+3 |
| | | | |||||
| * | | Fix examples | Dion Dokter | 2023-10-01 | 2 | -1/+2 |
| |/ | |||||
| * | stm32/adc: cleanup f1, f3, v1, and v2 | xoviat | 2023-09-27 | 1 | -3/+3 |
| | | |||||
| * | stm32/usart: return error instead of panicking on bad baudrate. | Dario Nieuwenhuis | 2023-09-26 | 3 | -3/+3 |
| | | |||||
| * | stm32: fix rtc example | luveti | 2023-09-24 | 1 | -0/+1 |
| | | | | lsi must be enabled otherwise a assertion fails | ||||
| * | stm32/rcc: unify h5 and h7. | Dario Nieuwenhuis | 2023-09-21 | 1 | -1/+2 |
| | | |||||
| * | add wait_config_up to examples | JuliDi | 2023-09-08 | 1 | -1/+4 |
| | | |||||
| * | rustfmt | xoviat | 2023-08-27 | 1 | -4/+2 |
| | | |||||
| * | fix hanging on rtc example | aidant | 2023-08-27 | 1 | -5/+14 |
| | | |||||
| * | Update to embedded-io 0.5 (#1752) | Dario Nieuwenhuis | 2023-08-07 | 3 | -3/+3 |
| | | |||||
| * | Merge remote-tracking branch 'origin/main' into bxcan_timestamp | chemicstry | 2023-07-31 | 6 | -32/+25 |
| |\ | |||||
| | * | Merge pull request #1606 from JcBernack/rng-update | Dario Nieuwenhuis | 2023-07-30 | 2 | -4/+7 |
| | |\ | | | | | | | | | | STM32: RNG update | ||||
