Changes between Version 160 and Version 161 of Docs/825gen2/Dev/UpdatingLegacyApps


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

--

Legend:

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

    v160 v161  
    127127== Debugging ==
    128128
     129SSH into the 825 Gen2 indicator. For example, if the 825 Gen2 IP address is 10.1.2.230:
     130{{{
     131PS C:\> ssh admin@10.1.2.230
     132admin@10.1.2.230's password:
     133card825gen2:~$
     134}}}
     135
     136Setup the indicator close any currently running app and connect to the VM. For example if the 825 development environment VM is IP address 10.1.2.75:
     137{{{
     138card825gen2:~$ . test825 10.1.2.75
     139}}}
     140// Be sure to include the "." period before test825.//
     141{{{
     142card825gen2:~$ cd /mnt/nfs/arm825/mnt/nand/apps/myapp
     143}}}
     144Run the debug build
     145{{{
     146./myapp_dbg
     147}}}
     148
     149
    129150Before 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)
    130151{{{