I would like to make a wizard for ARM projects.
I think the AVR wizard is a good starting point.
I miss some fundamental information about wizard scripts.
For example when are the functions SetupProject and BeginWizard get called?
O.k. I can imagine for the second....
Are there any other functions needed by every wizard?
Couldn't find that in the Wiki.
SetupProject() would be called once the BeginWizard() finishes it's job. You need to add at least two wizard pages to setup a project through Wizard script. They are-
Wizard.AddProjectPathPage();
Wizard.AddCompilerPage();
They should be placed inside BeginWizard() function.
Hope this helps.
Regards,
Biplab
P.S.: You'll have to bear with my late reply.