Changes between Version 44 and Version 45 of Projects/GSoC/ApplicationConfigurationGUI


Ignore:
Timestamp:
12/02/14 09:49:01 (9 years ago)
Author:
Chris Johns
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Projects/GSoC/ApplicationConfigurationGUI

    v44 v45  
    5858It is responsible for opening the first dialog box.
    5959The first dialog box has a Open button in it.
    60 On clicking the open button, the function OnOpen is called.
    61 The OnOpen function is responsible for
     60On clicking the open button, the function !OnOpen is called.
     61The !OnOpen function is responsible for
    6262
    6363a) Getting the path of conf.t 
     
    7575Now according to user input the following cases may arise-
    7676
    77 a) The user presses Save button. In this case the OnSave function will be called. The OnSave function makes use of Python's config parser module and writes the pair (macro name, current value) into the configuration.ini file.
    78 
    79 b) The user presses the Check button. In this case the OnCheck function will be called. The OnCheck function uses regular expressions to see whether the macro values are in format or not.
    80 
    81 c) The user presses the Load button.The OnLoad function is called. In this case the values stored in the configuration.ini file are loaded into the GUI.
    82 
    83 d) The user presses the Generate button. The OnGenerate function is called. In this case the create_header function will be called which is present in the Generator.py. The Generator.py sees if the value is same as the older value or the user has changed it. In case the user has changed the value, then it gets written into the header file.
     77a) The user presses Save button. In this case the !OnSave function will be called. The !OnSave function makes use of Python's config parser module and writes the pair (macro name, current value) into the configuration.ini file.
     78
     79b) The user presses the Check button. In this case the !OnCheck function will be called. The !OnCheck function uses regular expressions to see whether the macro values are in format or not.
     80
     81c) The user presses the Load button.The !OnLoad function is called. In this case the values stored in the configuration.ini file are loaded into the GUI.
     82
     83d) The user presses the Generate button. The !OnGenerate function is called. In this case the create_header function will be called which is present in the Generator.py. The Generator.py sees if the value is same as the older value or the user has changed it. In case the user has changed the value, then it gets written into the header file.
    8484= Using generated header with Applications =
    8585
     
    135135
    136136These 2 sections would be of great help for learning how to compile and run the application-
    137 -> http://www.rtems.org/wiki/index.php/Example_Application_Compiling
    138 -> http://www.rtems.org/wiki/index.php/Quick_Start
     137* https://devel.rtems.org/wiki/TBR/UserManual/Example_Application_Compiling
     138* https://devel.rtems.org/wiki/TBR/UserManual/Quick_Start
    139139
    140140Here I would take SPARC for the purpose of compiling.