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

creating configuration wizard

Hello guys, I wanna create (GUI-like configuration controls) utility wizard for my project. I read the link blow
http://www.keil.com/support/man/docs/uv4/uv4_ut_configwizard.htm
but couldn't create any tab as usual. You know that we have two tab(Text editor and Configuration wizard). Thanks for your help.

Parents
  • Save the specified contents in a .c or .h file and open it with uVision. You should see a “Configuration Wizard” tab that you can click in order to see it in the Configuration Wizard.

    You should add also a variable that you want to control with the Configuration Wizard.

    Something like:

    //*** <<< Use Configuration Wizard in Context Menu >>> ***
    // <h> External Bus Interface (EBI)
    //
    //   <q0.4>        DRP:
    //
    // </h>
    #define EBI_SETTING0 0x10
    //*** <<< end of configuration section >>>    ***
    

    DRP checkbox controls bit 4 of the number beside the EBI_SETTING0 define.

Reply
  • Save the specified contents in a .c or .h file and open it with uVision. You should see a “Configuration Wizard” tab that you can click in order to see it in the Configuration Wizard.

    You should add also a variable that you want to control with the Configuration Wizard.

    Something like:

    //*** <<< Use Configuration Wizard in Context Menu >>> ***
    // <h> External Bus Interface (EBI)
    //
    //   <q0.4>        DRP:
    //
    // </h>
    #define EBI_SETTING0 0x10
    //*** <<< end of configuration section >>>    ***
    

    DRP checkbox controls bit 4 of the number beside the EBI_SETTING0 define.

Children