Merge branch 'feature/Pauser_stall_queue' into edge
[clinton/Smoothieware.git] / src / modules / tools / temperaturecontrol / TemperatureControlPool.cpp
CommitLineData
df27a6a3 1/*
3c132bd0
AW
2 This file is part of Smoothie (http://smoothieware.org/). The motion control part is heavily based on Grbl (https://github.com/simen/grbl).
3 Smoothie is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
4 Smoothie is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
df27a6a3 5 You should have received a copy of the GNU General Public License along with Smoothie. If not, see <http://www.gnu.org/licenses/>.
3c132bd0
AW
6*/
7
3c132bd0
AW
8#include "libs/Module.h"
9#include "libs/Kernel.h"
10#include <math.h>
11using namespace std;
12#include <vector>
13#include "TemperatureControlPool.h"
14#include "TemperatureControl.h"
3c308aeb 15#include "PID_Autotuner.h"
3c132bd0
AW
16
17TemperatureControlPool::TemperatureControlPool(){}
18
19void TemperatureControlPool::on_module_loaded(){
20
21 vector<uint16_t> modules;
314ab8f7 22 THEKERNEL->config->get_module_list( &modules, temperature_control_checksum );
3c132bd0 23
a8ad62c3 24 for( unsigned int i = 0; i < modules.size(); i++ ){
3c132bd0 25 // If module is enabled
314ab8f7 26 if( THEKERNEL->config->value(temperature_control_checksum, modules[i], enable_checksum )->as_bool() == true ){
3c132bd0 27 TemperatureControl* controller = new TemperatureControl(modules[i]);
3c308aeb 28 controller->pool = this;
7b625dcc 29 controller->pool_index = i;
314ab8f7 30 THEKERNEL->add_module(controller);
3c132bd0
AW
31 this->controllers.push_back( controller );
32 }
33 }
34
314ab8f7 35 THEKERNEL->add_module( this->PIDtuner = new PID_Autotuner() );
3c132bd0
AW
36}
37
38
39
40
41