Marcus LaGrone
Member
not sure if this is a bug or if I am missing something.
I'm porting something over from a Due to test on a Teensy 3.6
I have a giant LUT that I have as a separate file (for readability on my part).
it is a table of 12801 entries.
I have used both PROGMEM (which is what I did in the Due) and const to try and sti
neither works.
the error is:
struct_space_wtf: In function 'void setup()':
struct_space_wtf:9: error: 'synthCalc' was not declared in this scope
myTimer.begin(synthCalc, 25);
^
'synthCalc' was not declared in this scope
if I comment out the #include, it works fine, if I don't I get this error.
code attached:
I'm porting something over from a Due to test on a Teensy 3.6
I have a giant LUT that I have as a separate file (for readability on my part).
it is a table of 12801 entries.
I have used both PROGMEM (which is what I did in the Due) and const to try and sti
neither works.
the error is:
struct_space_wtf: In function 'void setup()':
struct_space_wtf:9: error: 'synthCalc' was not declared in this scope
myTimer.begin(synthCalc, 25);
^
'synthCalc' was not declared in this scope
if I comment out the #include, it works fine, if I don't I get this error.
code attached: