I am new to Arduino and recently purchased the Snazzy FX Ardcore eurorack synthesizer module which uses Arduino. It has a library of sketches that perform various cv and gate voltage algorithims.
In several unusable skectches, I recieve an error message as follows....
" redefinition at 'volatile int clkState' "
In laymans terms, what does this all mean ??
Can this error be repaired ??
Is it a sketch-by-sketch process to repair since each sketch could have varying degrees of errors ??
THANKS IN ADVANCE
ANYONE WITH EXPERIENCE WITH SNAZZY FX ARDCORE OR CCTV CASCADENCE...PLEASE GET IN TOUCH
It means that the sketch is trying to redefine a variable that you have previously defined. So there is a variable called clkState already and you want another one.
Can this error be repaired ??
Yes. But without knowing more it is hard to say how.
Basically you do one of two things
1 Remove the variable and subsequent code
2 Rename the variable and its use in the subsequent code.
Is it a sketch-by-sketch process to repair since each sketch could have varying degrees of errors ??