Welcome new user! You can search existing questions and answers without registering, but please register to post new questions and receive answers. Note that due to large amounts of spam attempts, your first three posts will be manually moderated, so please be patient.
We have moved to a new forum at http://jevois.usc.edu, please check it out. The forum at jevois.org/qa will not allow new user registrations but is maintained alive for its useful past questions and answers.
Welcome to JeVois Tech Zone, where you can ask questions and receive answers from other members of the community.

Our jevois crashes whenever we run any code except the code it comes with

0 votes
Whenever we try to run our Grip pipeline generated python code on the Jevois it crashes after about 13 seconds. I was wondering if this issue is software related or if we have faulty hardware and need a replacement.
asked Feb 20, 2018 in Programmer Questions by Robocats3712 (120 points)

1 Answer

0 votes
If it works with the baseline code, then hardware issues are unlikely (the base modules that ship with JeVois exercise it very thoroughly). Maybe your issue is that you are sending some text messages out of the serial-over-USB port, but that port starts blocking after a while if there is nobody on the host computer to listen to the messages.

If you have a script.cfg file in your module's directory, or if you have mofified initscript.cfg in JEVOIS:/config/ on your microSD card, make sure you have

setpar serout Hard

setpar serlog None

and also check for params.cfg in the module's directory. Have a look at this related post:

http://jevois.org/qa/index.php?qa=1712&qa_1=video-output-freezes-on-two-different-camera
answered Feb 20, 2018 by JeVois (46,580 points)
...