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.
SwTimer.cpp
- Committer:
- hodgins
- Date:
- 2019-01-24
- Revision:
- 1:a7bdc6b05f96
- Parent:
- 0:e541909ea6b0
File content as of revision 1:a7bdc6b05f96:
#include "SwTimer.h"
//Metóda vracia hodnotu, či už časovať nadobudol požadovanú hodnotu
bool SwTimer::isExpired(){
return GlTimeFn() >= (endTime);
}
//Inicializácia časovača
void SwTimer::startTimer(unsigned int delay){
_delay=delay;
endTime = GlTimeFn() + delay;
}
//Reštartovanie časovača
void SwTimer::restartTimer(){
SwTimer::startTimer(_delay);
}