StereoSID - compatibility matrix

This report was generated on Wednesday, 23-Feb-22 22:48:15 CET using arduino-testlib.

StereoSID

Version: 2.0.6
More details

Compatibility matrix

Board Claims compatibility Inclusion
Noise
RandomPitch
SID_I2C_commander
SID_I2C_receiver
StereoSIDSimpleDemo
sid_player
arduino:avr:uno
1.8.4
Yes ⚠️ FAIL PASS PASS PASS FAIL PASS PASS
arduino:mbed_nano:nanorp2040connect
2.7.2
No FAIL FAIL FAIL PASS FAIL FAIL FAIL
arduino:megaavr:nona4809
1.8.7
No FAIL FAIL FAIL PASS FAIL FAIL FAIL
arduino:samd:mkrwifi1010
1.8.12
No FAIL FAIL FAIL PASS FAIL FAIL FAIL
esp32:esp32:d1_mini32
1.0.6
No FAIL FAIL FAIL PASS FAIL FAIL FAIL

Compilation logs

arduino:avr:uno @ 1.8.4

Inclusion

Result: FAIL
This library has no main header file so an empty one was created.

/tmp/arduino-testlib2780716833/test/test.ino:1:10: fatal error: StereoSID.h: No such file or directory
 #include <StereoSID.h>
          ^~~~~~~~~~~~~
compilation terminated.

examples/Noise

Result: PASS

Sketch uses 2688 bytes (8%) of program storage space. Maximum is 32256 bytes.
Global variables use 180 bytes (8%) of dynamic memory, leaving 1868 bytes for local variables. Maximum is 2048 bytes.

examples/RandomPitch

Result: PASS

Sketch uses 2804 bytes (8%) of program storage space. Maximum is 32256 bytes.
Global variables use 182 bytes (8%) of dynamic memory, leaving 1866 bytes for local variables. Maximum is 2048 bytes.

examples/SID_I2C_commander

Result: PASS

Sketch uses 3858 bytes (11%) of program storage space. Maximum is 32256 bytes.
Global variables use 432 bytes (21%) of dynamic memory, leaving 1616 bytes for local variables. Maximum is 2048 bytes.

examples/SID_I2C_receiver

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/examples/SID_I2C_receiver/SID_I2C_receiver.ino:20:10: fatal error: String.h: No such file or directory
 #include <String.h>
          ^~~~~~~~~~
compilation terminated.

examples/StereoSIDSimpleDemo

Result: PASS

Sketch uses 2978 bytes (9%) of program storage space. Maximum is 32256 bytes.
Global variables use 182 bytes (8%) of dynamic memory, leaving 1866 bytes for local variables. Maximum is 2048 bytes.

examples/sid_player

Result: PASS

Sketch uses 28614 bytes (88%) of program storage space. Maximum is 32256 bytes.
Global variables use 170 bytes (8%) of dynamic memory, leaving 1878 bytes for local variables. Maximum is 2048 bytes.

arduino:mbed_nano:nanorp2040connect @ 2.7.2

Inclusion

Result: FAIL
This library has no main header file so an empty one was created.

/tmp/arduino-testlib821888949/test/test.ino:1:10: fatal error: StereoSID.h: No such file or directory
 #include <StereoSID.h>
          ^~~~~~~~~~~~~
compilation terminated.

examples/Noise

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on mbed_nano architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: error: '_BV' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: note: suggested alternative: '_B'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
                                                                                                    _B
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'B110'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                B110
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: note: suggested alternative: '._21'
  TCCR2B = (1 << CS21);
                 ^~~~
                 ._21
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:72:0:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.h:33:26: error: 'F_CPU' was not declared in this scope
 #define SAMPLERATECOUNT (F_CPU/(8*SAMPLEFREQ)-1)
                          ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:10: note: in expansion of macro 'SAMPLERATECOUNT'
  OCR2A = SAMPLERATECOUNT;
          ^~~~~~~~~~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: note: suggested alternative: 'TIMER'
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
  TIMER
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'TIMER'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  TIMER
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:299:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER1_OVF_vect)
    ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:329:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER2_COMPA_vect)
    ^

examples/RandomPitch

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on mbed_nano architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: error: '_BV' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: note: suggested alternative: '_B'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
                                                                                                    _B
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'B110'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                B110
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: note: suggested alternative: '._21'
  TCCR2B = (1 << CS21);
                 ^~~~
                 ._21
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:72:0:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.h:33:26: error: 'F_CPU' was not declared in this scope
 #define SAMPLERATECOUNT (F_CPU/(8*SAMPLEFREQ)-1)
                          ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:10: note: in expansion of macro 'SAMPLERATECOUNT'
  OCR2A = SAMPLERATECOUNT;
          ^~~~~~~~~~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: note: suggested alternative: 'TIMER'
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
  TIMER
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'TIMER'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  TIMER
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:299:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER1_OVF_vect)
    ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:329:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER2_COMPA_vect)
    ^

examples/SID_I2C_commander

Result: PASS

Sketch uses 82058 bytes (0%) of program storage space. Maximum is 16777216 bytes.
Global variables use 44224 bytes (16%) of dynamic memory, leaving 226112 bytes for local variables. Maximum is 270336 bytes.

examples/SID_I2C_receiver

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/examples/SID_I2C_receiver/SID_I2C_receiver.ino:20:10: fatal error: String.h: No such file or directory
 #include <String.h>
          ^~~~~~~~~~
compilation terminated.

examples/StereoSIDSimpleDemo

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on mbed_nano architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: error: '_BV' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: note: suggested alternative: '_B'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
                                                                                                    _B
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'B110'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                B110
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: note: suggested alternative: '._21'
  TCCR2B = (1 << CS21);
                 ^~~~
                 ._21
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:72:0:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.h:33:26: error: 'F_CPU' was not declared in this scope
 #define SAMPLERATECOUNT (F_CPU/(8*SAMPLEFREQ)-1)
                          ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:10: note: in expansion of macro 'SAMPLERATECOUNT'
  OCR2A = SAMPLERATECOUNT;
          ^~~~~~~~~~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: note: suggested alternative: 'TIMER'
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
  TIMER
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'TIMER'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  TIMER
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:299:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER1_OVF_vect)
    ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:329:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER2_COMPA_vect)
    ^

examples/sid_player

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on mbed_nano architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: error: '_BV' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: note: suggested alternative: '_B'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
                                                                                                    _B
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'B110'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                B110
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: note: suggested alternative: '._21'
  TCCR2B = (1 << CS21);
                 ^~~~
                 ._21
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
In file included from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:72:0:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.h:33:26: error: 'F_CPU' was not declared in this scope
 #define SAMPLERATECOUNT (F_CPU/(8*SAMPLEFREQ)-1)
                          ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:10: note: in expansion of macro 'SAMPLERATECOUNT'
  OCR2A = SAMPLERATECOUNT;
          ^~~~~~~~~~~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: note: suggested alternative: 'TIMER'
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
  TIMER
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'TIMER'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  TIMER
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:299:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER1_OVF_vect)
    ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:329:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER2_COMPA_vect)
    ^

arduino:megaavr:nona4809 @ 1.8.7

Inclusion

Result: FAIL
This library has no main header file so an empty one was created.

/tmp/arduino-testlib821888949/test/test.ino:1:10: fatal error: StereoSID.h: No such file or directory
 #include <StereoSID.h>
          ^~~~~~~~~~~~~
compilation terminated.

examples/Noise

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on megaavr architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: note: suggested alternative: 'TCB1'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
         TCB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino5/avr/include/avr/io.h:99:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino5/avr/include/avr/interrupt.h:38,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:69:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: note: suggested alternative: 'TCB1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
  TCB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'B110'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                B110
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: note: suggested alternative: 'TCB2'
  TCCR2A = 0 ;
  ^~~~~~
  TCB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: note: suggested alternative: 'TCB2'
  TCCR2B = (1 << CS21);
  ^~~~~~
  TCB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: note: suggested alternative: 'TIMERB2'
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
  TIMERB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'TIMERB1'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  TIMERB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void TIMER1_OVF_vect()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:301:2: error: 'OCR1A' was not declared in this scope
  OCR1A = rightOutput; // Output to PWM
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:302:9: error: 'OCR1B' was not declared in this scope
         OCR1B = leftOutput;
         ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void TIMER2_COMPA_vect()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:332:2: error: 'OCR2A' was not declared in this scope
  OCR2A += SAMPLERATECOUNT; // Output to PWM
  ^~~~~

examples/RandomPitch

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on megaavr architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: note: suggested alternative: 'TCB1'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
         TCB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino5/avr/include/avr/io.h:99:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino5/avr/include/avr/interrupt.h:38,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:69:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: note: suggested alternative: 'TCB1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
  TCB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'B110'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                B110
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: note: suggested alternative: 'TCB2'
  TCCR2A = 0 ;
  ^~~~~~
  TCB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: note: suggested alternative: 'TCB2'
  TCCR2B = (1 << CS21);
  ^~~~~~
  TCB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: note: suggested alternative: 'TIMERB2'
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
  TIMERB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'TIMERB1'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  TIMERB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void TIMER1_OVF_vect()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:301:2: error: 'OCR1A' was not declared in this scope
  OCR1A = rightOutput; // Output to PWM
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:302:9: error: 'OCR1B' was not declared in this scope
         OCR1B = leftOutput;
         ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void TIMER2_COMPA_vect()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:332:2: error: 'OCR2A' was not declared in this scope
  OCR2A += SAMPLERATECOUNT; // Output to PWM
  ^~~~~

examples/SID_I2C_commander

Result: PASS

Sketch uses 5265 bytes (10%) of program storage space. Maximum is 49152 bytes.
Global variables use 486 bytes (7%) of dynamic memory, leaving 5658 bytes for local variables. Maximum is 6144 bytes.

examples/SID_I2C_receiver

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/examples/SID_I2C_receiver/SID_I2C_receiver.ino:20:10: fatal error: String.h: No such file or directory
 #include <String.h>
          ^~~~~~~~~~
compilation terminated.

examples/StereoSIDSimpleDemo

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on megaavr architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: note: suggested alternative: 'TCB1'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
         TCB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino5/avr/include/avr/io.h:99:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino5/avr/include/avr/interrupt.h:38,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:69:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: note: suggested alternative: 'TCB1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
  TCB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'B110'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                B110
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: note: suggested alternative: 'TCB2'
  TCCR2A = 0 ;
  ^~~~~~
  TCB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: note: suggested alternative: 'TCB2'
  TCCR2B = (1 << CS21);
  ^~~~~~
  TCB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: note: suggested alternative: 'TIMERB2'
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
  TIMERB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'TIMERB1'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  TIMERB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void TIMER1_OVF_vect()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:301:2: error: 'OCR1A' was not declared in this scope
  OCR1A = rightOutput; // Output to PWM
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:302:9: error: 'OCR1B' was not declared in this scope
         OCR1B = leftOutput;
         ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void TIMER2_COMPA_vect()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:332:2: error: 'OCR2A' was not declared in this scope
  OCR2A += SAMPLERATECOUNT; // Output to PWM
  ^~~~~

examples/sid_player

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on megaavr architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: note: suggested alternative: 'TCB1'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
         TCB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
In file included from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino5/avr/include/avr/io.h:99:0,
                 from /home/ec2-user/arduino-testlib/cli-datadir/data/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino5/avr/include/avr/interrupt.h:38,
                 from /home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:69:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: note: suggested alternative: 'TCB1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
  TCB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'B110'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                B110
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: note: suggested alternative: 'TCB2'
  TCCR2A = 0 ;
  ^~~~~~
  TCB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: note: suggested alternative: 'TCB2'
  TCCR2B = (1 << CS21);
  ^~~~~~
  TCB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: note: suggested alternative: 'TIMERB2'
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
  TIMERB2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'TIMERB1'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  TIMERB1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void TIMER1_OVF_vect()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:301:2: error: 'OCR1A' was not declared in this scope
  OCR1A = rightOutput; // Output to PWM
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:302:9: error: 'OCR1B' was not declared in this scope
         OCR1B = leftOutput;
         ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void TIMER2_COMPA_vect()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:332:2: error: 'OCR2A' was not declared in this scope
  OCR2A += SAMPLERATECOUNT; // Output to PWM
  ^~~~~

arduino:samd:mkrwifi1010 @ 1.8.12

Inclusion

Result: FAIL
This library has no main header file so an empty one was created.

/tmp/arduino-testlib2780716833/test/test.ino:1:10: fatal error: StereoSID.h: No such file or directory
 #include <StereoSID.h>
          ^~~~~~~~~~~~~
compilation terminated.

examples/Noise

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on samd architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: note: suggested alternative: 'TCC1'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
         TCC1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: error: '_BV' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: note: suggested alternative: '_B'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
                                                                                                    _B
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: note: suggested alternative: 'TCC1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
  TCC1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'SS1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                SS1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: note: suggested alternative: 'TCC2'
  TCCR2A = 0 ;
  ^~~~~~
  TCC2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: note: suggested alternative: 'TCC2'
  TCCR2B = (1 << CS21);
  ^~~~~~
  TCC2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: note: suggested alternative: 'SS1'
  TCCR2B = (1 << CS21);
                 ^~~~
                 SS1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'MISO1'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  MISO1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:299:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER1_OVF_vect)
    ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:329:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER2_COMPA_vect)
    ^

examples/RandomPitch

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on samd architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: note: suggested alternative: 'TCC1'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
         TCC1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: error: '_BV' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: note: suggested alternative: '_B'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
                                                                                                    _B
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: note: suggested alternative: 'TCC1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
  TCC1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'SS1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                SS1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: note: suggested alternative: 'TCC2'
  TCCR2A = 0 ;
  ^~~~~~
  TCC2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: note: suggested alternative: 'TCC2'
  TCCR2B = (1 << CS21);
  ^~~~~~
  TCC2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: note: suggested alternative: 'SS1'
  TCCR2B = (1 << CS21);
                 ^~~~
                 SS1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'MISO1'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  MISO1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:299:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER1_OVF_vect)
    ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:329:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER2_COMPA_vect)
    ^

examples/SID_I2C_commander

Result: PASS

Sketch uses 14012 bytes (5%) of program storage space. Maximum is 262144 bytes.
Global variables use 3572 bytes (10%) of dynamic memory, leaving 29196 bytes for local variables. Maximum is 32768 bytes.

examples/SID_I2C_receiver

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/examples/SID_I2C_receiver/SID_I2C_receiver.ino:20:10: fatal error: String.h: No such file or directory
 #include <String.h>
          ^~~~~~~~~~
compilation terminated.

examples/StereoSIDSimpleDemo

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on samd architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: note: suggested alternative: 'TCC1'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
         TCC1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: error: '_BV' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: note: suggested alternative: '_B'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
                                                                                                    _B
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: note: suggested alternative: 'TCC1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
  TCC1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'SS1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                SS1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: note: suggested alternative: 'TCC2'
  TCCR2A = 0 ;
  ^~~~~~
  TCC2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: note: suggested alternative: 'TCC2'
  TCCR2B = (1 << CS21);
  ^~~~~~
  TCC2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: note: suggested alternative: 'SS1'
  TCCR2B = (1 << CS21);
                 ^~~~
                 SS1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'MISO1'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  MISO1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:299:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER1_OVF_vect)
    ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:329:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER2_COMPA_vect)
    ^

examples/sid_player

Result: FAIL

WARNING: library StereoSID claims to run on avr architecture(s) and may be incompatible with your current board which runs on samd architecture(s).
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: In function 'void initialize()':
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: error: 'TCCR1A' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:9: note: suggested alternative: 'TCC1'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
         ^~~~~~
         TCC1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:24: error: 'WGM10' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                        ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:39: error: 'COM1A1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                       ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:104: error: 'COM1B1' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                        ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: error: '_BV' was not declared in this scope
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:103:100: note: suggested alternative: '_B'
         TCCR1A = (1 << WGM10) | (1 << COM1A1) /** GG ADDED the following to enable pin 10 --> */ | _BV(COM1B1);
                                                                                                    ^~~
                                                                                                    _B
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: error: 'TCCR1B' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:2: note: suggested alternative: 'TCC1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
  ^~~~~~
  TCC1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:17: error: 'WGM12' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: error: 'CS10' was not declared in this scope
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:105:32: note: suggested alternative: 'SS1'
  TCCR1B = (1 << WGM12) | (1 << CS10);
                                ^~~~
                                SS1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: error: 'TCCR2A' was not declared in this scope
  TCCR2A = 0 ;
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:125:2: note: suggested alternative: 'TCC2'
  TCCR2A = 0 ;
  ^~~~~~
  TCC2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: error: 'TCCR2B' was not declared in this scope
  TCCR2B = (1 << CS21);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:2: note: suggested alternative: 'TCC2'
  TCCR2B = (1 << CS21);
  ^~~~~~
  TCC2
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: error: 'CS21' was not declared in this scope
  TCCR2B = (1 << CS21);
                 ^~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:127:17: note: suggested alternative: 'SS1'
  TCCR2B = (1 << CS21);
                 ^~~~
                 SS1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:129:2: error: 'OCR2A' was not declared in this scope
  OCR2A = SAMPLERATECOUNT;
  ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:2: error: 'TIMSK2' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:131:17: error: 'OCIE2A' was not declared in this scope
  TIMSK2 = (1 << OCIE2A);
                 ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: error: 'TIMSK1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:2: note: suggested alternative: 'MISO1'
  TIMSK1 = (1 << TOIE1);
  ^~~~~~
  MISO1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: error: 'TOIE1' was not declared in this scope
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:134:17: note: suggested alternative: 'VOICE1'
  TIMSK1 = (1 << TOIE1);
                 ^~~~~
                 VOICE1
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp: At global scope:
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:299:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER1_OVF_vect)
    ^
/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:329:4: error: expected constructor, destructor, or type conversion before '(' token
 ISR(TIMER2_COMPA_vect)
    ^

esp32:esp32:d1_mini32 @ 1.0.6

Inclusion

Result: FAIL
This library has no main header file so an empty one was created.

/tmp/arduino-testlib821888949/test/test.ino:1:23: fatal error: StereoSID.h: No such file or directory
compilation terminated.

examples/Noise

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:69:27: fatal error: avr/interrupt.h: No such file or directory
compilation terminated.

examples/RandomPitch

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:69:27: fatal error: avr/interrupt.h: No such file or directory
compilation terminated.

examples/SID_I2C_commander

Result: PASS

Sketch uses 212938 bytes (16%) of program storage space. Maximum is 1310720 bytes.
Global variables use 14128 bytes (4%) of dynamic memory, leaving 313552 bytes for local variables. Maximum is 327680 bytes.

examples/SID_I2C_receiver

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/examples/SID_I2C_receiver/SID_I2C_receiver.ino:20:20: fatal error: String.h: No such file or directory
compilation terminated.

examples/StereoSIDSimpleDemo

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/SID.cpp:69:27: fatal error: avr/interrupt.h: No such file or directory
compilation terminated.

examples/sid_player

Result: FAIL

/home/ec2-user/arduino-testlib/cli-datadir/user/libraries/StereoSID/examples/sid_player/sid_player.ino:29:65: fatal error: avr/pgmspace.h: No such file or directory
compilation terminated.