Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: debug_tools/debug_lpc1114.cpp
- Revision:
- 4:76b3113c79ff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/debug_tools/debug_lpc1114.cpp Sun Dec 14 09:17:01 2014 +0000
@@ -0,0 +1,146 @@
+/*
+ * mbed Application program
+ *
+ * Copyright (c) 2010-2014 Kenji Arai / JH1PJL
+ * http://www.page.sannet.ne.jp/kenjia/index.html
+ * http://mbed.org/users/kenjiArai/
+ * Created: May 15th, 2010
+ * Spareted: June 25th, 2014 mon() & mon_hw()
+ * Ported: September 22nd, 2014 from L152RE, LP1114
+ * changed: October 15th, 2014 mon.cpp to debug_xxx.cpp
+ * Revised: Nobember 2nd, 2014
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+ * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
+ * AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+
+#if defined(TARGET_LPC1114)
+
+// Include ---------------------------------------------------------------------------------------
+#include "mbed.h"
+#include "debug_common.h"
+
+// Object ----------------------------------------------------------------------------------------
+
+// Definition ------------------------------------------------------------------------------------
+
+// RAM -------------------------------------------------------------------------------------------
+
+// ROM / Constant data ---------------------------------------------------------------------------
+
+// Function prototypes ---------------------------------------------------------------------------
+extern void cpu_inf (void);
+
+//-------------------------------------------------------------------------------------------------
+// Control Program
+//-------------------------------------------------------------------------------------------------
+// Help Massage
+void msg_hlp (void)
+{
+ PRINTF(mon_msg);
+ put_rn();
+ PRINTF("1 - goto step1 -> no connection all pins");
+ put_rn();
+ PRINTF("2 - goto step2 -> connects pin_x and pin_y");
+ put_rn();
+ PRINTF("x - Goto HW monitor");
+ put_rn();
+ PRINTF("q - Return to main");
+ put_rn();
+}
+
+// ---------- Program starts here! ---------------------------------------------------------------
+void debug_interface(void)
+{
+ char *ptr;
+ uint8_t quitflag;
+
+ BAUD(BAUD_RATE);
+ put_rn();
+ put_rn();
+ PRINTF("%s [Help:'?' key]", mon_msg);
+ put_rn();
+ for (;;) {
+ put_r();
+ PUTC('>');
+ ptr = linebuf;
+ get_line(ptr, sizeof(linebuf));
+ switch (*ptr++) {
+ //---------------------------------------------------------------------------------
+ // Debug Step1
+ //---------------------------------------------------------------------------------
+ case '1' :
+ put_r();
+ PRINTF("Enter Step1: no connection all pins");
+ put_rn();
+ quitflag = 0;
+ for (; quitflag != 0xff;) {
+ PRINTF("1>");
+ ptr = linebuf;
+ get_line(ptr, buf_size);
+ put_r();
+ switch(*ptr++) {
+ case 's' :
+ PRINTF("----- CPU CLOCK Information -----");
+ put_rn();
+ get_freq(1);
+ PRINTF("----- CPU TYPE Information ------");
+ put_rn();
+ cpu_inf();
+ break;
+ case '?' :
+ PRINTF("s - CPU system info & clock");
+ put_rn();
+ PRINTF("q - Return to all mode");
+ put_rn();
+ PRINTF("? - You know this");
+ put_rn();
+ break;
+ case 'q' : // quit
+ PRINTF("Back to all mode");
+ quitflag = 0xff;
+ break;
+ default:
+ PUTC('?');
+ put_rn();
+ }
+ }
+ put_rn();
+ break;
+ //---------------------------------------------------------------------------------
+ // help
+ //---------------------------------------------------------------------------------
+ case '?' :
+ put_r();
+ msg_hlp();
+ break;
+ //---------------------------------------------------------------------------------
+ // Go to special command
+ //---------------------------------------------------------------------------------
+ case 'x' :
+ mon_hw();
+ PRINTF("->Came back monitor\r\n");
+ break;
+ //---------------------------------------------------------------------------------
+ // Go back to main()
+ //---------------------------------------------------------------------------------
+ case 'q' : // Quit
+ PRINTF("\rReturn to main\r\n");
+ //PRINTF("cannot control anymore from here\r\n");
+ return;
+ //---------------------------------------------------------------------------------
+ // no support
+ //---------------------------------------------------------------------------------
+ default:
+ put_r();
+ PUTC('?');
+ put_rn();
+ break;
+ }
+ }
+}
+
+#endif // defined(TARGET_LPC1114)