Start: 10:00
Data Dictionary:
- Found that you can’t compare char* directly. First tried strcmp(char* first, char*second) but found this only compares the first char in string.
- strncmp(char* first, char*second, size) is the way to go. Was originally using a defined maximum but Phil told me it would be better to make sure the string length is equal first then set the size to the string length.
- getData(char* name) implemented
- deleteItem(char * name) implemented
- added toString() to print out current contents
Com Console:
- Cleared all test code
- Added sendBuffer and recieveBuffer to ComMgr
- Added toBuffer methods to command, response, and state classes.
End: 6:30
