smoothie port to mbed online compiler (smoothieware.org)

Dependencies:   mbed

For documentation, license, ..., please check http://smoothieware.org/

This version has been tested with a 3 axis machine

Committer:
scachat
Date:
Tue Jul 31 21:11:18 2012 +0000
Revision:
0:31e91bb0ef3c
smoothie port to mbed online compiler

Who changed what in which revision?

UserRevisionLine numberNew contents of line
scachat 0:31e91bb0ef3c 1 /*
scachat 0:31e91bb0ef3c 2 this file is part of smoothie (http://smoothieware.org/). the motion control part is heavily based on grbl (https://github.com/simen/grbl).
scachat 0:31e91bb0ef3c 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.
scachat 0:31e91bb0ef3c 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.
scachat 0:31e91bb0ef3c 5 you should have received a copy of the gnu general public license along with smoothie. if not, see <http://www.gnu.org/licenses/>.
scachat 0:31e91bb0ef3c 6 */
scachat 0:31e91bb0ef3c 7
scachat 0:31e91bb0ef3c 8 #ifndef TEMPERATURECONTROLPOOL_H
scachat 0:31e91bb0ef3c 9 #define TEMPERATURECONTROLPOOL_H
scachat 0:31e91bb0ef3c 10
scachat 0:31e91bb0ef3c 11 #include "TemperatureControl.h"
scachat 0:31e91bb0ef3c 12 #include <math.h>
scachat 0:31e91bb0ef3c 13 using namespace std;
scachat 0:31e91bb0ef3c 14 #include <vector>
scachat 0:31e91bb0ef3c 15
scachat 0:31e91bb0ef3c 16 #define temperature_control_checksum 44054
scachat 0:31e91bb0ef3c 17 #define enable_checksum 29545
scachat 0:31e91bb0ef3c 18
scachat 0:31e91bb0ef3c 19 class TemperatureControlPool : public Module {
scachat 0:31e91bb0ef3c 20 public:
scachat 0:31e91bb0ef3c 21 TemperatureControlPool();
scachat 0:31e91bb0ef3c 22
scachat 0:31e91bb0ef3c 23 virtual void on_module_loaded();
scachat 0:31e91bb0ef3c 24
scachat 0:31e91bb0ef3c 25 vector<TemperatureControl*> controllers;
scachat 0:31e91bb0ef3c 26 };
scachat 0:31e91bb0ef3c 27
scachat 0:31e91bb0ef3c 28
scachat 0:31e91bb0ef3c 29
scachat 0:31e91bb0ef3c 30 #endif