I have been trying to get Serial output from the JeVois using the sendSerial() command. I have a simple "sendSerial(std::to_string(i))" where i is a variable incremented every iteration, which does not get sent through Serial.
I run "setpar serout USB" and "setpar serlog USB" to configure sending Serial to the USB, and "setmapping2 YUYV 640 480 [FPS] [Vendor] [Module]" to set the module. However, when I run "streamon", I get the following error:
FTL Module::process: Not implemented in this module
Instead of the expected numbers coming from the variable 'i'
I notice that my code, based off of SampleModule.C, has a "virtual void process()". Is the fact that it's a "virtual" process an issue? How should this be resolved?
I assume due to the error, it's never running the sendSerial() command. Are there any other things I need to set up in my module?