uniqueCPUID

Fork of uniqueCPUID by Joseph Ellsworth

uniqueCPUID.cpp

Committer:
joeata2wh
Date:
2016-03-30
Revision:
2:08766dc8051a
Parent:
0:b9461291f915
Child:
3:8ebd7b354018

File content as of revision 2:08766dc8051a:

#include "mbed.h"
#include "uniqueCPUID.h"

/*
  By Joseph Ellsworth CTO of A2WH
  Take a look at A2WH.com Producing Water from Air using Solar Energy
  March-2016 License: https://developer.mbed.org/handbook/MIT-Licence 
  Please contact us http://a2wh.com for help with custom design projects.
*/

void getUniqueIDAsStr(char *destStr)
{
    unsigned long *Unique = uniqueSerialAddr;
    sprintf(destStr, "S%luX%luX%luX\000", Unique[0], Unique[1], Unique[2]);
}


void printUniqueId(Serial pc) {
    unsigned long *Unique = uniqueSerialAddr;
    printf("Simple Serial# %08luX %08luX %08luX\n", Unique[0], Unique[1], Unique[2]);
}