-
-
Notifications
You must be signed in to change notification settings - Fork 187
Open
Description
Defining a native array of integers:

Check and build are fine, but compilation gives:

Something seems of in the generated code.
With an array of strings a similar error appears. Non native arrays work fine.
Compiling on RP2040 / platformio and earlephilhower core.
I also noticed in vars.h the external definition of an array of integers is very generic (void*):

Isn't this very prone to errors? You have to keep types manually in sync between code and flow definition and with a void definition the compiler might not catch an error or do a type cast for you? I couldn't test this because of the compile error.