Including version or build number to hex file output

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

 Hi,

   

I am currently using a  PSOC  Creator 3.0 for creating a simple psoc 4 application and I am looking for a way to add version number to the hex file properties. 

   

I tried googling for a way to this but had no luck so far.

   

Any help regarding this is highly appreciated.

   

 

   

Thanks and Regards,

   

Balu Ramamurthy

0 Likes
3 Replies
Bob_Marlowe
Level 10
Level 10
First like given 50 questions asked 10 questions asked

Welcome in the forum!

   

A PSoC contains a unique serial number which can be red out. Refer to Register TRM for your chip.

   

Nothing hinders you to define a version number and put it into flash

   

const uint8 VersionMajor  = 1; // Version definition

   

const uint8 VersionMinor  = 3  // Version is 1.3

   

or something similar.

   

 

   

Bob

0 Likes
ETRO_SSN583
Level 9
Level 9
250 likes received 100 sign-ins 5 likes given

See below, it is not unique to the die level. It is unique to the wafer lot,

   

and if there are 24 wafers in a lot then 24 parts will carry the same ID.

   

 

   

www.cypress.com/

   

 

   

Regards, Dana.

0 Likes
Anonymous
Not applicable

 Thannks for the reply Bob,

   

But I am looking to add a version number in the assembly level so that it can be seen in the properties page of the hex file in Windows.

   

Something similar to the AssemblyInfo.CS in Visual Studio.

   

Thanks and Regards,

   

Balu Ramamurthy

0 Likes