diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-06-08 17:01:54 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-06-08 17:01:54 +0000 |
| commit | b68cf6c5c81d2bdc373e45c6adeedb5fa1241463 (patch) | |
| tree | c3a73bbf8eb6d427ca5b03b482d088dc584938e7 /examples/stm32f7 | |
| parent | 87ad66f2b4a5bfd36dfc8d8aad5492e9e3f915e6 (diff) | |
| parent | 8c93805ab5a13c784e072c8e6e59b354ee902d99 (diff) | |
Merge pull request #1544 from embassy-rs/irq-typelevel
Rework typelevel interrupts.
Diffstat (limited to 'examples/stm32f7')
| -rw-r--r-- | examples/stm32f7/build.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/stm32f7/build.rs b/examples/stm32f7/build.rs index c4e15f19c..2b5d412a9 100644 --- a/examples/stm32f7/build.rs +++ b/examples/stm32f7/build.rs | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | //! adapted from https://github.com/stm32-rs/stm32f7xx-hal/blob/master/build.rs | 1 | //! adapted from https://github.com/stm32-rs/stm32f7xx-hal/blob/master/build.rs |
| 2 | use std::env; | ||
| 3 | use std::fs::File; | 2 | use std::fs::File; |
| 4 | use std::io::prelude::*; | 3 | use std::io::prelude::*; |
| 5 | use std::io::{self}; | ||
| 6 | use std::path::PathBuf; | 4 | use std::path::PathBuf; |
| 5 | use std::{env, io}; | ||
| 7 | 6 | ||
| 8 | #[derive(Debug)] | 7 | #[derive(Debug)] |
| 9 | enum Error { | 8 | enum Error { |
