unittest: rename watchdog to VirtualWatchdog

pull/11023/head
Martin Kojtal 2019-06-28 12:06:39 +01:00
parent bc8fc539b6
commit f30558bb37
1 changed files with 8 additions and 8 deletions

View File

@ -16,38 +16,38 @@
*/ */
#ifdef DEVICE_WATCHDOG #ifdef DEVICE_WATCHDOG
#include "Watchdog.h" #include "VirtualWatchdog.h"
namespace mbed { namespace mbed {
Watchdog *Watchdog::_first; VirtualWatchdog *VirtualWatchdog::_first;
Watchdog::Watchdog(uint32_t timeout, const char *const str): _name(str) VirtualWatchdog::VirtualWatchdog(uint32_t timeout, const char *const str): _name(str)
{ {
} }
void Watchdog::start() void VirtualWatchdog::start()
{ {
} }
void Watchdog::kick() void VirtualWatchdog::kick()
{ {
} }
void Watchdog::stop() void VirtualWatchdog::stop()
{ {
} }
void Watchdog::process(uint32_t elapsed_ms) void VirtualWatchdog::process()
{ {
} }
Watchdog::~Watchdog() VirtualWatchdog::~VirtualWatchdog()
{ {
} }