1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-09-02 10:53:01 +02:00

Fixed .c -> .cpp interior names

This commit is contained in:
Mitch Bradley
2020-08-11 08:20:03 -10:00
parent d89bb0d4a1
commit e97c83c7f4
13 changed files with 15 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
/*
CoolantControl.c - coolant control methods
CoolantControl.cpp - coolant control methods
Part of Grbl
Copyright (c) 2012-2016 Sungeun K. Jeon for Gnea Research LLC

View File

@@ -1,5 +1,5 @@
/*
GCode.c - rs274/ngc parser.
GCode.cpp - rs274/ngc parser.
Part of Grbl
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC

View File

@@ -1,7 +1,7 @@
#pragma once
/*
Gcode.h - rs274/ngc parser.
GCode.h - rs274/ngc parser.
Part of Grbl
Copyright (c) 2011-2015 Sungeun K. Jeon

View File

@@ -1,5 +1,5 @@
/*
Jog.h - Jogging methods
Jog.cpp - Jogging methods
Part of Grbl
Copyright (c) 2016 Sungeun K. Jeon for Gnea Research LLC

View File

@@ -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
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC
@@ -240,7 +240,7 @@ void mc_homing_cycle(uint8_t cycle_mask) {
#endif
// 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.
// 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
if (limits_get_state()) {
mc_reset(); // Issue system reset and ensure spindle and coolant are shutdown.

View File

@@ -5,7 +5,7 @@
Part of Grbl_ESP32
Copyright 2020 - Bart Dring
2020 - Bart Dring
Grbl is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@@ -1,5 +1,5 @@
/*
NutsBolts.c - Shared functions
NutsBolts.cpp - Shared functions
Part of Grbl
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC

View File

@@ -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
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC

View File

@@ -1,5 +1,5 @@
/*
Probe.c - code pertaining to probing methods
Probe.cpp - code pertaining to probing methods
Part of Grbl
Copyright (c) 2014-2016 Sungeun K. Jeon for Gnea Research LLC

View File

@@ -1,5 +1,5 @@
/*
Protocol.c - controls Grbl execution protocol and procedures
Protocol.cpp - controls Grbl execution protocol and procedures
Part of Grbl
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC

View File

@@ -1,5 +1,5 @@
/*
Report.c - reporting and messaging methods
Report.cpp - reporting and messaging methods
Part of Grbl
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
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
methods to accommodate their needs.

View File

@@ -1,5 +1,5 @@
/*
SettingsStorage.c - EEPROM configuration handling
SettingsStorage.cpp - EEPROM configuration handling
Part of Grbl
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC

View File

@@ -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
Copyright (c) 2011-2016 Sungeun K. Jeon for Gnea Research LLC