Watchdog: fix include paths - use module name

pull/10857/head
Martin Kojtal 2019-06-28 11:06:06 +01:00
parent a63a54680c
commit 28398e6254
2 changed files with 5 additions and 5 deletions

View File

@ -16,8 +16,8 @@
*/
#ifdef DEVICE_WATCHDOG
#include "VirtualWatchdog.h"
#include "Watchdog.h"
#include "drivers/VirtualWatchdog.h"
#include "drivers/Watchdog.h"
namespace mbed {

View File

@ -20,10 +20,10 @@
#ifdef DEVICE_WATCHDOG
#include "mbed_error.h"
#include "mbed_assert.h"
#include "platform/mbed_error.h"
#include "platform/mbed_assert.h"
#include "platform/mbed_critical.h"
#include "watchdog_api.h"
#include "hal/watchdog_api.h"
#include "platform/NonCopyable.h"
#include "platform/SingletonPtr.h"
#include "drivers/LowPowerTicker.h"