···3636/*!
3737 * Start recording samples sent to the recorder sinks.
3838 *
3939- * @param er The recorder sinks returned by @ref euroc_recorder_create
3939+ * @param er_sinks The recorder sinks returned by @ref euroc_recorder_create
4040 */
4141void
4242euroc_recorder_start(struct xrt_slam_sinks *er_sinks);
···4545 * Stop recording samples sent to the recorder sinks. You can start and
4646 * stop as many times as you like.
4747 *
4848- * @param er The recorder sinks returned by @ref euroc_recorder_create
4848+ * @param er_sinks The recorder sinks returned by @ref euroc_recorder_create
4949 */
5050void
5151euroc_recorder_stop(struct xrt_slam_sinks *er_sinks);
···5353/*!
5454 * Add EuRoC recorder UI button to start recording after creation.
5555 *
5656- * @param er The sinks returned by @ref euroc_recorder_create
5656+ * @param er_sinks The sinks returned by @ref euroc_recorder_create
5757 * @param root The pointer to add UI button to
5858 * @param prefix Prefix in case you have multiple recorders, otherwise pass an empty string
5959 */
+1
src/xrt/auxiliary/tracking/t_openvr_tracker.h
···1515extern "C" {
1616#endif
17171818+/// The type of device
1819enum openvr_device
1920{
2021 T_OPENVR_DEVICE_UNKNOWN = 0,
+3-3
src/xrt/auxiliary/tracking/t_tracking.h
···133133134134135135/*!
136136- * Stringifies a @ref enum t_camera_distortion_model
136136+ * Stringifies a @ref t_camera_distortion_model
137137 * @param model The distortion model to be stringified
138138 * @return The distortion model as a string
139139 */
···151151}
152152153153/*!
154154- * Returns the number of parameters needed for this @ref enum t_camera_distortion_model to be held by an OpenCV Mat and
154154+ * Returns the number of parameters needed for this @ref t_camera_distortion_model to be held by an OpenCV Mat and
155155 * correctly interpreted by OpenCV's (un)projection functions.
156156 *
157157 * @param model The distortion model in question
···651651 int cam_count; //!< Number of cameras in use
652652 bool slam_ui; //!< Whether to open the external UI of the external SLAM system
653653 bool submit_from_start; //!< Whether to submit data to the SLAM tracker without user action
654654- int openvr_groundtruth_device; //!< If >0, use lighthouse as groundtruth, see @ref enum openvr_device
654654+ int openvr_groundtruth_device; //!< If >0, use lighthouse as groundtruth, see @ref openvr_device
655655 enum t_slam_prediction_type prediction; //!< Which level of prediction to use
656656 bool write_csvs; //!< Whether to enable CSV writers from the start for later analysis
657657 const char *csv_path; //!< Path to write CSVs to