Browse Source

Add CNC_COORDINATE_SYSTEMS to configs

Scott Lahteine 7 years ago
parent
commit
1b42fba39b
34 changed files with 272 additions and 0 deletions
  1. 8
    0
      Marlin/Configuration_adv.h
  2. 8
    0
      Marlin/src/config/default/Configuration_adv.h
  3. 8
    0
      Marlin/src/config/examples/AlephObjects/TAZ4/Configuration_adv.h
  4. 8
    0
      Marlin/src/config/examples/Anet/A6/Configuration_adv.h
  5. 8
    0
      Marlin/src/config/examples/Anet/A8/Configuration_adv.h
  6. 8
    0
      Marlin/src/config/examples/Azteeg/X5GT/Configuration_adv.h
  7. 8
    0
      Marlin/src/config/examples/BQ/Hephestos/Configuration_adv.h
  8. 8
    0
      Marlin/src/config/examples/BQ/Hephestos_2/Configuration_adv.h
  9. 8
    0
      Marlin/src/config/examples/BQ/WITBOX/Configuration_adv.h
  10. 8
    0
      Marlin/src/config/examples/Cartesio/Configuration_adv.h
  11. 8
    0
      Marlin/src/config/examples/Creality/CR-10/Configuration_adv.h
  12. 8
    0
      Marlin/src/config/examples/Felix/Configuration_adv.h
  13. 8
    0
      Marlin/src/config/examples/FolgerTech/i3-2020/Configuration_adv.h
  14. 8
    0
      Marlin/src/config/examples/Infitary/i3-M508/Configuration_adv.h
  15. 8
    0
      Marlin/src/config/examples/Malyan/M150/Configuration_adv.h
  16. 8
    0
      Marlin/src/config/examples/Micromake/C1/enhanced/Configuration_adv.h
  17. 8
    0
      Marlin/src/config/examples/Mks/Sbase/Configuration_adv.h
  18. 8
    0
      Marlin/src/config/examples/RigidBot/Configuration_adv.h
  19. 8
    0
      Marlin/src/config/examples/SCARA/Configuration_adv.h
  20. 8
    0
      Marlin/src/config/examples/Sanguinololu/Configuration_adv.h
  21. 8
    0
      Marlin/src/config/examples/TinyBoy2/Configuration_adv.h
  22. 8
    0
      Marlin/src/config/examples/UltiMachine/Archim2/Configuration_adv.h
  23. 8
    0
      Marlin/src/config/examples/Velleman/K8200/Configuration_adv.h
  24. 8
    0
      Marlin/src/config/examples/Velleman/K8400/Configuration_adv.h
  25. 8
    0
      Marlin/src/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h
  26. 8
    0
      Marlin/src/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h
  27. 8
    0
      Marlin/src/config/examples/delta/generic/Configuration_adv.h
  28. 8
    0
      Marlin/src/config/examples/delta/kossel_mini/Configuration_adv.h
  29. 8
    0
      Marlin/src/config/examples/delta/kossel_pro/Configuration_adv.h
  30. 8
    0
      Marlin/src/config/examples/delta/kossel_xl/Configuration_adv.h
  31. 8
    0
      Marlin/src/config/examples/gCreate/gMax1.5+/Configuration_adv.h
  32. 8
    0
      Marlin/src/config/examples/makibox/Configuration_adv.h
  33. 8
    0
      Marlin/src/config/examples/tvrrug/Round2/Configuration_adv.h
  34. 8
    0
      Marlin/src/config/examples/wt150/Configuration_adv.h

+ 8
- 0
Marlin/Configuration_adv.h View File

1258
 #endif
1258
 #endif
1259
 
1259
 
1260
 /**
1260
 /**
1261
+ * CNC Coordinate Systems
1262
+ *
1263
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1264
+ * and G92.1 to reset the workspace to native machine space.
1265
+ */
1266
+//#define CNC_COORDINATE_SYSTEMS
1267
+
1268
+/**
1261
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1269
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1262
  */
1270
  */
1263
 //#define PINS_DEBUGGING
1271
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/default/Configuration_adv.h View File

1281
 #endif
1281
 #endif
1282
 
1282
 
1283
 /**
1283
 /**
1284
+ * CNC Coordinate Systems
1285
+ *
1286
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1287
+ * and G92.1 to reset the workspace to native machine space.
1288
+ */
1289
+//#define CNC_COORDINATE_SYSTEMS
1290
+
1291
+/**
1284
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1292
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1285
  */
1293
  */
1286
 //#define PINS_DEBUGGING
1294
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/AlephObjects/TAZ4/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Anet/A6/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Anet/A8/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Azteeg/X5GT/Configuration_adv.h View File

1258
 #endif
1258
 #endif
1259
 
1259
 
1260
 /**
1260
 /**
1261
+ * CNC Coordinate Systems
1262
+ *
1263
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1264
+ * and G92.1 to reset the workspace to native machine space.
1265
+ */
1266
+//#define CNC_COORDINATE_SYSTEMS
1267
+
1268
+/**
1261
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1269
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1262
  */
1270
  */
1263
 //#define PINS_DEBUGGING
1271
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/BQ/Hephestos/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/BQ/Hephestos_2/Configuration_adv.h View File

1277
 #endif
1277
 #endif
1278
 
1278
 
1279
 /**
1279
 /**
1280
+ * CNC Coordinate Systems
1281
+ *
1282
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1283
+ * and G92.1 to reset the workspace to native machine space.
1284
+ */
1285
+//#define CNC_COORDINATE_SYSTEMS
1286
+
1287
+/**
1280
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1288
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1281
  */
1289
  */
1282
 //#define PINS_DEBUGGING
1290
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/BQ/WITBOX/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Cartesio/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Creality/CR-10/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Felix/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/FolgerTech/i3-2020/Configuration_adv.h View File

1281
 #endif
1281
 #endif
1282
 
1282
 
1283
 /**
1283
 /**
1284
+ * CNC Coordinate Systems
1285
+ *
1286
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1287
+ * and G92.1 to reset the workspace to native machine space.
1288
+ */
1289
+//#define CNC_COORDINATE_SYSTEMS
1290
+
1291
+/**
1284
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1292
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1285
  */
1293
  */
1286
 #define PINS_DEBUGGING
1294
 #define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Infitary/i3-M508/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Malyan/M150/Configuration_adv.h View File

1274
 #endif
1274
 #endif
1275
 
1275
 
1276
 /**
1276
 /**
1277
+ * CNC Coordinate Systems
1278
+ *
1279
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1280
+ * and G92.1 to reset the workspace to native machine space.
1281
+ */
1282
+//#define CNC_COORDINATE_SYSTEMS
1283
+
1284
+/**
1277
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1285
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1278
  */
1286
  */
1279
 //#define PINS_DEBUGGING
1287
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Micromake/C1/enhanced/Configuration_adv.h View File

1284
 #endif
1284
 #endif
1285
 
1285
 
1286
 /**
1286
 /**
1287
+ * CNC Coordinate Systems
1288
+ *
1289
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1290
+ * and G92.1 to reset the workspace to native machine space.
1291
+ */
1292
+//#define CNC_COORDINATE_SYSTEMS
1293
+
1294
+/**
1287
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1295
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1288
  */
1296
  */
1289
 //#define PINS_DEBUGGING
1297
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Mks/Sbase/Configuration_adv.h View File

1302
 #endif
1302
 #endif
1303
 
1303
 
1304
 /**
1304
 /**
1305
+ * CNC Coordinate Systems
1306
+ *
1307
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1308
+ * and G92.1 to reset the workspace to native machine space.
1309
+ */
1310
+//#define CNC_COORDINATE_SYSTEMS
1311
+
1312
+/**
1305
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1313
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1306
  */
1314
  */
1307
 //#define PINS_DEBUGGING
1315
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/RigidBot/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/SCARA/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Sanguinololu/Configuration_adv.h View File

1269
 #endif
1269
 #endif
1270
 
1270
 
1271
 /**
1271
 /**
1272
+ * CNC Coordinate Systems
1273
+ *
1274
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1275
+ * and G92.1 to reset the workspace to native machine space.
1276
+ */
1277
+//#define CNC_COORDINATE_SYSTEMS
1278
+
1279
+/**
1272
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1280
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1273
  */
1281
  */
1274
 //#define PINS_DEBUGGING
1282
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/TinyBoy2/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/UltiMachine/Archim2/Configuration_adv.h View File

1258
 #endif
1258
 #endif
1259
 
1259
 
1260
 /**
1260
 /**
1261
+ * CNC Coordinate Systems
1262
+ *
1263
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1264
+ * and G92.1 to reset the workspace to native machine space.
1265
+ */
1266
+//#define CNC_COORDINATE_SYSTEMS
1267
+
1268
+/**
1261
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1269
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1262
  */
1270
  */
1263
 //#define PINS_DEBUGGING
1271
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Velleman/K8200/Configuration_adv.h View File

1288
 #endif
1288
 #endif
1289
 
1289
 
1290
 /**
1290
 /**
1291
+ * CNC Coordinate Systems
1292
+ *
1293
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1294
+ * and G92.1 to reset the workspace to native machine space.
1295
+ */
1296
+//#define CNC_COORDINATE_SYSTEMS
1297
+
1298
+/**
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1299
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1292
  */
1300
  */
1293
 //#define PINS_DEBUGGING
1301
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/Velleman/K8400/Configuration_adv.h View File

1281
 #endif
1281
 #endif
1282
 
1282
 
1283
 /**
1283
 /**
1284
+ * CNC Coordinate Systems
1285
+ *
1286
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1287
+ * and G92.1 to reset the workspace to native machine space.
1288
+ */
1289
+//#define CNC_COORDINATE_SYSTEMS
1290
+
1291
+/**
1284
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1292
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1285
  */
1293
  */
1286
 //#define PINS_DEBUGGING
1294
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/delta/FLSUN/auto_calibrate/Configuration_adv.h View File

1282
 #endif
1282
 #endif
1283
 
1283
 
1284
 /**
1284
 /**
1285
+ * CNC Coordinate Systems
1286
+ *
1287
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1288
+ * and G92.1 to reset the workspace to native machine space.
1289
+ */
1290
+//#define CNC_COORDINATE_SYSTEMS
1291
+
1292
+/**
1285
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1293
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1286
  */
1294
  */
1287
 //#define PINS_DEBUGGING
1295
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/delta/FLSUN/kossel_mini/Configuration_adv.h View File

1282
 #endif
1282
 #endif
1283
 
1283
 
1284
 /**
1284
 /**
1285
+ * CNC Coordinate Systems
1286
+ *
1287
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1288
+ * and G92.1 to reset the workspace to native machine space.
1289
+ */
1290
+//#define CNC_COORDINATE_SYSTEMS
1291
+
1292
+/**
1285
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1293
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1286
  */
1294
  */
1287
 //#define PINS_DEBUGGING
1295
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/delta/generic/Configuration_adv.h View File

1282
 #endif
1282
 #endif
1283
 
1283
 
1284
 /**
1284
 /**
1285
+ * CNC Coordinate Systems
1286
+ *
1287
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1288
+ * and G92.1 to reset the workspace to native machine space.
1289
+ */
1290
+//#define CNC_COORDINATE_SYSTEMS
1291
+
1292
+/**
1285
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1293
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1286
  */
1294
  */
1287
 //#define PINS_DEBUGGING
1295
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/delta/kossel_mini/Configuration_adv.h View File

1282
 #endif
1282
 #endif
1283
 
1283
 
1284
 /**
1284
 /**
1285
+ * CNC Coordinate Systems
1286
+ *
1287
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1288
+ * and G92.1 to reset the workspace to native machine space.
1289
+ */
1290
+//#define CNC_COORDINATE_SYSTEMS
1291
+
1292
+/**
1285
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1293
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1286
  */
1294
  */
1287
 //#define PINS_DEBUGGING
1295
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/delta/kossel_pro/Configuration_adv.h View File

1287
 #endif
1287
 #endif
1288
 
1288
 
1289
 /**
1289
 /**
1290
+ * CNC Coordinate Systems
1291
+ *
1292
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1293
+ * and G92.1 to reset the workspace to native machine space.
1294
+ */
1295
+//#define CNC_COORDINATE_SYSTEMS
1296
+
1297
+/**
1290
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1298
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  */
1299
  */
1292
 //#define PINS_DEBUGGING
1300
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/delta/kossel_xl/Configuration_adv.h View File

1282
 #endif
1282
 #endif
1283
 
1283
 
1284
 /**
1284
 /**
1285
+ * CNC Coordinate Systems
1286
+ *
1287
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1288
+ * and G92.1 to reset the workspace to native machine space.
1289
+ */
1290
+//#define CNC_COORDINATE_SYSTEMS
1291
+
1292
+/**
1285
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1293
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1286
  */
1294
  */
1287
 //#define PINS_DEBUGGING
1295
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/gCreate/gMax1.5+/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/makibox/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/tvrrug/Round2/Configuration_adv.h View File

1280
 #endif
1280
 #endif
1281
 
1281
 
1282
 /**
1282
 /**
1283
+ * CNC Coordinate Systems
1284
+ *
1285
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1286
+ * and G92.1 to reset the workspace to native machine space.
1287
+ */
1288
+//#define CNC_COORDINATE_SYSTEMS
1289
+
1290
+/**
1283
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1291
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1284
  */
1292
  */
1285
 //#define PINS_DEBUGGING
1293
 //#define PINS_DEBUGGING

+ 8
- 0
Marlin/src/config/examples/wt150/Configuration_adv.h View File

1281
 #endif
1281
 #endif
1282
 
1282
 
1283
 /**
1283
 /**
1284
+ * CNC Coordinate Systems
1285
+ *
1286
+ * Enables G53 and G54-G59.3 commands to select coordinate systems
1287
+ * and G92.1 to reset the workspace to native machine space.
1288
+ */
1289
+//#define CNC_COORDINATE_SYSTEMS
1290
+
1291
+/**
1284
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1292
  * M43 - display pin status, watch pins for changes, watch endstops & toggle LED, Z servo probe test, toggle pins
1285
  */
1293
  */
1286
 //#define PINS_DEBUGGING
1294
 //#define PINS_DEBUGGING

Loading…
Cancel
Save