I\'m getting this warning when trying to initialize an array to a constant size.
#2170-D use of a const variable in a constant expression is nonstandard in C
A const object is not a constant in C but a read-only object. An array declared at file scope (or any array with static storage duration) has to have a constant expression as its number of elements.
const
This is valid:
#define MAXERRORS 4 LEDSeq errors[MAXERRORS];