From fa3e37f75d703e9a7bfae7b8ec08f63af526b478 Mon Sep 17 00:00:00 2001 From: Steven Cartmell Date: Tue, 27 Mar 2018 15:31:23 +0200 Subject: [PATCH] Add Watchdog and ResetReason headers to mbed.h Adding headers to mbed.h will prevent you having to manually include them when using the drivers in an application. --- mbed.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mbed.h b/mbed.h index b66b6b77e1..3272ca56d6 100644 --- a/mbed.h +++ b/mbed.h @@ -76,6 +76,8 @@ #include "drivers/QSPI.h" // mbed Internal components +#include "drivers/ResetReason.h" +#include "drivers/Watchdog.h" #include "drivers/Timer.h" #include "drivers/Ticker.h" #include "drivers/Timeout.h"