mirror of
https://github.com/bdring/Grbl_Esp32.git
synced 2025-08-16 19:44:07 +02:00
trying to fix newlines
This commit is contained in:
@@ -44,6 +44,7 @@
|
|||||||
namespace Spindles {
|
namespace Spindles {
|
||||||
// An instance of each type of spindle is created here.
|
// An instance of each type of spindle is created here.
|
||||||
// This allows the spindle to be dynamicly switched
|
// This allows the spindle to be dynamicly switched
|
||||||
|
|
||||||
Null null;
|
Null null;
|
||||||
PWM pwm;
|
PWM pwm;
|
||||||
Relay relay;
|
Relay relay;
|
||||||
|
@@ -39,6 +39,7 @@ namespace Spindles {
|
|||||||
// Note: The direction command is always called on M3,M4, and M5
|
// Note: The direction command is always called on M3,M4, and M5
|
||||||
// This is where the spindle start/stop should be sent
|
// This is where the spindle start/stop should be sent
|
||||||
|
|
||||||
|
|
||||||
// NOTE: data length is excluding the CRC16 checksum.
|
// NOTE: data length is excluding the CRC16 checksum.
|
||||||
data.tx_length = 6;
|
data.tx_length = 6;
|
||||||
data.rx_length = 6;
|
data.rx_length = 6;
|
||||||
|
@@ -19,6 +19,7 @@
|
|||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
along with Grbl. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Spindles {
|
namespace Spindles {
|
||||||
|
@@ -22,6 +22,7 @@ this was tested with pin 16 RX and 26 TX mapped in the machine config file. Pin
|
|||||||
#define VFD_RS485_RTS_PIN GPIO_NUM_4
|
#define VFD_RS485_RTS_PIN GPIO_NUM_4
|
||||||
#define VFD_RS485_RXD_PIN GPIO_NUM_16
|
#define VFD_RS485_RXD_PIN GPIO_NUM_16
|
||||||
// Not sure why this isn't a setting
|
// Not sure why this isn't a setting
|
||||||
|
|
||||||
#define DEFAULT_SPINDLE_RPM_MAX 24000.0 // rpm
|
#define DEFAULT_SPINDLE_RPM_MAX 24000.0 // rpm
|
||||||
#define DEFAULT_SPINDLE_RPM_MIN 6000.0 // rpm
|
#define DEFAULT_SPINDLE_RPM_MIN 6000.0 // rpm
|
||||||
```
|
```
|
||||||
|
Reference in New Issue
Block a user