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.
clock.cpp
- Committer:
- JamB
- Date:
- 2019-04-11
- Revision:
- 0:293ea2789df6
- Child:
- 1:bb3ab1744634
File content as of revision 0:293ea2789df6:
#include "mbed.h"
#include "clock.h"
bool istick;
Ticker ticker; //class, instance of class
void tick()
{
istick=true;
}
void set_tick_(float set_tick) //constructor
{ //used to setup the clock
ticker.attach(&tick, set_tick);
}
bool tock()
{ //used to run the code
if (istick)
{
istick =false;
return true;
}
return false;
}