Skip to content

Commit 2b9e51d

Browse files
SPI interface is more robust.
Runs mostly OK at 2 MHz. Sometimes get the SPI RX buffer stuck two-bits offset. It probably needs a reset.
1 parent 5eae3cd commit 2b9e51d

File tree

4 files changed

+172
-97
lines changed

4 files changed

+172
-97
lines changed

neotron-bmc-pico/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn main() {
1919
// Generate a file containing the firmware version
2020
let version_output = std::process::Command::new("git")
2121
.current_dir(env::var_os("CARGO_MANIFEST_DIR").unwrap())
22-
.args(&["describe", "--tags", "--all", "--dirty"])
22+
.args(["describe", "--tags", "--all", "--dirty"])
2323
.output()
2424
.expect("running git-describe");
2525
assert!(version_output.status.success());

0 commit comments

Comments
 (0)