Hey guys!

So I've managed to get alot of my firmware configured, however out of no where this error started popping up...the bold red underlined text.

#define XYZ_CONSTS_FROM_CONFIG(type, array, CONFIG) \
static const PROGMEM type array##_P[3] = \
{ X_##CONFIG, Y_##CONFIG, Z_##CONFIG }; \
static inline type array(int axis) \
{ return pgm_read_any(&array##_P[axis]); }

It's located in the marlin.main.cpp file.

Any ideas?

I changed the baudrate and then it started acting up and wont verify without this error.

Thanks in advance!