Added SerialWireOutput to mbed namespace

pull/6427/head
George Beckstein 2018-03-22 12:35:54 -04:00 committed by GitHub
parent 9932b4c983
commit d3ab5c7e59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -19,8 +19,12 @@
#include "hal/itm_api.h"
#include "platform/FileHandle.h"
namespace mbed {
class SerialWireOutput : public FileHandle {
public:
SerialWireOutput(void)
{
/* Initialize ITM using internal init function. */
@ -68,4 +72,6 @@ public:
}
};
} // namespace mbed
#endif