UDP Experiment Server

Dependents:   Bezier_Trajectory_Follower Dolphin 2_131TEST Jerby ... more

Files at this revision

API Documentation at this revision

Comitter:
pwensing
Date:
Wed Aug 12 22:21:15 2015 +0000
Parent:
3:588db37d9079
Child:
6:760b0ac3df4e
Commit message:
fixed compile error;

Changed in this revision

ExperimentServer.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/ExperimentServer.cpp	Wed Aug 12 22:20:25 2015 +0000
+++ b/ExperimentServer.cpp	Wed Aug 12 22:21:15 2015 +0000
@@ -86,6 +86,6 @@
 }
 void ExperimentServer::setExperimentComplete() {
     flushBuffer();
-    char buff = {'0'};
+    char buff[] = {'0'};
     _server.sendTo(_client,buff,1);
 }   
\ No newline at end of file