mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-09-02 02:42:36 +02:00
Fixed .c -> .cpp interior names
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
CoolantControl.c - coolant control methods
|
CoolantControl.cpp - coolant control methods
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2012-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2012-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
GCode.c - rs274/ngc parser.
|
GCode.cpp - rs274/ngc parser.
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Gcode.h - rs274/ngc parser.
|
GCode.h - rs274/ngc parser.
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2011-2015 Sungeun K. Jeon
|
Copyright (c) 2011-2015 Sungeun K. Jeon
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Jog.h - Jogging methods
|
Jog.cpp - Jogging methods
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
MotionControl.c - high level interface for issuing motion commands
|
MotionControl.cpp - high level interface for issuing motion commands
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
@@ -240,7 +240,7 @@ void mc_homing_cycle(uint8_t cycle_mask) {
|
|||||||
#endif
|
#endif
|
||||||
// Check and abort homing cycle, if hard limits are already enabled. Helps prevent problems
|
// Check and abort homing cycle, if hard limits are already enabled. Helps prevent problems
|
||||||
// with machines with limits wired on both ends of travel to one limit pin.
|
// with machines with limits wired on both ends of travel to one limit pin.
|
||||||
// TODO: Move the pin-specific LIMIT_PIN call to limits.c as a function.
|
// TODO: Move the pin-specific LIMIT_PIN call to Limits.cpp as a function.
|
||||||
#ifdef LIMITS_TWO_SWITCHES_ON_AXES
|
#ifdef LIMITS_TWO_SWITCHES_ON_AXES
|
||||||
if (limits_get_state()) {
|
if (limits_get_state()) {
|
||||||
mc_reset(); // Issue system reset and ensure spindle and coolant are shutdown.
|
mc_reset(); // Issue system reset and ensure spindle and coolant are shutdown.
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
Part of Grbl_ESP32
|
Part of Grbl_ESP32
|
||||||
|
|
||||||
Copyright 2020 - Bart Dring
|
2020 - Bart Dring
|
||||||
|
|
||||||
Grbl is free software: you can redistribute it and/or modify
|
Grbl is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
NutsBolts.c - Shared functions
|
NutsBolts.cpp - Shared functions
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Planner.c - buffers movement commands and manages the acceleration profile plan
|
Planner.cpp - buffers movement commands and manages the acceleration profile plan
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Probe.c - code pertaining to probing methods
|
Probe.cpp - code pertaining to probing methods
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2014-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2014-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Protocol.c - controls Grbl execution protocol and procedures
|
Protocol.cpp - controls Grbl execution protocol and procedures
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Report.c - reporting and messaging methods
|
Report.cpp - reporting and messaging methods
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2012-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2012-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
/*
|
/*
|
||||||
This file functions as the primary feedback interface for Grbl. Any outgoing data, such
|
This file functions as the primary feedback interface for Grbl. Any outgoing data, such
|
||||||
as the protocol status messages, feedback messages, and status reports, are stored here.
|
as the protocol status messages, feedback messages, and status reports, are stored here.
|
||||||
For the most part, these functions primarily are called from protocol.c methods. If a
|
For the most part, these functions primarily are called from Protocol.cpp methods. If a
|
||||||
different style feedback is desired (i.e. JSON), then a user can change these following
|
different style feedback is desired (i.e. JSON), then a user can change these following
|
||||||
methods to accommodate their needs.
|
methods to accommodate their needs.
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
SettingsStorage.c - EEPROM configuration handling
|
SettingsStorage.cpp - EEPROM configuration handling
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Stepper.c - stepper motor driver: executes motion plans using stepper motors
|
Stepper.cpp - stepper motor driver: executes motion plans using stepper motors
|
||||||
Part of Grbl
|
Part of Grbl
|
||||||
|
|
||||||
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
|
||||||
|
Reference in New Issue
Block a user