mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
This removes the confusion of the `ExpansionHubServo` class serving both purposes, and thus having a `set` method that functions as `setPosition` when in servo mode and `setThrottle` when not in continuous mode. It also removes the `setContinuousRotationMethod` which could be confused for a method that switches the actual servo firmware itself from servo to continuous mode, which is not a thing that is physically possible I think. --------- Signed-off-by: Zach Harel <zach@zharel.me>
99 lines
7.4 KiB
Markdown
99 lines
7.4 KiB
Markdown
# robotpy in allwpilb
|
|
allwpilib hosts a mirror of RobotPy that can be built with bazel on Linux. The intent of the mirror is to have breaking changes identified early and fixed by the PR creator so that when wpilib releases are made there is much less work required to release a RobotPy version that wraps it. It is not a goal for allwpilib to replace the RobotPy repo; it will still be considered the "source of truth" for python builds and will be responsible for building against all of the applicable architectures and multiple versions of python.
|
|
|
|
## Build Process
|
|
The upstream RobotPy repository uses toml configuration files and semiwrap to produce Meson build scripts. The allwpilib fork uses these toml configuration files to auto generate bazel build scripts. In general, each project (wpiutil, wpimath, etc) defines two pybind extensions; one that simply wraps the native library, and another that adds extension(s) that and contains all of the python files for the library. Both of these subprojects have auto-generated build files; a `robotpy_native_build_info.bzl` for the lidar wraper and `robotpy_pybind_build_info.bzl` which defines the extensions and python library.
|
|
|
|
## Disabling robotpy builds
|
|
Building the robotpy software on top of the standard C++/Java software can result in more than doubling the amount of time it takes to compile. To skip building the robotpy tooling you can add `--config=skip_robotpy` to the command line or to your `user.bazelrc`
|
|
|
|
# Syncing with robotpy
|
|
[Copybara](https://github.com/google/copybara) is used to maintin synchronization between the upstream robotpy repositories and the allwpilib mirror. Github actions can be manually run which will create pull requests that will update all of the robotpy files between the two repositories. The ideal process is that the allwpilib mirror is always building in CI, and once a release is created the RobotPy team can run the `wpilib -> robotpy` copybara task, make any fine tuned adjustements and create their release. In the event that additional changes are made on the robotpy side, they can run the `robotpy -> wpilib` task to push the updates back to the mirror. However the goal of the mirroring the software here is to be able to more rapidly test changes and will hopefully overwhelmingly eliminate the need for syncs this direction.
|
|
|
|
## Creating a user config
|
|
The copybara scripts needs to know information about what repositories it will be pushing the sync'd changes. These can be specified on the command line, or you can create a `shared/bazel/copybara/.copybara.json` config file to save your personalized settings to avoid having to type things out every time. To run the full suite of migrations, you need a fork of [allwpilib](https://github.com/wpilibsuite/allwpilib), a fork of [mostrobotpy](https://github.com/robotpy/mostrobotpy), and a fork of robotpy's [commands-v2](https://github.com/robotpy/robotpy-commands-v2). If you only wish to run a subset of commands (i.e. not sync the commands project), you do not need to include that in your user config.
|
|
|
|
Example config:
|
|
```
|
|
{
|
|
"mostrobotpy_local_repo_path": "/home/<username>/git/robotpy/robotpy_monorepo/mostrobotpy",
|
|
|
|
"mostrobotpy_fork_repo": "https://github.com/<username>/mostrobotpy.git",
|
|
"allwpilib_fork_repo": "https://github.com/<username>/allwpilib.git",
|
|
"robotpy_commandsv2_fork_repo": "https://github.com/<username>/robotpy-commands-v2.git"
|
|
}
|
|
```
|
|
|
|
## Running syncs
|
|
- **Pulling changes from mostrobotpy**:
|
|
|
|
`python3 shared/bazel/copybara/run_copybara.py mostrobotpy_to_allwpilib`
|
|
|
|
|
|
- **Pulling changes from the commands library**:
|
|
|
|
`python3 shared/bazel/copybara/run_copybara.py commandsv2_to_allwpilib`
|
|
|
|
- **Pushing changes to the commands library**:
|
|
|
|
`python3 shared/bazel/copybara/run_copybara.py allwpilib_to_commandsv2`
|
|
|
|
- **Pushing changes to mostrobotpy**:
|
|
|
|
This process is slightly more complicated, because you will almost certainly also need to update the maven artifacts that mostrobopy is using. Because of this, you must also specify the version number that has been published to wpilibs maven repository. If you are trying to get an early, non-released development build pushed over, you can also add the `--development_build` flag
|
|
|
|
`python3 shared/bazel/copybara/run_copybara.py allwpilib_to_mostrobotpy --wpilib_bin_version=2027.0.0-alpha-3-86-g418b381 --development_build -y`
|
|
|
|
|
|
# Debugging Build Errors
|
|
The build process is highly automated and automatically parses C++ header files to generate pybind11 bindings. Some of these steps here are considered "pregeneration" steps, and the bazel build system will update build files as necessary. If a new header is added, or if the contents of a header file has changed, some of the pregeneration scripts might need to be run. If you encounter an error building `robotpy` code, it is recommended that you go through these steps to make sure everything is set up correctly. The examples are for `wpilibc`, but similar build tasks and tests exist for each wrapped project
|
|
|
|
## 1. scan-headers
|
|
This can be the first source of problems if a new header file has been added. `semiwrap` will look through all of the headers for a library and notify you if a file is not covered by the projects `pyproject.toml` file. Bazel has a test case to ensure the files are up to date.
|
|
|
|
An example test failure when a new header being introduced. You can run the test with the following command
|
|
|
|
bazel run //wpilibc:robotpy-wpilib-scan-headers
|
|
|
|
```
|
|
# wpi
|
|
ExpansionHub = "wpi/ExpansionHub.hpp"
|
|
ExpansionHubCRServo = "wpi/ExpansionHubCRServo.hpp"
|
|
ExpansionHubMotor = "wpi/ExpansionHubMotor.hpp"
|
|
ExpansionHubPidConstants = "wpi/ExpansionHubPidConstants.hpp"
|
|
ExpansionHubServo = "wpi/ExpansionHubServo.hpp"
|
|
|
|
```
|
|
|
|
To fix this, you can copy the lines from the console, and add them to the pyproject.toml file, located here `wpilibc/src/main/python/pyproject.toml`
|
|
|
|
## 2. update-yaml
|
|
This process parses all of the header files, and creates a representation of the classes / enums / etc in yaml. Occasionally some functions might be ignored or need custom pybind code, which can be added to these files by the user.
|
|
|
|
There is a bazel task that you can run to automatically update the files:
|
|
|
|
`bazel run //wpilibc:write_robotpy-wpilib-update-yaml`
|
|
|
|
|
|
## 3. generate-build-info
|
|
This step takes the yaml files, and auto generates a bazel build script for the library.
|
|
|
|
There is a bazel task that you can run to automatically update the files:
|
|
|
|
`bazel run //wpilibc:robotpy-wpilib-generator.generate_build_info`
|
|
|
|
## semiwrap errors
|
|
If all of these steps above go smoothly and have their tests pass, but the generated cpp files still won't compile, it is possible that either an update needs to be made to the semiwrap tool to handle the new complex functionality, the new functionality can be ignored, or the new functionality might be better handled with a custom pybind11 implementation. In any case, it is best to reach out to the robotpy team for guidance.
|
|
|
|
## Running multiple projects at once
|
|
Each project has its own `scan-headers` and various pregeneration tools, but you can run all of them at once with the following commands. Note: Sometimes if something in the dependency chain for a library fails, these amalgamation commands will also fail. If that happens, fix your way up the dependency chain project by project.
|
|
|
|
```
|
|
# Scan Headers
|
|
bazel test //... -k --test_tag_filters=robotpy_scan_headers --build_tests_only
|
|
|
|
# All pregen
|
|
bazel run //:write_robotpy_files
|
|
|
|
```
|