aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rtic-sync/CHANGELOG.md2
-rw-r--r--rtic-sync/src/channel.rs7
2 files changed, 8 insertions, 1 deletions
diff --git a/rtic-sync/CHANGELOG.md b/rtic-sync/CHANGELOG.md
index ed10372..0e5ab07 100644
--- a/rtic-sync/CHANGELOG.md
+++ b/rtic-sync/CHANGELOG.md
@@ -13,6 +13,8 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
### Fixed
+- `make_channel` now accepts `Type` expressions instead of only `TypePath` expressions.
+
## v1.1.1 - 2023-12-04
### Fixed
diff --git a/rtic-sync/src/channel.rs b/rtic-sync/src/channel.rs
index 89a23af..4f4f0c2 100644
--- a/rtic-sync/src/channel.rs
+++ b/rtic-sync/src/channel.rs
@@ -104,7 +104,7 @@ impl<T, const N: usize> Channel<T, N> {
/// Creates a split channel with `'static` lifetime.
#[macro_export]
macro_rules! make_channel {
- ($type:path, $size:expr) => {{
+ ($type:ty, $size:expr) => {{
static mut CHANNEL: $crate::channel::Channel<$type, $size> =
$crate::channel::Channel::new();
@@ -596,4 +596,9 @@ mod tests {
make();
make();
}
+
+ #[test]
+ fn tuple_channel() {
+ let _ = make_channel!((i32, u32), 10);
+ }
}