Discussion to talk about software related topics only.
SeeCwriter
Posts: 630 Joined: Mon May 12, 2008 10:55 am
Post
by SeeCwriter » 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.
Code: Select all
char AppName[64];
...
siprintf( AppName, "EXC v%s ser#%s", FormatFWVersion(buf,true), SS->serial_no );
StartEthernet();
...
pbreed
Posts: 1088 Joined: Thu Apr 24, 2008 3:58 pm
Post
by pbreed » Fri May 22, 2015 10:32 am
In your code add:
extern const char *AppName;
const char * AppName;
char MyAppNameBuffer[64];
In your code:
iprintf( AppName, "EXC v%s ser#%s", FormatFWVersion(buf,true), SS->serial_no );
AppName=MyAppNameBuffer;
And see if that fixes things...