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

How to include a Hex along with C codes in uv2 simulator?

Hi, there,

I want to use uv2 to debug a system consisting of a set of C codes and one hex file. The C codes will read the data from this hex file.

In uv2, I have created a project for this set of C codes, I can debug/trace the their execution.

The question is how to include the Hex file into this project?

Plausible solution 1, I added the Hex file into the project along with the C codes, and specify the Hex file's type as "Text file". The C codes could *not* read the data from the Hex file correctly.

Plausible solution 2, in the "Options for Task" popup utility, there is a Linker panel. However, I didn't figure out where to put the Hex file.

Any suggestion?

For details of my task, please refer to the following discussion thread.

http://www.keil.com/forum/docs/thread3564.asp

Kan

Parents
  • "a byte(int) array."

    BEWARE: In C51, an int is two bytes!

    "when I want to change the content of the Hex file. I have to re-generate the C code, and then rebuilt the projects."

    If you can automate the C-code generation, you can include this in the Project by using a Custom Translation - see the uVision Manual

Reply
  • "a byte(int) array."

    BEWARE: In C51, an int is two bytes!

    "when I want to change the content of the Hex file. I have to re-generate the C code, and then rebuilt the projects."

    If you can automate the C-code generation, you can include this in the Project by using a Custom Translation - see the uVision Manual

Children