Well then,
I've taken everything else out of the sketch except for the very basics. Everything to get the TVout running is there, plus a simple tone section in void loop:
#include <TVout.h>
TVout TV;
void setup()
{
TV.begin(NTSC,127,97);
}
void loop()
{
tone(11,500,500);
delay(1000);
}
My last post still holds true even with this simple sketch.