Changes between Version 15 and Version 16 of Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook
- Timestamp:
- 02/08/24 14:39:53 (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook
v15 v16 5 5 Otherwise, follow the below steps. 6 6 7 1. Copy the files apphelpers.cpp, apphelpers.h, and appinfo.h from one of the new standard projects such as ID storage into the project to update. 8 9 2. Copy code for main screen features such as below: 7 1. If it has not been done yet create build configurations for the project: Debug-ARM825, Release-ARM825, and Debug-ARM825-SIM. 8 9 2. Copy the files apphelpers.cpp, apphelpers.h, and appinfo.h from one of the new standard projects such as ID storage into the project to update. 10 11 3. Copy code for main screen features such as below: 10 12 11 13 {{{ … … 129 131 }}} 130 132 131 3. Find the InitLCD function call and change as follows:133 4. Find the InitLCD function call and change as follows: 132 134 133 135 {{{ … … 153 155 }}} 154 156 155 4. Modify functions that do display operations such as shown:157 5. Modify functions that do display operations such as shown: 156 158 157 159 {{{ … … 181 183 }}} 182 184 183 5. Search for all menu and inputs forms such as search for "FORM_INIT" make appropriate changes to use new style FORM_ADD_INPUT2 instead of FORM_ADD_INPUT and FORM_ADD_BUTTON2 instead of FORM_ADD_BUTTON such as:185 6. Search for all menu and inputs forms such as search for "FORM_INIT" make appropriate changes to use new style FORM_ADD_INPUT2 instead of FORM_ADD_INPUT and FORM_ADD_BUTTON2 instead of FORM_ADD_BUTTON such as: 184 186 185 187 {{{