From 91aab99727bd0f98a57858fb220864f24a7a6024 Mon Sep 17 00:00:00 2001 From: Hasnain Virk Date: Wed, 31 May 2017 15:01:37 +0300 Subject: [PATCH] Add APIs to namespace mbed Certain public APIs are being added to mbed.h so as to make them part of namespace mebd. APIs being added are: * drivers/UARTSerial.h * platform/ATCmdParser.h * platform/mbed_poll.h * netsocket/nsapi_ppp.h --- mbed.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mbed.h b/mbed.h index e4963c9ede..e1d3b54010 100644 --- a/mbed.h +++ b/mbed.h @@ -22,6 +22,7 @@ #if MBED_CONF_NSAPI_PRESENT #include "netsocket/nsapi.h" +#include "netsocket/nsapi_ppp.h" #endif #if MBED_CONF_EVENTS_PRESENT @@ -67,6 +68,7 @@ #include "drivers/Ethernet.h" #include "drivers/CAN.h" #include "drivers/RawSerial.h" +#include "drivers/UARTSerial.h" #include "drivers/FlashIAP.h" // mbed Internal components @@ -82,6 +84,8 @@ #include "hal/sleep_api.h" #include "platform/mbed_sleep.h" #include "platform/mbed_rtc_time.h" +#include "platform/mbed_poll.h" +#include "platform/ATCmdParser.h" // mbed Non-hardware components #include "platform/Callback.h"