VIO output callback at keyframe rate
| 804 | |
| 805 | // VIO output callback at keyframe rate |
| 806 | void RosBaseDataProvider::callbackKeyframeRateVioOutput( |
| 807 | const SpinOutputPacket& vio_output) { |
| 808 | // The code here should be lighting fast or we will be blocking the backend |
| 809 | // thread in the VIO. This is actually running in the backend thread, as |
| 810 | // such do not modify things other than thread-safe stuff. |
| 811 | vio_output_queue_.push(vio_output); |
| 812 | } |
| 813 | |
| 814 | } // namespace VIO |
nothing calls this directly
no outgoing calls
no test coverage detected