aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l4/src/bin/spe_adin1110_http_server.rs
Commit message (Collapse)AuthorAgeFilesLines
* Reverted adding AnyBinding, removed AnyChannel, removed ability for ↵WillaWillNot2025-11-221-6/+1
| | | | ExtiInput to accept AnyPin and AnyChannel arguments, added ExtiPin trait for all pins which is lost on converstion to AnyPin and contains type-level ExtiChannel information
* Fixed broken examples/formatting reported by CIWillaWillNot2025-11-211-2/+9
|
* feat: stm32 spi driver slave modeCristian Milatinov2025-11-041-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add SPI slave constructors Fix SPI slave constructors Fix embedded hal async trait One more constructor fix Set SSM bit in SPI driver according to CommunicationMode Fix embedded_hal_async trait to be generic for both master and slave Fix I2S driver to use async master SPI Forgot import from spi mode Fix CommunicationMode associated const conditionals Duplicate doc for CommunicationMode const Add missing nss argument Fix existing SPI tests not compiling Fix stm32h7rs examples not compiling Fix failing stm32l4 example Fix stm32h7 example Fix stm32h7 spi_bdma example Fix stm32h7 spi example Fix stm32f4 example docs: added entry in changelog.md fix: spi_v3 vals mismatch + rise_fall_speed renamed to gpio_speed fix: added spi_v6 conditional compilation feature fix: use if_afio macro in slave constructors fix: add missing trait bound fix: if_afio for cs pin trait fix: changelog message fix: broken rebase
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-4/+6
|
* executor: return error when creating the spawntoken, not when spawning.Dario Nieuwenhuis2025-08-291-4/+4
|
* i2c examplesSüha Ünüvar2025-08-081-1/+0
|
* merge new embassy changesjrmoulton2025-06-101-8/+6
|\
| * Add rand-core v0.9 support.Dario Nieuwenhuis2025-05-181-1/+0
| | | | | | | | Co-Authored-By: Aurélien Jacobs <[email protected]>
| * Update smoltcp, embedded-nal-async to use the `core::net` IP addr types.Dario Nieuwenhuis2024-10-071-1/+1
| |
| * net: refactor to simplify lifetimes/generics.Dario Nieuwenhuis2024-09-161-6/+5
| |
* | fix examplesjrmoulton2024-08-131-1/+1
|/
* examples: ensure at least 3 sockets to avoid running out (DHCP, DNS, the user's)Dario Nieuwenhuis2024-08-071-7/+2
|
* stm32/i2c: remove peripheral generic param.Dario Nieuwenhuis2024-05-211-1/+1
|
* stm32/spi: remove peripheral generic param.Dario Nieuwenhuis2024-05-201-1/+1
|
* stm32/i2c: remove DMA generic params.Dario Nieuwenhuis2024-04-151-1/+1
|
* stm32/spi: remove DMA generic params.Dario Nieuwenhuis2024-04-151-13/+11
|
* Remove ad-hoc fixes for setting the IOSV bit to trueEmilie Burgun2024-03-261-6/+0
|
* Fix warnings in recent nightly.Dario Nieuwenhuis2024-03-201-1/+1
|
* stm32/rcc: unify naming sysclk field to `sys`, enum to `Sysclk`.Dario Nieuwenhuis2024-02-261-1/+1
|
* stm32/gpio: remove generics.Dario Nieuwenhuis2024-01-221-7/+6
|
* Change GPIO inherent methods back to `&self`.Dario Nieuwenhuis2024-01-101-4/+4
| | | | | | | 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-211-5/+2
|
* chore: replace make_static! macro usage with non-macro versionUlf Lilleengen2023-12-211-5/+8
|
* Update embedded-hal to 1.0.0-rc.3Dario Nieuwenhuis2023-12-141-4/+4
|
* stm32/i2c: add async, dual interrupt scaffolding.Dario Nieuwenhuis2023-11-241-1/+2
|
* stm32/rcc: consistent casing and naming for PLL enums.Dario Nieuwenhuis2023-11-131-2/+2
|
* stm32/rcc: add shared code for hsi48 with crs support.Dario Nieuwenhuis2023-11-051-1/+1
|
* stm32/rcc: merge wl into l4/l5.Dario Nieuwenhuis2023-10-231-15/+19
|
* stm32: update metapacxoviat2023-10-171-1/+1
|
* stm32/rcc: add better support for L4/L4+ differences.Dario Nieuwenhuis2023-10-161-1/+1
|
* stm32/rcc: port L4 to the "flattened" API like h5/h7.Dario Nieuwenhuis2023-10-151-8/+11
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-2/+2
| | | | convenience methods
* stm32/rcc: add LSE/LSI to all chips, add RTC to more chips.Dario Nieuwenhuis2023-10-111-2/+0
|
* stm32/rcc: use PLL enums from PAC.Dario Nieuwenhuis2023-10-091-4/+4
|
* Add some uncontroversial derives to Error typesJames Munns2023-10-061-1/+1
|
* Merge branch 'embassy-rs:main' into adin1110-part2René van Dorst2023-08-281-1/+1
|\
| * stm32: fix l4 re-exportxoviat2023-08-271-1/+1
| |
* | stm32l4: Update adin1110 example add FCS optionRené van Dorst2023-08-281-6/+18
|/
* stm32l4: Add EVAL-ADIN1110EBZ example with basic http serverRené van Dorst2023-08-241-0/+438
Page show the current temperature and auto refresh every 1s.