Bladeren bron

add static

Bob-the-Kuhn 8 jaren geleden
bovenliggende
commit
8d1d9040b6
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp Bestand weergeven

@@ -1499,7 +1499,7 @@ static void set_axis_is_at_home(const AxisEnum axis) {
1499 1499
  * Some planner shorthand inline functions
1500 1500
  */
1501 1501
 inline float get_homing_bump_feedrate(const AxisEnum axis) {
1502
-  const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
1502
+  static const uint8_t homing_bump_divisor[] PROGMEM = HOMING_BUMP_DIVISOR;
1503 1503
   uint8_t hbd = pgm_read_byte(&homing_bump_divisor[axis]);
1504 1504
   if (hbd < 1) {
1505 1505
     hbd = 10;

Laden…
Annuleren
Opslaan