fixed warning: extra ;
This commit is contained in:
parent
d35dc407a8
commit
0bd66807b2
@ -634,8 +634,8 @@ static bool send_ok[BUFSIZE];
|
||||
static inline type pgm_read_any(const type *p) \
|
||||
{ return pgm_read_##reader##_near(p); }
|
||||
|
||||
DEFINE_PGM_READ_ANY(float, float);
|
||||
DEFINE_PGM_READ_ANY(signed char, byte);
|
||||
DEFINE_PGM_READ_ANY(float, float)
|
||||
DEFINE_PGM_READ_ANY(signed char, byte)
|
||||
|
||||
#define XYZ_CONSTS_FROM_CONFIG(type, array, CONFIG) \
|
||||
static const PROGMEM type array##_P[XYZ] = \
|
||||
@ -643,12 +643,12 @@ DEFINE_PGM_READ_ANY(signed char, byte);
|
||||
static inline type array(int axis) \
|
||||
{ return pgm_read_any(&array##_P[axis]); }
|
||||
|
||||
XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS);
|
||||
XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS);
|
||||
XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS);
|
||||
XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH);
|
||||
XYZ_CONSTS_FROM_CONFIG(float, home_bump_mm, HOME_BUMP_MM);
|
||||
XYZ_CONSTS_FROM_CONFIG(signed char, home_dir, HOME_DIR);
|
||||
XYZ_CONSTS_FROM_CONFIG(float, base_min_pos, MIN_POS)
|
||||
XYZ_CONSTS_FROM_CONFIG(float, base_max_pos, MAX_POS)
|
||||
XYZ_CONSTS_FROM_CONFIG(float, base_home_pos, HOME_POS)
|
||||
XYZ_CONSTS_FROM_CONFIG(float, max_length, MAX_LENGTH)
|
||||
XYZ_CONSTS_FROM_CONFIG(float, home_bump_mm, HOME_BUMP_MM)
|
||||
XYZ_CONSTS_FROM_CONFIG(signed char, home_dir, HOME_DIR)
|
||||
|
||||
/**
|
||||
* ***************************************************************************
|
||||
@ -8542,7 +8542,7 @@ void ok_to_send() {
|
||||
cartes[X_AXIS] = delta_tower1_x + ex[0] * Xnew + ey[0] * Ynew - ez[0] * Znew;
|
||||
cartes[Y_AXIS] = delta_tower1_y + ex[1] * Xnew + ey[1] * Ynew - ez[1] * Znew;
|
||||
cartes[Z_AXIS] = z1 + ex[2] * Xnew + ey[2] * Ynew - ez[2] * Znew;
|
||||
};
|
||||
}
|
||||
|
||||
void forward_kinematics_DELTA(float point[ABC]) {
|
||||
forward_kinematics_DELTA(point[A_AXIS], point[B_AXIS], point[C_AXIS]);
|
||||
|
@ -1642,14 +1642,14 @@ void kill_screen(const char* lcd_msg) {
|
||||
#define _PIDTEMP_FUNCTIONS(eindex) _PIDTEMP_BASE_FUNCTIONS(eindex)
|
||||
#endif
|
||||
|
||||
_PIDTEMP_FUNCTIONS(0);
|
||||
_PIDTEMP_FUNCTIONS(0)
|
||||
#if ENABLED(PID_PARAMS_PER_HOTEND)
|
||||
#if HOTENDS > 1
|
||||
_PIDTEMP_FUNCTIONS(1);
|
||||
_PIDTEMP_FUNCTIONS(1)
|
||||
#if HOTENDS > 2
|
||||
_PIDTEMP_FUNCTIONS(2);
|
||||
_PIDTEMP_FUNCTIONS(2)
|
||||
#if HOTENDS > 3
|
||||
_PIDTEMP_FUNCTIONS(3);
|
||||
_PIDTEMP_FUNCTIONS(3)
|
||||
#endif //HOTENDS > 3
|
||||
#endif //HOTENDS > 2
|
||||
#endif //HOTENDS > 1
|
||||
@ -2368,14 +2368,14 @@ void kill_screen(const char* lcd_msg) {
|
||||
callbackFunc = callback; \
|
||||
}
|
||||
|
||||
menu_edit_type(int, int3, itostr3, 1);
|
||||
menu_edit_type(float, float3, ftostr3, 1);
|
||||
menu_edit_type(float, float32, ftostr32, 100);
|
||||
menu_edit_type(float, float43, ftostr43sign, 1000);
|
||||
menu_edit_type(float, float5, ftostr5rj, 0.01);
|
||||
menu_edit_type(float, float51, ftostr51sign, 10);
|
||||
menu_edit_type(float, float52, ftostr52sign, 100);
|
||||
menu_edit_type(unsigned long, long5, ftostr5rj, 0.01);
|
||||
menu_edit_type(int, int3, itostr3, 1)
|
||||
menu_edit_type(float, float3, ftostr3, 1)
|
||||
menu_edit_type(float, float32, ftostr32, 100)
|
||||
menu_edit_type(float, float43, ftostr43sign, 1000)
|
||||
menu_edit_type(float, float5, ftostr5rj, 0.01)
|
||||
menu_edit_type(float, float51, ftostr51sign, 10)
|
||||
menu_edit_type(float, float52, ftostr52sign, 100)
|
||||
menu_edit_type(unsigned long, long5, ftostr5rj, 0.01)
|
||||
|
||||
/**
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user