erling
erling
``` target C; reactor R(width:int=4) { mutable input[width] in: int reaction(in) {==} } main reactor { r = new R() } ``` gives: ``` /home/erling/dev/examples-lingua-franca/src-gen/MutablMultiport/_r.c: In function ‘_rreaction_function_0’: /home/erling/dev/examples-lingua-franca/src-gen/MutablMultiport/_r.c:11:24: error:...
Or add a validator check to catch programs trying to use it
When trying to set the platform option of a simple federated program. E.g. ``` target C { platform: "Linux" // Or "zephyr" which I am interested in } reactor R...
Hi. Thanks for greatly improving the documentation! It was a very pleasant experience to go through the steps to build AVB applications targeting FreeRTOS and iMXRT1170EVK. It would be really...
When passing `-n/--no-compile` to `lfc` when compiling a federation, it does not invoke the code-generator on the generated LF projects. I was expecting it to still do code-generation for the...
``` main reactor { state arr: int[100] } ``` Here I would expect to have an int[100] field on the self-struct, but what is code generated is just an int*....
I can reproduce this on `master` with my laptop. It succeeds with the other schedulers.
If some other unrelated process already has opened port 15045 then the federates might block forever waiting for an ACK from this other process. There needs to be a timeout...
According to the docs we should be able to write `federated reactor at 0.0.0.0:12345` to launch the RTI at localhost port 12345. But this is not propagated to the launch...
I am unable to compile LF programs with generic reactors whose generic type is not included by the generic reactor. Consider this example costing of two source files: Generic.lf ```...