Skip to content

Commit 6ac382c

Browse files
committed
Merge branch '⬆️-deps' into 🦆
2 parents 4aab17c + b072db6 commit 6ac382c

File tree

23 files changed

+405
-396
lines changed

23 files changed

+405
-396
lines changed

Cargo.lock

Lines changed: 268 additions & 296 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/basic_gr_peach/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ r3_port_arm = { path = "../../src/r3_port_arm" }
1010
r3_kernel = { path = "../../src/r3_kernel", features = ["system_time"] }
1111
r3 = { path = "../../src/r3" }
1212

13-
rtt-target = { version = "0.2.0" }
13+
rtt-target = { version = "0.3.0" }
1414
rza1 = { version = "0.2.0", features = ["cpg", "gpio", "scif"] }

examples/basic_nucleo_f401re/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ r3_port_arm_m = { path = "../../src/r3_port_arm_m" }
1212
r3_kernel = { path = "../../src/r3_kernel", features = ["system_time"] }
1313
r3 = { path = "../../src/r3", features = ["sync"] }
1414

15-
panic-rtt-target = { version = "0.1.0", features = ["cortex-m"] }
15+
panic-rtt-target = { version = "0.1.2", features = ["cortex-m"] }
1616
nucleo-f401re = { version = "0.4.1" }
1717
cortex-m-rt = { version = "0.6.12" }
18-
rtt-target = { version = "0.2.0", features = ["cortex-m"] }
18+
rtt-target = { version = "0.3.0", features = ["cortex-m"] }

examples/basic_wio_terminal/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ wio_terminal = { version = "0.4" }
1818
cortex-m-rt = { version = "0.6.12" }
1919
usbd-serial = { version = "0.1" }
2020
usb-device = { version = "0.2.7" }
21-
atsamd-hal = { version = "0.13", features = ["samd51p"] }
2221
arrayvec = { version = "0.7.1", default-features = false }
2322
cortex-m = { version = "*" }
2423
cryo = { version = "0.3.1", default-features = false, features = ["atomic"] }

examples/basic_wio_terminal/src/main.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ use usb_device::{
3535
};
3636
use usbd_serial::{SerialPort, USB_CLASS_CDC};
3737
use wio::{
38-
hal::{clock::GenericClockController, gpio, usb::UsbBus},
38+
hal::{self, clock::GenericClockController, gpio, usb::UsbBus},
3939
pac::{CorePeripherals, Peripherals},
4040
prelude::*,
4141
Pins, Sets,
@@ -262,10 +262,10 @@ fn init_hardware(
262262

263263
type HardwareLateInitInput = (
264264
GenericClockController,
265-
atsamd_hal::pac::MCLK,
265+
hal::pac::MCLK,
266266
Option<wio_terminal::Display>,
267-
atsamd_hal::gpio::Port,
268-
Option<atsamd_hal::pac::SERCOM7>,
267+
hal::gpio::Port,
268+
Option<hal::pac::SERCOM7>,
269269
);
270270

271271
fn init_hardware_late_task_body(
@@ -287,7 +287,7 @@ fn init_hardware_late_task_body(
287287
/// Implements `DelayMs` using `System::sleep`.
288288
struct DelayByKernel;
289289

290-
impl atsamd_hal::hal::blocking::delay::DelayMs<u16> for DelayByKernel {
290+
impl hal::hal::blocking::delay::DelayMs<u16> for DelayByKernel {
291291
#[inline]
292292
fn delay_ms(&mut self, ms: u16) {
293293
System::sleep(r3::time::Duration::from_millis(ms as i32)).unwrap();

examples/common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ embedded-graphics = { version = "0.7.1" }
99

1010
[build-dependencies]
1111
embedded-graphics = { version = "0.7.1" }
12-
image = { version = "0.23.14", default-features = false, features = ["gif"] }
12+
image = { version = "0.24.1", default-features = false, features = ["gif"] }
1313
nsvg = { version = "0.5.1", default-features = false }
14-
zstd = { version = "0.9.0" }
14+
zstd = { version = "0.11.1" }

src/r3/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Upgrade `svgbobdoc` to `^0.3.0` to fix build failures in documentation build
13+
1014
## [0.2.0] - 2022-03-15
1115

1216
**The design has been wholly revamped!** `r3_core ^0.1` defines the interface between an application and a kernel implementation. `r3` re-exports most of `r3_core` and provides additional items. The current kernel implementation has been moved to `r3_kernel 0.1.0`. Different kernel implementations that use more exotic architectures (such as interrupt-driven multi-threading) or are built on top on existing RTOSes may be added in the future.

src/r3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ _full = []
3030
[dependencies]
3131
stable_deref_trait = { version = "1.2.0", default-features = false }
3232
embed-doc-image = { version = "0.1.4", optional = true }
33-
svgbobdoc = { version = "0.3.0-alpha.4" }
33+
svgbobdoc = { version = "0.3.0" }
3434
macropol = { version = "0.1.2" }
3535
r3_core = { version = "0.1.0", path = "../r3_core" }
3636

src/r3_core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Upgrade `svgbobdoc` to `^0.3.0` to fix build failures in documentation build
13+
1014
## 0.1.0 - 2022-03-15
1115

1216
Initial release.

src/r3_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ stable_deref_trait = { version = "1.2.0", default-features = false }
2424
chrono_0p4 = { version = "0.4.13", package = "chrono", optional = true, default-features = false }
2525
memoffset = { version = "0.6.5", features = ["unstable_const"] }
2626
seq-macro = { version = "0.3.0" }
27-
svgbobdoc = { version = "0.3.0-alpha.4" }
27+
svgbobdoc = { version = "0.3.0" }
2828
tokenlock = { version = "0.3.4", default-features = false }
2929
arrayvec = { version = "0.7.1", default-features = false }
3030
bitflags = { version = "1.2.1" }

0 commit comments

Comments
 (0)