2012-09-21 19:14:13 +02:00
|
|
|
/*
|
|
|
|
coolant_control.c - coolant control methods
|
|
|
|
Part of Grbl
|
|
|
|
|
2014-05-18 18:01:05 +02:00
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
GRBL(tm) - Embedded CNC g-code interpreter and motion-controller
|
2012-09-21 19:14:13 +02:00
|
|
|
Copyright (c) 2012 Sungeun K. Jeon
|
|
|
|
|
2014-05-18 18:01:05 +02:00
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
2012-09-21 19:14:13 +02:00
|
|
|
|
2014-05-18 18:01:05 +02:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2012-09-21 19:14:13 +02:00
|
|
|
|
2014-05-18 18:01:05 +02:00
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
2012-09-21 19:14:13 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "coolant_control.h"
|
|
|
|
#include "settings.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "planner.h"
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
|
|
|
|
|
|
|
static uint8_t current_coolant_mode;
|
|
|
|
|
|
|
|
void coolant_init()
|
|
|
|
{
|
|
|
|
current_coolant_mode = COOLANT_DISABLE;
|
|
|
|
#if ENABLE_M7
|
|
|
|
COOLANT_MIST_DDR |= (1 << COOLANT_MIST_BIT);
|
|
|
|
#endif
|
|
|
|
COOLANT_FLOOD_DDR |= (1 << COOLANT_FLOOD_BIT);
|
|
|
|
coolant_stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void coolant_stop()
|
|
|
|
{
|
2012-09-22 01:55:02 +02:00
|
|
|
#ifdef ENABLE_M7
|
2012-09-21 19:14:13 +02:00
|
|
|
COOLANT_MIST_PORT &= ~(1 << COOLANT_MIST_BIT);
|
|
|
|
#endif
|
|
|
|
COOLANT_FLOOD_PORT &= ~(1 << COOLANT_FLOOD_BIT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void coolant_run(uint8_t mode)
|
|
|
|
{
|
|
|
|
if (mode != current_coolant_mode)
|
|
|
|
{
|
|
|
|
plan_synchronize(); // Ensure coolant turns on when specified in program.
|
|
|
|
if (mode == COOLANT_FLOOD_ENABLE) {
|
|
|
|
COOLANT_FLOOD_PORT |= (1 << COOLANT_FLOOD_BIT);
|
2012-09-22 01:55:02 +02:00
|
|
|
#ifdef ENABLE_M7
|
2012-09-21 19:14:13 +02:00
|
|
|
} else if (mode == COOLANT_MIST_ENABLE) {
|
|
|
|
COOLANT_MIST_PORT |= (1 << COOLANT_MIST_BIT);
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
coolant_stop();
|
|
|
|
}
|
|
|
|
current_coolant_mode = mode;
|
|
|
|
}
|
|
|
|
}
|