Changes between Version 15 and Version 16 of Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook


Ignore:
Timestamp:
02/08/24 14:39:53 (10 months ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/UpdatingLegacyAppsToNewLook

    v15 v16  
    55Otherwise, follow the below steps.
    66
    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:
     71. If it has not been done yet create build configurations for the project: Debug-ARM825, Release-ARM825, and Debug-ARM825-SIM.
     8
     92. 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
     113. Copy code for main screen features such as below:
    1012
    1113{{{
     
    129131}}}
    130132
    131 3. Find the InitLCD function call and change as follows:
     1334. Find the InitLCD function call and change as follows:
    132134
    133135{{{
     
    153155}}}
    154156
    155 4. Modify functions that do display operations such as shown:
     1575. Modify functions that do display operations such as shown:
    156158
    157159{{{
     
    181183}}}
    182184
    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:
     1856. 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:
    184186
    185187{{{