📄 terminal.c
字号:
// $Id: Terminal.C,v 1.2.4.1 2003/08/18 22:09:46 cssharp Exp $/* * $Id: Terminal.C,v 1.2.4.1 2003/08/18 22:09:46 cssharp Exp $ * **************************************************************************** * * uisp - The Micro In-System Programmer for Atmel AVR microcontrollers. * Copyright (C) 1999, 2000, 2001, 2002, 2003 Uros Platise * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * **************************************************************************** *//* Terminal.C Device Terminal Access Uros Platise (c) 1999*/#include "config.h"#include <stdio.h>#include <string.h>#include "Global.h"#include "Error.h"#include "Terminal.h"#include "MotIntl.h"void TTerminal::Run(){#if 0 enableAvr (); if (isDeviceLocked ()) { char q[20]; printf ("Do you want to clear it and enter normal mode now " "(enter y for yes): "); if (fgets (q,sizeof(q),stdin)) { if (q[0]=='y') { chipErase (); } else { return; } } }#endif printf ("Entering the AVR Terminal. ?-help, q-quit.\n"); char cmd[32]; TAddr addr = 0; do { try { printf("avr> "); scanf("%s",cmd); if (!strcmp(cmd,"?")){ printf ("AVR Terminal supports the following commands:\n" "ul fileName - uploads data from Motorola/Intel format.\n" "vf fileName - verify file with memory\n"/* "dl fileName[%segs] - downloads data to Micro Output File\n"*/ "ls - list segments\n" "ss seg_name - set segment\n" "ce - perform chip erase\n" "rd addr - read a byte from a segment\n" "wr addr byte - write a 'byte' to a segment at address 'addr'\n" "du addr - dump segment starting at address 'addr'\n" ", - continue segment dump\n" "\n" "Written by Uros Platise (c) 1997-1999, uros.platise@ijs.si\n"); } else if (!strcmp(cmd,"ul")) { char inputFileName [64]; scanf ("%s", inputFileName); try{ motintl.Read(inputFileName, true, false); } catch (Error_Device& errDev) { errDev.print (); } catch (Error_C) { perror ("Error"); } } else if (!strcmp(cmd,"vf")) { char inputFileName [64]; scanf ("%s", inputFileName); try{ motintl.Read(inputFileName, false, true); } catch (Error_Device& errDev) { errDev.print (); } catch (Error_C) { perror ("Error"); } } /* else if (cmd=="dl") { char outputFileName [64]; scanf ("%s", outputFileName); try { TAout outAout (outputFileName, "wt"); download (&outAout); } catch (Error_Device& errDev) { errDev.print (); } catch (Error_C) { perror ("Error"); } }*/ else if (!strcmp(cmd,"ls")){ printf("Available segments: "); const char* seg_name; for (unsigned i=0; (seg_name=device->ListSegment(i))!=NULL; i++){ if (i>0){printf(", ");} printf("%s", seg_name); } putchar('\n'); } else if (!strcmp(cmd,"ss")){ char seg_name [32]; scanf("%s", seg_name); if (!device->SetSegment(seg_name)){ printf("Invalid segment: `%s'\n", seg_name); } else {addr=0;} } else if (!strcmp(cmd,"ce")){ device->ChipErase(); }/* else if (cmd=="rsb") { unsigned char byte = readLockBits (); printf ("Lock and Fuse bits status: %.2x\n", byte ); } else if (cmd=="wlb") { string mode; cin >> mode; if (mode=="wr") { writeLockBits (lckPrg); } else if (mode=="rdwr") { writeLockBits (lckPrgRd); } else { printf ("Invalid parameter: %s\n", mode); } }*/ else if (!strcmp(cmd,"rd")){ scanf ("%x", &addr); printf("%s: $%.2x\n", device->TellActiveSegment(), device->ReadByte(addr)); } else if (!strcmp(cmd,"wr")){ unsigned x; scanf("%x%x", &addr, &x); device->WriteByte(addr, TByte(x)); } else if (!strcmp(cmd,"du")){ scanf ("%x", &addr); goto list_contents; } else if (!strcmp(cmd,",")){list_contents: int i,l=0; while (l<4) { printf ("%s $%.5x: ", device->TellActiveSegment(), addr); for (i=0; i<0x8; addr++,i++) printf ("%.2x ", device->ReadByte(addr)); printf ("\n"); l++; } } else printf ("Ouch.\n"); } catch (Error_MemoryRange){Info(0,"Out of memory range!\n");putchar('\n');} } while (strcmp(cmd,"q"));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -