First step: AutoIP compiled in and working

Dependencies:   mbed

Revision:
1:4218cacaf696
Parent:
0:55a05330f8cc
diff -r 55a05330f8cc -r 4218cacaf696 dbg/dbg.cpp
--- a/dbg/dbg.cpp	Fri Jun 18 09:11:35 2010 +0000
+++ b/dbg/dbg.cpp	Fri Jun 18 15:54:21 2010 +0000
@@ -54,6 +54,14 @@
   //fclose(m_fp);
 }
 
+void DebugStream::breakPoint(const char* file, int line)
+{
+  printf("\r\nBREAK in %s at line %d\r\n", file, line);
+  fflush(stdout);
+  getchar();
+  fflush(stdin);
+}
+
 /*
 int snprintf(char *str, int size, const char *format, ...)
 {