Unique ID counter


Closed Thread
Results 1 to 11 of 11

Hybrid View

  1. #1
    Join Date
    Feb 2006
    Location
    Gilroy, CA
    Posts
    1,530


    Did you find this post helpful? Yes | No

    Default Re: Unique ID counter

    If they are all to carry the same firmware, you can have Microchip program them for you, for a fee. They can program a unique serial number using their Serialized Quick-Turn Programming (SQTP) . But, it might be cheaper to buy a MeLabs programmer
    http://www.scalerobotics.com

  2. #2
    Join Date
    Sep 2009
    Posts
    755


    Did you find this post helpful? Yes | No

    Default Re: Unique ID counter

    If you are good in windows programing, try to create VBS, or some .exe, that will change that values in hex file, and send it to programmer, using command line option to start programmer.
    It should be easy job...
    Something like this vbs
    Code:
    Dim i as integer
    strbuff as string
    For i = 0 to 65535
    Open SorceHexPath For Input As #1
        Input #1, strbuff
    Close #1
    
    'Find & Change eeprom value
    
    Open EditedHexPath For Input As #1
        print #1,strbuff
    Close #1
    Shell programerpath -pPIC etc....
    Next i

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts