├── .gitignore ├── .rustfmt.toml ├── Kbuild ├── LICENSE ├── Makefile ├── README.md ├── enc28j60_hw.rs ├── rust-toolchain.toml └── rust_enc28j60.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfpacket/enc28j60rs/HEAD/.gitignore -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfpacket/enc28j60rs/HEAD/.rustfmt.toml -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-m := rust_enc28j60.o 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfpacket/enc28j60rs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfpacket/enc28j60rs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfpacket/enc28j60rs/HEAD/README.md -------------------------------------------------------------------------------- /enc28j60_hw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfpacket/enc28j60rs/HEAD/enc28j60_hw.rs -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "1.66.0" 3 | -------------------------------------------------------------------------------- /rust_enc28j60.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfpacket/enc28j60rs/HEAD/rust_enc28j60.rs --------------------------------------------------------------------------------