Several small fixes

- Added Visual Studio solution for C client example.
 - Fixed inconsistent indentation in C client example.
 - Changed default behavior in MATLAB client's sendCTRL function to leave unchanged instead of setting default values.
 - Fixed sendPOSI and sendDATA sections of the MATLAB example.
 - Fixed port number in the C and C++ setCONN tests.
This commit is contained in:
Jason Watkins
2015-03-30 13:38:51 -07:00
parent d199bd0089
commit 85fdcbe3dc
8 changed files with 257 additions and 135 deletions

View File

@@ -461,7 +461,7 @@ short connTest() // setConn test
// Set up for next test
sendPort = openUDP( 49067, "127.0.0.1", 49009 );
setCONN(sendPort, 49009);
setCONN(sendPort, 49008);
closeUDP(sendPort);
return 0;
}