Browse Source

Tweak headings in EEPROM structure

Scott Lahteine 8 years ago
parent
commit
871f92378c
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      Marlin/configuration_store.cpp

+ 7
- 7
Marlin/configuration_store.cpp View File

67
  * Global Leveling:
67
  * Global Leveling:
68
  *  219            z_fade_height                    (float)
68
  *  219            z_fade_height                    (float)
69
  *
69
  *
70
- * Mesh bed leveling:                               43 bytes
70
+ * MESH_BED_LEVELING:                               43 bytes
71
  *  223  M420 S    from mbl.status                  (bool)
71
  *  223  M420 S    from mbl.status                  (bool)
72
  *  224            mbl.z_offset                     (float)
72
  *  224            mbl.z_offset                     (float)
73
  *  228            GRID_MAX_POINTS_X                (uint8_t)
73
  *  228            GRID_MAX_POINTS_X                (uint8_t)
74
  *  229            GRID_MAX_POINTS_Y                (uint8_t)
74
  *  229            GRID_MAX_POINTS_Y                (uint8_t)
75
  *  230 G29 S3 XYZ z_values[][]                     (float x9, up to float x 81) +288
75
  *  230 G29 S3 XYZ z_values[][]                     (float x9, up to float x 81) +288
76
  *
76
  *
77
- * AUTO BED LEVELING                                4 bytes
77
+ * HAS_BED_PROBE:                                   4 bytes
78
  *  266  M851      zprobe_zoffset                   (float)
78
  *  266  M851      zprobe_zoffset                   (float)
79
  *
79
  *
80
- * ABL_PLANAR (or placeholder):                     36 bytes
80
+ * ABL_PLANAR:                                      36 bytes
81
  *  270            planner.bed_level_matrix         (matrix_3x3 = float x9)
81
  *  270            planner.bed_level_matrix         (matrix_3x3 = float x9)
82
  *
82
  *
83
- * AUTO_BED_LEVELING_BILINEAR (or placeholder):     47 bytes
83
+ * AUTO_BED_LEVELING_BILINEAR:                      47 bytes
84
  *  306            GRID_MAX_POINTS_X                (uint8_t)
84
  *  306            GRID_MAX_POINTS_X                (uint8_t)
85
  *  307            GRID_MAX_POINTS_Y                (uint8_t)
85
  *  307            GRID_MAX_POINTS_Y                (uint8_t)
86
  *  308            bilinear_grid_spacing            (int x2)
86
  *  308            bilinear_grid_spacing            (int x2)
87
  *  312  G29 L F   bilinear_start                   (int x2)
87
  *  312  G29 L F   bilinear_start                   (int x2)
88
  *  316            bed_level_grid[][]               (float x9, up to float x256) +988
88
  *  316            bed_level_grid[][]               (float x9, up to float x256) +988
89
  *
89
  *
90
- * DELTA (if deltabot):                             48 bytes
90
+ * DELTA:                                           48 bytes
91
  *  348  M666 XYZ  endstop_adj                      (float x3)
91
  *  348  M666 XYZ  endstop_adj                      (float x3)
92
  *  360  M665 R    delta_radius                     (float)
92
  *  360  M665 R    delta_radius                     (float)
93
  *  364  M665 L    delta_diagonal_rod               (float)
93
  *  364  M665 L    delta_diagonal_rod               (float)
99
  *  388  M665 J    delta_tower_angle_trim[B]        (float)
99
  *  388  M665 J    delta_tower_angle_trim[B]        (float)
100
  *  392  M665 K    delta_tower_angle_trim[C]        (float)
100
  *  392  M665 K    delta_tower_angle_trim[C]        (float)
101
  *
101
  *
102
- * Z_DUAL_ENDSTOPS (if not deltabot):               48 bytes
102
+ * Z_DUAL_ENDSTOPS:                                 48 bytes
103
  *  348  M666 Z    z_endstop_adj                    (float)
103
  *  348  M666 Z    z_endstop_adj                    (float)
104
  *  ---            dummy data                       (float x11)
104
  *  ---            dummy data                       (float x11)
105
  *
105
  *
136
  *  533  M200 D    volumetric_enabled               (bool)
136
  *  533  M200 D    volumetric_enabled               (bool)
137
  *  534  M200 T D  filament_size                    (float x5) (T0..3)
137
  *  534  M200 T D  filament_size                    (float x5) (T0..3)
138
  *
138
  *
139
- * TMC2130 Stepper Current:                         20 bytes
139
+ * HAVE_TMC2130:                                    20 bytes
140
  *  554  M906 X    stepperX current                 (uint16_t)
140
  *  554  M906 X    stepperX current                 (uint16_t)
141
  *  556  M906 Y    stepperY current                 (uint16_t)
141
  *  556  M906 Y    stepperY current                 (uint16_t)
142
  *  558  M906 Z    stepperZ current                 (uint16_t)
142
  *  558  M906 Z    stepperZ current                 (uint16_t)

Loading…
Cancel
Save