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

monitor download

Does anyone know if it is necessary to make monitor start code to 0x0 with micro vision 2? For my part, if start code is different, even if it is free ram, monitor download abort after a while without any error message.
Thanks

Parents
  • No. It is not necessary to make the monitor start at 0. There are 2 parts to the Keil monitor: boot and monitor.

    The on-chip boot loader loads the Keil boot (which is another boot loader) at a specific address. Then, boot, loads and runs the monitor.

    The progress bar that shows the download % complete, includes the boot, the monitor, and the user program.

    If your monitor aborts in the middle of the download, what is probably happening is that the user program overwrites the monitor or the monitor is not correctly configured for the hardware.

    Most C16x problems come from improperly configured startup code. So, check this carefully.

    Jon

Reply
  • No. It is not necessary to make the monitor start at 0. There are 2 parts to the Keil monitor: boot and monitor.

    The on-chip boot loader loads the Keil boot (which is another boot loader) at a specific address. Then, boot, loads and runs the monitor.

    The progress bar that shows the download % complete, includes the boot, the monitor, and the user program.

    If your monitor aborts in the middle of the download, what is probably happening is that the user program overwrites the monitor or the monitor is not correctly configured for the hardware.

    Most C16x problems come from improperly configured startup code. So, check this carefully.

    Jon

Children