Changes between Version 147 and Version 148 of Docs/825gen2/Dev/UpdatingLegacyApps
- Timestamp:
- 11/19/25 12:32:47 (2 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/UpdatingLegacyApps
v147 v148 102 102 4. Also (probably rare) if the app communicates with another system by serial port, network, or file import/export that interprets the data content as binary integers, floats, etc... it may be necessary to make changes to account for different [https://en.wikipedia.org/wiki/Endianness endianness]. The 825 Gen2 is ARM-64 little-endian, The Legacy 825 is Coldfire big-endian. 103 103 104 == Debugging / Installation Package==105 106 1.Before 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)104 == Debugging == 105 106 Before 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) 107 107 {{{ 108 108 mkdir /mnt/nand/apps/<projectname> … … 120 120 }}} 121 121 122 2. In the VM /srv/nfs/arm825/mnt/nand/apps/<projectname> directory it is helpful to create a script "mktgz.sh" to generate a release package to give to customers to install the app. 122 == Installation Package == 123 124 In the VM /srv/nfs/arm825/mnt/nand/apps/<projectname> directory it is helpful to create a script "mktgz.sh" to generate a release package to give to customers to install the app. 123 125 {{{ 124 126 #!/bin/sh
![(please configure the [header_logo] section in trac.ini)](/chrome/site/cardinal.gif)