-
Notifications
You must be signed in to change notification settings - Fork 5
Adding feature to return current waypoint index #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
|
Okay, so if you build with dependencies in netbeans, it passes all the tests. If you don't, it fails a test or two. I did test this in the field with the core lib jar built with dependenices and it functions as intended. So i'm not sure how to classify it. The "NOT FUNCTIONAL" commit message isn't correct, at least. I tried to update the commit message, but my git-fu was too weak. |
…o be compiled with dependencies to pass the tests.
|
Why would my update cause this test to fail: |
|
It might be a race condition in the test code networking that just makes it fail at random. We can rerun the test and if it passes, it should be good. |
| public void captureImage(int width, int height, FunctionObserver<byte[]> obs); | ||
|
|
||
| public void addCameraListener(CameraListener l, FunctionObserver<Void> obs); | ||
| public void addCameraListener(CameraListener l, FunctionObserver<Void> obs); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix indent
| public void addImageListener(ImageListener l, FunctionObserver<Void> obs); | ||
| public void removeImageListener(ImageListener l, FunctionObserver<Void> obs); | ||
| public void captureImage(int width, int height, FunctionObserver<byte[]> obs); | ||
| public void captureImage(int width, int height, FunctionObserver<byte[]> obs); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix indent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looking at the file now, the indent is not right after your fix either.
| public void isConnected(FunctionObserver<Boolean> obs); | ||
| public void isAutonomous(FunctionObserver<Boolean> obs); | ||
| public void isConnected(FunctionObserver<Boolean> obs); | ||
| public void isAutonomous(FunctionObserver<Boolean> obs); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix the damn indents
| public void getVelocity(FunctionObserver<Twist> obs); | ||
|
|
||
| public void addWaypointListener(WaypointListener l, FunctionObserver<Void> obs); | ||
| public void addWaypointListener(WaypointListener l, FunctionObserver<Void> obs); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix indent
| public void stopWaypoints(FunctionObserver<Void> obs); | ||
| public void getWaypoints(FunctionObserver<UtmPose[]> obs); | ||
| public void getWaypointStatus(FunctionObserver<WaypointState> obs); | ||
| public void getWaypointsIndex(FunctionObserver<Integer> obs); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix indent
|
|
||
| public void isConnected(FunctionObserver<Boolean> obs); | ||
| public void isAutonomous(FunctionObserver<Boolean> obs); | ||
| public void isConnected(FunctionObserver<Boolean> obs); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix indent
Needs testing.