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 set the buttons in the toolbox of simulation target?

Hello
I run the measure project in the folder C:\Keil\ARM\RV30\Examples\Measure and I found that if the target is simulation, a tool box containing "Update windows", "My status Info", "Analog0 0..3V","Stop Analog0" items appears. I tried to find what defines the itmes in the tool box and I found that they are defined in the Measure.Opt as
OPTBT 0,(My Status Info)(MyStatus())
OPTBT 1,(Analog0 0..3V)(Analog0(3.0))
OPTBT 2,(Stop Analog0)(signal kill analog0). But I don't know how to set the items in the tool box by GUI of Keil IDE. Will someone tell me how to do? Thanks.

Parents
  • The buttons were defined as described in the User's guide (via the command window) when the example project was created and were saved automatically in the uVision project file.

    This means that whenever a button is defined it is also saved in the project file and you don't need to define it again (for example in an ini file).

Reply
  • The buttons were defined as described in the User's guide (via the command window) when the example project was created and were saved automatically in the uVision project file.

    This means that whenever a button is defined it is also saved in the project file and you don't need to define it again (for example in an ini file).

Children