From af631719f46f2669dad98461c9fdacbf7d16f83f Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 22 Jul 2021 08:42:44 +0200 Subject: update expected example output --- ci/expected/resource.run | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ci') diff --git a/ci/expected/resource.run b/ci/expected/resource.run index ca12f0e..87e2b37 100644 --- a/ci/expected/resource.run +++ b/ci/expected/resource.run @@ -1,2 +1,2 @@ -UART1: shared = 1 -UART0: shared = 2 +UART1: local_to_uart1 = 1 +UART0: local_to_uart0 = 2 -- cgit v1.2.3 From f9a7efb235854bcb73390988f43b2fae0868e99a Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 22 Jul 2021 08:58:17 +0200 Subject: update expected example output (take 2) --- ci/expected/resource.run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci') diff --git a/ci/expected/resource.run b/ci/expected/resource.run index 87e2b37..9b60960 100644 --- a/ci/expected/resource.run +++ b/ci/expected/resource.run @@ -1,2 +1,2 @@ UART1: local_to_uart1 = 1 -UART0: local_to_uart0 = 2 +UART0: local_to_uart0 = 1 -- cgit v1.2.3 From 5805a05fac2fc5824009586b3ee2fd36dc27fbbf Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Thu, 22 Jul 2021 09:17:39 +0200 Subject: book/resources: rm #[task_local] mention; add #[lock_free] example the #[task_local] attribute was removed --- ci/expected/lock-free.run | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 ci/expected/lock-free.run (limited to 'ci') diff --git a/ci/expected/lock-free.run b/ci/expected/lock-free.run new file mode 100644 index 0000000..56f47a0 --- /dev/null +++ b/ci/expected/lock-free.run @@ -0,0 +1,14 @@ +GPIOA/start + GPIOA/counter = 1 +GPIOA/end +GPIOB/start + GPIOB/counter = 2 +GPIOB/end +GPIOA/start + GPIOA/counter = 3 +GPIOA/end +GPIOB/start + GPIOB/counter = 4 +GPIOB/end +GPIOA/start + GPIOA/counter = 5 -- cgit v1.2.3