| 110 | | 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. |
| | 110 | 4. Some apps may have //stime// function call that is no longer supported. This code should be updated to use //clock_settime//. For example: |
| | 111 | {{{#!c++ |
| | 112 | // stime(&rawtime); |
| | 113 | struct timespec ts; |
| | 114 | ts.tv_sec = rawtime; |
| | 115 | ts.tv_nsec = 0; |
| | 116 | clock_settime(CLOCK_REALTIME, &ts); |
| | 117 | }}} |
| | 118 | |
| | 119 | 5. 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. |