aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32f7/src/bin
Commit message (Collapse)AuthorAgeFilesLines
* 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).
* net: allocate space for 2 sockets, needed for dhcp.Dario Nieuwenhuis2023-01-191-1/+1
|
* Add smoltcp dhcp socket configurationPaweł Jan Czochański2023-01-191-8/+3
|
* stm32 otg: add examples.chemicstry2023-01-111-0/+107
|
* stm32/eth_v1: update to new embassy-net trait, remove PeripheralMutex.Dario Nieuwenhuis2022-12-131-25/+25
|
* Merge #1024bors[bot]2022-10-261-1/+11
|\ | | | | | | | | | | | | | | | | | | | | | | 1024: stm32/adc: Remove voltage and temperature conversions r=Dirbaio a=GrantM11235 The current conversion utilities are confusing and a bit of a footgun. (Two out of the three examples got it wrong! They didn't measure vref at all, so all the conversions are completely wrong if vcca isn't 3.3v) I think we should eventually have some sort of conversion utilities in the HAL, but for now I think it is best to just remove it and let the users do their own math. cc `@chemicstry` Co-authored-by: Grant Miller <[email protected]>
| * Improve examplesGrant Miller2022-10-241-4/+4
| |
| * stm32/adc: Remove voltage and temperature conversionsGrant Miller2022-10-241-1/+11
| |
* | stm32: Add support for read_until_idle on UARTGuillaume MICHEL2022-10-261-1/+3
|/
* 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
* Remove Forever, switch to static_cell.Dario Nieuwenhuis2022-08-221-7/+7
|
* Split embassy-time from embassy-executor.Dario Nieuwenhuis2022-08-188-13/+13
|
* examples Remove the `fn config()` idiom.Dario Nieuwenhuis2022-08-173-18/+9
| | | | | It was only useful for doing #[embassy_executor::main(config = "config()")]`. Now that it's gone, it makes more sense to build the config in main directly.
* Remove HAL initialization from #[embassy::main] macro.Dario Nieuwenhuis2022-08-178-19/+22
|
* Split embassy crate into embassy-executor, embassy-util.Dario Nieuwenhuis2022-07-298-23/+23
|
* Update embassy-stm32Dario Nieuwenhuis2022-07-231-3/+8
|
* embassy-stm32: Simplify timeGrant Miller2022-07-102-5/+5
| | | | | | | | | | - Remove unused `MilliSeconds`, `MicroSeconds`, and `NanoSeconds` types - Remove `Bps`, `KiloHertz`, and `MegaHertz` types that were only used for converting to `Hertz` - Replace all instances of `impl Into<Hertz>` with `Hertz` - Add `hz`, `khz`, and `mhz` methods to `Hertz`, as well as free function shortcuts - Remove `U32Ext` extension trait
* Run rustfmt.Dario Nieuwenhuis2022-06-129-32/+16
|
* WIP embassy-net v2Dario Nieuwenhuis2022-05-251-90/+83
|
* Automatically set ADC clock prescaler on v2 ADC to respect max frequencyMatous Hybl2022-05-181-0/+26
|
* Merge #752bors[bot]2022-05-061-4/+3
|\ | | | | | | | | | | | | | | | | | | | | 752: Replace embassy::io with embedded_io. r=Dirbaio a=Dirbaio TODO: - [x] Release embedded-io on crates.io - [x] Remove git dep Co-authored-by: Dario Nieuwenhuis <[email protected]>
| * Replace embassy::io with embedded_io.Dario Nieuwenhuis2022-05-071-4/+3
| |
* | Add F7 flash and bootloader supportMatous Hybl2022-05-061-0/+59
|/
* embassy-stm32/eth: convert LAN8742 driver to generic SMI driverDavid Lenfesty2022-04-301-4/+4
| | | | | | | | SMI Ethernet PHYs all share a common base set of registers that can do 90% of all tasks. The LAN8742 driver used some vendor-specific registers to check link negotiation status, but the need for that was debatable, so I migrated it to a generic driver instead, anybody who wants extra functionality can copy it and impl their own on top of it.