Document NetworkTables struct and protobuf serialization support#3109
Closed
jasondaming wants to merge 2 commits into
Closed
Document NetworkTables struct and protobuf serialization support#3109jasondaming wants to merge 2 commits into
jasondaming wants to merge 2 commits into
Conversation
Creates comprehensive FAQ document covering frequently asked questions and common issues in FRC, organized into categories: - Build and deployment issues (connection, imaging, Gradle) - Hardware issues (CAN bus, brownouts, pneumatics, motor controllers) - Programming issues (null pointers, command-based, vendor libraries, crashes) - Driver Station issues (communication, joysticks, dashboards) - Firmware and software updates - Network configuration (radio, competition, camera, sensors) Each issue includes symptoms, solutions, and links to relevant documentation. Fixes wpilibsuite#515
Update NetworkTables and telemetry documentation to reflect that struct and protobuf serialization for complex data types is now supported. Changes: - Update telemetry.rst to document struct/protobuf support for complex types - Update networktables-intro.rst to explain struct and protobuf encoding - Remove outdated statement saying struct/protobuf support was "not yet" available - Add examples of WPILib classes with built-in struct serialization - Mention that teams can implement custom serializers Fixes wpilibsuite#2812 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
sciencewhiz
reviewed
Oct 11, 2025
sciencewhiz
left a comment
Collaborator
There was a problem hiding this comment.
This PR should address @PeterJohnson comments from the last PR that attempted to document this: #2814 (comment)
Collaborator
There was a problem hiding this comment.
This doesn't belong in this PR
| docs/software/hardware-apis/index | ||
| docs/software/can-devices/index | ||
| docs/software/basic-programming/index | ||
| docs/software/support/common-issues-faq |
Collaborator
There was a problem hiding this comment.
This doesn't belong in this PR
Collaborator
Nevermind, I see that #3110 addresses that and seems to include this PRs content as well. Closing this PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates NetworkTables and telemetry documentation to reflect that struct and protobuf serialization for complex data types is now supported (added in 2024).
Changes
telemetry.rstto document struct/protobuf support for complex data typesnetworktables-intro.rstto explain struct and protobuf encoding formatsFixes #2812