Changes between Version 163 and Version 164 of Docs/825gen2/Dev/UpdatingLegacyApps


Ignore:
Timestamp:
11/19/25 16:45:56 (2 days ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v163 v164  
    772. Select "File" "Import" to import legacy project such as from USB flash. Alternatively, if the project is available in an SVN repository use "File" "New" "Project" "Checkout the projects from an SVN" to checkout the project.
    88
    9 3. Use the file manager in the VM to create a directory for the resulting compiled executable such as /srv/nfs/arm825/mnt/nand/apps/<projectname>
     93. Use the file manager in the VM to create a directory for the resulting compiled executable such as /srv/nfs/arm825/mnt/nand/apps/<projectname>. It can also be helpful to set permissions so that any user can write to this directory.
    1010
    1111[[Image(825gen2_createappfolder.png)]]
     
    140140// Be sure to include the "." period before test825. This is necessary so that environment variables set with the script are retained outside of the script.//
    141141
    142 {{{
    143 card825gen2:/mnt/nfs/arm825/apps$ cd /mnt/nfs/arm825/mnt/nand/apps/myapp
    144 }}}
    145 
    146142
    147143Before running the app for debugging from SSH it will often be necessary to create a directory on the 825 Gen2 for the app's data. Check the app header files to confirm the directory the app will use for configuration and data files. (The last part of the directory should normally match the project name and the release build executable name. Some newer apps may automatically check when starting up and create the directory if it does not exist)
     
    159155   // ...
    160156}
     157}}}
     158
     159Change directory to the directory containing the app on the VM.
     160{{{
     161card825gen2:/mnt/nfs/arm825/apps$ cd /mnt/nfs/arm825/mnt/nand/apps/myapp
    161162}}}
    162163