Skip to content

Commit 2751397

Browse files
Merge pull request #57 from Neotron-Compute/os-updates
Update OS to 0.3.2
2 parents 3d1d8d7 + 30c3ac5 commit 2751397

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

src/main.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,19 +1205,17 @@ impl Hardware {
12051205
words: &'w mut [u8],
12061206
) -> Result<&'w [u8], Self::Error> {
12071207
if IS_CS_LOW.load(Ordering::SeqCst) {
1208-
defmt::info!("out: {:?}", words);
1208+
defmt::trace!("SD out: {:?}", words);
12091209
self.0.with_bus_cs(1, |spi, _buffer| {
12101210
spi.transfer(words).unwrap();
12111211
});
1212-
defmt::info!("in: {:?}", words);
1212+
defmt::trace!("SD in: {:?}", words);
12131213
Ok(words)
12141214
} else {
12151215
// Select a slot we don't use so the SD card won't be activated
1216-
defmt::info!("out: {:?}", words);
12171216
self.0.with_bus_cs(7, |spi, _buffer| {
12181217
spi.transfer(words).unwrap();
12191218
});
1220-
defmt::info!("in: {:?}", words);
12211219
Ok(words)
12221220
}
12231221
}
42 KB
Binary file not shown.

src/thumbv6m-none-eabi-flash1002-libneotron_os.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
This is Neotron OS version v0.3.1
1+
This is Neotron OS version v0.3.2
22

3-
Taken from https://github.com/Neotron-Compute/Neotron-OS/releases/tag/v0.3.1
3+
Taken from https://github.com/Neotron-Compute/Neotron-OS/releases/tag/v0.3.2
44

55
This program is free software: you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)