Hello All,
I was wondering if anyone knew what the following error message means;
f/* -- c++ -- */
Thanks!
Hello All,
I was wondering if anyone knew what the following error message means;
f/* -- c++ -- */
Thanks!
What supposedly generated that "error message"?
This was the code that I entered that contributed to generating this message (please see below);
void calculate_delta(float cartesian[3])
{
delta_tmp[X_AXIS] = sqrt(DELTA_DIAGONAL_ROD_2
if ((delta_tmp[X_AXIS] > 0) and (delta_tmp[Y_AXIS] > 0) and (delta_tmp[Z_AXIS] > 0))
{
delta[X_AXIS] = delta_tmp[X_AXIS];
delta[Y_AXIS] = delta_tmp[Y_AXIS];
delta[Z_AXIS] = delta_tmp[Z_AXIS];
} else SERIAL_ECHOLN("ERROR: Invalid delta coordinates!");
}
/*
SERIAL_ECHOPGM("cartesian x="); SERIAL_ECHO(cartesian[X_AXIS]);
SERIAL_ECHOPGM(" y="); SERIAL_ECHO(cartesian[Y_AXIS]);
SERIAL_ECHOPGM(" z="); SERIAL_ECHOLN(cartesian[Z_AXIS]);
SERIAL_ECHOPGM("delta x="); SERIAL_ECHO(delta[X_AXIS]);
SERIAL_ECHOPGM(" y="); SERIAL_ECHO(delta[Y_AXIS]);
SERIAL_ECHOPGM(" z="); SERIAL_ECHOLN(delta[Z_AXIS]);
/
Multiline comments start with /* and end with */, not just /.