Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamgreig/stm32f4-smoltcp
https://github.com/adamgreig/stm32f4-smoltcp
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/adamgreig/stm32f4-smoltcp
- Owner: adamgreig
- Created: 2018-10-22T21:01:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-15T00:24:53.000Z (almost 6 years ago)
- Last Synced: 2024-08-03T01:39:16.433Z (6 months ago)
- Language: Rust
- Size: 12.7 KB
- Stars: 9
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# STM32F4 smoltcp ethernet driver
This repo is a proof of concept crate. It contains an `EthernetDevice` impl
for [smoltcp](https://github.com/m-labs/smoltcp) on an stm32f4.For an example of usage, see [stm32f4-smoltcp-demo](https://github.com/adamgreig/stm32f4-smoltcp-demo).
To build this crate standalone, you have to enable a specific device feature of
`stm32f4xx-hal`, for example:```
cargo build --release --features stm32f4xx-hal/rt,stm32f4xx-hal/stm32f407
```Applications using this crate should instead enable the correct features of
`stm32f4xx-hal` themselves.