Fork of Smoothie to port to mbed non-LPC targets.

Dependencies:   mbed

Fork of Smoothie by Stéphane Cachat

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Hook.h Source File

Hook.h

00001 #ifndef HOOK_H
00002 #define HOOK_H
00003 #include "libs/FPointer.h"
00004 
00005 // Hook is just a glorified FPointer
00006 
00007 class Hook : public FPointer {
00008     public:
00009         Hook();
00010         int     interval;
00011         int     countdown;
00012 };
00013 
00014 #endif