Start: 10:15
- Found one of the major problems. The arduino serial buffer can only handle 128 bytes. Was using 256 which was causing an overflow.
- Adjusted all send/receive buffers down to 128. Lowered the max number of character for the data entry name to 16 characters down from 64.
- Seems that the runtime errors I was having are resolved. The arduino seems fine with a call to the getName() function but I cannot save the returned value to a char array for some reason.
End: 6:15
