erling

Results 22 issues of 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:...

bug
compiler
c

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...

bug
c
federated

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...

bug
good first issue
compiler
c
federated

``` 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*....

c
documentation

I can reproduce this on `master` with my laptop. It succeeds with the other schedulers.

bug
c
federated

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...

bug
c
federated

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...

c
federated

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 ```...

bug
c