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.
So show what you actually did - noting the instructions for posting source code: http://www.keil.com/forum/tips.asp
I want to use following code and at this time create only one option
//*** <<< Use Configuration Wizard in Context Menu >>> *** // <h> External Bus Interface (EBI) // // <q1.4> DRP: // // </h> //*** <<< end of configuration section >>> ***
but when I build, it creates nothing, no tab(for configuration wizard). Do I need any more setting within keil 5?! Thanks
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.
Thanks a lot....it works!