how do I repair an error message in multiple sketches ??

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' "

  1. In laymans terms, what does this all mean ??
  2. Can this error be repaired ??
  3. 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

Please copy and paste the entire error log here, not just a snippet.

For those of you that would like to dive in : The Manual

-jim lee

Hi,
Welcome to the forum.

Please read http://forum.arduino.cc/index.php/topic,148850.0.html.

Thanks.. Tom... :slight_smile:

  1. In laymans terms, what does this all mean ??

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

Yes normally it is.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.