-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Closed
Labels
Component: PreprocessorThe Arduino sketch preprocessor converts .ino files into C++ code before compilationThe Arduino sketch preprocessor converts .ino files into C++ code before compilationType: Bug
Milestone
Description
I get the message:
Exception in thread "Thread-583" java.lang.StackOverflowError
followed by a long list of other messages while trying to
compile an Arduino sketch. The problem appears to be
my attempt to define a 4 by n table.
const byte Set2a[][4] = {
{0 ,0 ,0 ,UNUSED}, // 00 unused
.......
{0xF7,0 ,0 ,FUNKEY} // 83 Function key F7
};
Attempting to interface a PS/2 keyboard to an adduino.
Metadata
Metadata
Assignees
Labels
Component: PreprocessorThe Arduino sketch preprocessor converts .ino files into C++ code before compilationThe Arduino sketch preprocessor converts .ino files into C++ code before compilationType: Bug