-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: Running at higher than 200 Hz #117
Comments
As a follow up, am I correct in my understanding that among these listed below, ATTITUDEGROUP_YPRU is the bottleneck, as it comes from the NavFilter module, which runs at 200 Hz? If I remove it from this list, can I then set the output rate to 400 Hz? What I need are COMMONGROUP_QUATERNION, COMMONGROUP_ANGULARRATE, COMMONGROUP_ACCEL, and COMMONGROUP_TIMESTARTUP BinaryOutputRegister bor( |
I'm glad that this driver has been helpful for you. The project is structured to make it easy to get started, and then provide you a foundation to extend and modify for your particular needs. Been a while since I've personally used this, but IIRC the uart bandwidth becomes a bottleneck for the higher data rates. It's very likely that you will need to disable some of the other message types in order to have enough bandwidth. You may even need to use a second BOR for the IMU at a higher rate for the raw IMU, and then use the first BOR for the lower rate data. |
I think it's not providing exactly the data you are asking for, but there is a sample config file in the ROS2 branch for the VN100 running at 800Hz. https://github.com/dawonn/vectornav/blob/aa890673b5e56165d20a9c137120542ca6a36e1e/vectornav/config/vn_100_800hz.yaml |
Hi, sorry this is a question and not an issue with the package, but I didn't know how else to contact you.
First, thank you so much for creating this, it has worked fantastic for our SLAM applications.
My question is about the rep rate being limited to 200 Hz in the yaml config file.
From what I understand from the datasheet, the VN-100 and VN-200 can output EKF data at 400 Hz.
Currently, we run it at 200 Hz, since that is the highest async_output_rate I can specify in the yaml config.
Specifically what I want is the quaternion data at 400 Hz, if possible.
Is it possible to get the quaternion data at 400 Hz using this ROS package?
Thanks very much!
The text was updated successfully, but these errors were encountered: