View Single Post
  #4   Spotlight this post!  
Unread 02-02-2016, 10:54
techhelpbb's Avatar
techhelpbb techhelpbb is offline
Registered User
FRC #0011 (MORT - Team 11)
Team Role: Mentor
 
Join Date: Nov 2010
Rookie Year: 1997
Location: New Jersey
Posts: 1,624
techhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond reputetechhelpbb has a reputation beyond repute
Re: GRIP needs to be reloaded each time the robot is restarted

So a few of those I mentor have been playing with GRIP.
It seems it runs a Java JAR file on the RoboRIO to talk to OpenCV.
The description of GRIP under 'How was GRIP made'

Have you listed out the processes when it is working via PuTTY and SSH?

Quote:
ps aux | grep java
The aux means:
a = show processes for all users
u = display the process's user/owner
x = also show processes not attached to a terminal

The grep will search for any line in the output that contains the work 'java'.

You should see your GRIP project name on one of the running JAVA processes something like this:

Quote:
java FindRed.jar
Then check to see if this still appears if it failed to start?
I would expect that to automatically start somewhere it must call Java to run that JAR file at restart.