Closed
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.