memcpy(pToBuffer, pFromBuffer, nBytesToCopy)
Function copies characters from 'pFromBuffer' to 'pToBuffer'. ‘nBytesToCopy’ is the number of bytes to copy. Function is identical to the functions found in conventional C 'string.h' library.
memset(pBuffer, nValue, nBytesToSet)
Sets a block of memory at ‘pBuffer’ to the value ‘nValue’. ‘nBytesToSet’ is the number of bytes to set.
This is a useful function for initializing the value of an array to all zeros.
Function is identical to the functions found in conventional C 'string.h'
library.
Version Contains the firmware version number