aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f7/src/bin
Commit message (Collapse)AuthorAgeFilesLines
...
* Added HMAC example.Caleb Garrett2024-02-121-0/+22
|
* Add STM32 HMAC function.Caleb Garrett2024-02-121-1/+1
|
* fmtCaleb Garrett2024-02-111-1/+2
|
* Consolidated hash drivers.Caleb Garrett2024-02-111-5/+5
|
* Removed hash DMA from unsupported configs.Caleb Garrett2024-02-081-3/+6
|
* Format hash example.Caleb Garrett2024-02-041-1/+0
|
* Addressed hash CI build issues.Caleb Garrett2024-02-042-4/+4
|
* Added hash DMA implementation.Caleb Garrett2024-02-031-8/+12
|
* Added hash module with blocking implementation. Included SHA256 example.Caleb Garrett2024-01-311-0/+49
|
* stm32/gpio: remove generics.Dario Nieuwenhuis2024-01-221-3/+2
|
* Change GPIO inherent methods back to `&self`.Dario Nieuwenhuis2024-01-101-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.
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-2111-11/+0
|
* chore: replace make_static! macro usage with non-macro versionUlf Lilleengen2023-12-212-7/+13
|
* Update embedded-hal to 1.0.0-rc.3Dario Nieuwenhuis2023-12-141-1/+1
|
* stm32/rcc: fix pll enum naming on f4, f7.Dario Nieuwenhuis2023-11-133-5/+5
|
* usb: remove msos-descriptor feature.Dario Nieuwenhuis2023-11-081-0/+1
|
* stm32/rcc: refactor f7.Dario Nieuwenhuis2023-10-184-13/+61
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-156-13/+13
| | | | convenience methods
* Patch tests & examplesGabriel Górski2023-10-091-2/+1
|
* stm32/adc: cleanup f1, f3, v1, and v2xoviat2023-09-271-1/+1
|
* stm32/usart: return error instead of panicking on bad baudrate.Dario Nieuwenhuis2023-09-261-1/+1
|
* stm32/rcc: unify h5 and h7.Dario Nieuwenhuis2023-09-211-1/+2
|
* add wait_config_up to examplesJuliDi2023-09-081-1/+4
|
* Update to embedded-io 0.5 (#1752)Dario Nieuwenhuis2023-08-071-1/+1
|
* Merge remote-tracking branch 'origin/main' into bxcan_timestampchemicstry2023-07-311-2/+4
|\
| * stm32/rng: use bind_interrupts!.Dario Nieuwenhuis2023-07-311-2/+4
| |
* | stm32/can: implement proper RX timestampschemicstry2023-07-251-2/+2
|/
* stm32/eth: add set_poll_intervalxoviat2023-07-151-1/+1
|
* stm32/eth: impl. poll intervalxoviat2023-07-151-1/+1
|
* Merge pull request #1578 from schphil/can-splitxoviat2023-07-051-0/+66
|\ | | | | | | stm32 can split method
| * remove unused imports from examplePhilipp Scheff2023-07-031-4/+1
| |
| * allow deed code can rx & clippyPhilipp Scheff2023-07-031-7/+7
| |
| * fmtPhilipp Scheff2023-07-031-6/+10
| |
| * add as_mut & set loopback true in examplePhilipp Scheff2023-06-221-2/+4
| |
| * add stm32f7 can examplePhilipp Scheff2023-06-221-0/+63
| |
* | stm32/otg: add VBUS detection.Dario Nieuwenhuis2023-06-271-1/+3
|/ | | | Fixes #1442.
* net: Support dual stack IPRuben De Smet2023-06-071-2/+2
|
* Rename StaticConfig to StaticConfigV4Ruben De Smet2023-06-061-1/+1
|
* Use make_static! from static-cell v1.1Dario Nieuwenhuis2023-06-011-13/+8
|
* Fix examplesRasmus Melchior Jacobsen2023-05-251-5/+5
|
* Let Flash<Async/Blocking> be a thingRasmus Melchior Jacobsen2023-05-251-2/+2
|
* Align examplesRasmus Melchior Jacobsen2023-05-251-6/+6
|
* Align examplesRasmus Melchior Jacobsen2023-05-251-3/+2
|
* stm32: move to bind_interruptsxoviat2023-05-244-13/+24
| | | | disable lora functionality for now
* net: do not use smoltcp Instant/Duration in public API.Dario Nieuwenhuis2023-05-151-1/+1
|
* Fix some typosDirk Stolle2023-05-081-1/+1
|
* Align flash examplesRasmus Melchior Jacobsen2023-04-051-2/+2
|
* Fix examples broken by the macro fix.Dario Nieuwenhuis2023-03-082-4/+2
|
* stm32/sdmmc: Implement proper clock configurationchemicstry2023-02-231-0/+1
|
* usb: unify ControlHandler+DeviceStateHandler, route all control requests to ↵Dario Nieuwenhuis2023-02-081-1/+0
| | | | | | | | all handlers. - Allows classes to handle vendor requests. - Allows classes to use a single handler for multiple interfaces. - Allows classes to access the other events (previously only `reset` was available).