This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

MIcrocontroller based serial debugger

hii
The name of our project is 'microcontroller based serial debugger',it consists of AT89s51 microcontroller and a LCD display
the idea of the proj is that by using 1 main debugger program we have to control the LCD rolling display program.first we have write the debugger program and right below that is application program ie.the LCD program...which has to b writtten in keil.it is like to control 1 program with the help of debugger program...
by debugging we have to show,the register values and memory values at particular location of LCD program and add breakpoints , watchpoints in that LCD program...
and the output is to b shown in hyperterminal of windows...by serial communication...
we are using embedded C language for programming..
v need the logic how go abt ???
plss you guide us through this..
thanxs..

Parents
  • "we are using embedded C language for programming"

    Because of the detailed access required to CPU registers, state, etc, you will certainly also need to use assembler for parts of this.

    "hyperterminal of windows"

    Note that XP was the last Windows version to include Hyperterminal.

    But why would it be in any way specific to any particular terminal emulator?

    "v need the logic how go abt"

    Note that this will require very careful attention to the fine detail of how programs in general - and 'C' programs in particular - run & use memory, etc, on the target.
    I you can't even manage the detail of writing complete words like "we" and "about", are you sure that you can manage this...?

Reply
  • "we are using embedded C language for programming"

    Because of the detailed access required to CPU registers, state, etc, you will certainly also need to use assembler for parts of this.

    "hyperterminal of windows"

    Note that XP was the last Windows version to include Hyperterminal.

    But why would it be in any way specific to any particular terminal emulator?

    "v need the logic how go abt"

    Note that this will require very careful attention to the fine detail of how programs in general - and 'C' programs in particular - run & use memory, etc, on the target.
    I you can't even manage the detail of writing complete words like "we" and "about", are you sure that you can manage this...?

Children