Using AppName
Posted: Fri May 22, 2015 8:18 am
In my Nano application I changed AppName from a fixed constant string to a variable. And while it works for
my application, neither AutoUpdate nor the Eclipse IDE show the string. I was curious why that is.
my application, neither AutoUpdate nor the Eclipse IDE show the string. I was curious why that is.
Code: Select all
char AppName[64];
...
siprintf( AppName, "EXC v%s ser#%s", FormatFWVersion(buf,true), SS->serial_no );
StartEthernet();
...