mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #6427 from AGlass0fMilk/SWO-mbed-namespace
Added SerialWireOutput to mbed namespacepull/6442/head
commit
e79060f9cf
|
@ -19,8 +19,12 @@
|
||||||
#include "hal/itm_api.h"
|
#include "hal/itm_api.h"
|
||||||
#include "platform/FileHandle.h"
|
#include "platform/FileHandle.h"
|
||||||
|
|
||||||
|
namespace mbed {
|
||||||
|
|
||||||
class SerialWireOutput : public FileHandle {
|
class SerialWireOutput : public FileHandle {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
SerialWireOutput(void)
|
SerialWireOutput(void)
|
||||||
{
|
{
|
||||||
/* Initialize ITM using internal init function. */
|
/* Initialize ITM using internal init function. */
|
||||||
|
@ -68,4 +72,6 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
} // namespace mbed
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue