From bdad68959d134f01374bfb5a88f80e76817da200 Mon Sep 17 00:00:00 2001 From: Sven Friedrich Date: Tue, 9 Apr 2024 10:10:11 +0200 Subject: [PATCH] test: add QueuingPortReceiver to example --- examples/partition.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/partition.rs b/examples/partition.rs index ea53c64..4198287 100644 --- a/examples/partition.rs +++ b/examples/partition.rs @@ -19,6 +19,9 @@ mod hello { #[queuing_out(msg_count = 20, msg_size = "12KB", discipline = "FIFO")] struct Channel3; + #[queuing_in(msg_count = 10, msg_size = "2MB", discipline = "Priority")] + struct ChannelFour; + #[start(cold)] fn cold_start(ctx: start::Context) { warm_start(ctx);