From 42109f8b0674151fbf3ae511281463ebaf50245d Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Wed, 17 Aug 2022 14:53:52 +0200 Subject: [PATCH] Fix link formatting --- examples/c-dataflow/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/c-dataflow/README.md b/examples/c-dataflow/README.md index 014e7372..3f9229fa 100644 --- a/examples/c-dataflow/README.md +++ b/examples/c-dataflow/README.md @@ -10,7 +10,7 @@ The [`dataflow.yml`](./dataflow.yml) defines a simple dataflow graph with the fo - The node has a single input named `timer` that is mapped to a dora-provided periodic timer (`dora/timer/secs/1`). - Whenever the node receives a timer tick, it sends out a message with ID `tick` and a counter value as data (just a single byte). - After receiving 10 timer inputs, the node exits. -- The [`operator.c](./operator.c) file defines a dora _operator_ that is plugged as a shared library into a dora runtime. Instead of defining a `main` function, it implements a template of `dora_*` functions, which are invoked by the dora runtime, e.g. when new input is available. +- The [`operator.c`](./operator.c) file defines a dora _operator_ that is plugged as a shared library into a dora runtime. Instead of defining a `main` function, it implements a template of `dora_*` functions, which are invoked by the dora runtime, e.g. when new input is available. - The operator takes the `tick` messages created by the `node.c` node as input. For each input value, it checks the ID and then prints the received message to `stdout`. - It counts the received values and outputs a string of the format _"The current counter value is ..."_. - The [`sink.c`](./sink.c) file defines a custom node again, which takes the output string of the operator as input. It prints each received input to stdout and exits as soon as the input stream is closed.