smoothie port to mbed online compiler (smoothieware.org)
For documentation, license, ..., please check http://smoothieware.org/
This version has been tested with a 3 axis machine
libs/Pauser.h
- Committer:
- scachat
- Date:
- 2012-07-31
- Revision:
- 0:31e91bb0ef3c
File content as of revision 0:31e91bb0ef3c:
#ifndef PAUSER_H #define PAUSER_H #include "libs/Kernel.h" #include "libs/nuts_bolts.h" #include "libs/utils.h" class Pauser : public Module { public: Pauser(); virtual void on_module_loaded(); void take(); void release(); unsigned short counter; }; #endif