Hi!
Article TSS000257 in Wiki Knowledge Base have оne small bug:
If application UID begin with char (a/b/c/d/e/f) then output UID printed to file begin with "ffffffff" prefix.
Example, original uid e602d449 - in file we have ffffffffe602d449
Solution:
replace
withCode:buf.AppendNum(aInfo.iUid.iUid, EHex);
Code:buf.AppendNum((TUint)appInfo.iUid.iUid, EHex);

Reply With Quote

