Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Task.cpp
- Committer:
- Phlaphead
- Date:
- 2011-01-14
- Revision:
- 0:e381c3adaa04
- Child:
- 1:e95b703c6ad7
File content as of revision 0:e381c3adaa04:
#include "Task.h"
Task::Task()
{
interval = DEFAULT_INTERVAL;
}
Task::Task(int _interval)
{
interval = _interval;
}
void Task::start()
{
ticker.attach_us(this, &Task::preTick, interval);
}
void Task::preTick()
{
this->tick();
}