Helpful logging and error format

Dependents:   Waldo_Embed_V2

Inspired by this blog post.

Work in Progress

Revision:
0:3054bbdace4c
Child:
1:491d2a7f4207
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LogUtil.cpp	Fri Mar 29 17:36:50 2013 +0000
@@ -0,0 +1,34 @@
+/**
+ * @file    LogUtil.cpp
+ * @brief   Utility to log messages during runtime
+ * @author  sam grove
+ * @version 1.0
+ * @see     http://www.drdobbs.com/cpp/a-lightweight-logger-for-c/240147505?pgno=2
+ *
+ * Copyright (c) 2013
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+ 
+ #include "LogUtil.h"
+ #include "mbed.h"
+ 
+ LogUtil::LogUtil()
+ {
+    Serial debug(USBTX, USBRX);
+    debug.baud(921600);
+    
+    return;
+ }
+ 
+ 
\ No newline at end of file