-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
196 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -108,3 +108,6 @@ | |
|
||
# ROMI | ||
gen_package(root, "romi") | ||
|
||
# XRP | ||
gen_package(root, "xrp") |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
*.py[cod] | ||
*.so | ||
*.dll | ||
*.egg-info | ||
|
||
/build | ||
|
||
/xrp/include | ||
/xrp/lib | ||
/xrp/_init_xrp.py | ||
/xrp/pkgcfg.py | ||
/xrp/version.py |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
robotpy-xrp | ||
============ | ||
|
||
RobotPy support for the WPILib XRP vendor library. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
|
||
classes: | ||
XRPGyro: | ||
methods: | ||
XRPGyro: | ||
GetAngle: | ||
GetRate: | ||
GetRateX: | ||
GetRateY: | ||
GetRateZ: | ||
GetAngleX: | ||
GetAngleY: | ||
GetAngleZ: | ||
Reset: |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
|
||
classes: | ||
XRPMotor: | ||
methods: | ||
XRPMotor: | ||
Set: | ||
Get: | ||
SetInverted: | ||
GetInverted: | ||
Disable: | ||
StopMotor: | ||
GetDescription: |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
|
||
classes: | ||
XRPOnBoardIO: | ||
attributes: | ||
kMessageInterval: | ||
m_nextMessageTime: | ||
methods: | ||
XRPOnBoardIO: | ||
GetUserButtonPressed: | ||
SetLed: |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
|
||
classes: | ||
XRPRangefinder: | ||
methods: | ||
GetDistance: |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
|
||
classes: | ||
XRPReflectanceSensor: | ||
methods: | ||
GetLeftReflectanceValue: | ||
GetRightReflectanceValue: |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
|
||
classes: | ||
XRPServo: | ||
methods: | ||
XRPServo: | ||
SetAngle: | ||
GetAngle: | ||
SetPosition: | ||
GetPosition: |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[build-system] | ||
requires = [ | ||
"robotpy-build<2025.0.0,~=2024.0.0", | ||
"wpilib~=2024.1.1" | ||
] | ||
|
||
[tool.robotpy-build] | ||
base_package = "xrp" | ||
|
||
[tool.robotpy-build.wrappers."xrp"] | ||
name = "xrp" | ||
sources = ["xrp/src/main.cpp"] | ||
generation_data = "gen" | ||
depends = [ | ||
"wpilib_core", "wpilibc_interfaces", "wpilibc", | ||
"wpimath_cpp", "wpimath_geometry", | ||
"wpiHal", "wpiutil", "ntcore", | ||
] | ||
|
||
[tool.robotpy-build.wrappers."xrp".autogen_headers] | ||
# frc/xrp | ||
XRPGyro = "frc/xrp/XRPGyro.h" | ||
XRPMotor = "frc/xrp/XRPMotor.h" | ||
XRPOnBoardIO = "frc/xrp/XRPOnBoardIO.h" | ||
XRPRangefinder = "frc/xrp/XRPRangefinder.h" | ||
XRPReflectanceSensor = "frc/xrp/XRPReflectanceSensor.h" | ||
XRPServo = "frc/xrp/XRPServo.h" | ||
|
||
|
||
[tool.robotpy-build.wrappers."xrp".maven_lib_download] | ||
artifact_id = "xrpVendordep-cpp" | ||
group_id = "edu.wpi.first.xrpVendordep" | ||
# repo_url = "https://frcmaven.wpi.edu/artifactory/release" | ||
repo_url = "https://frcmaven.wpi.edu/artifactory/release" | ||
version = "2024.1.1" | ||
libs = ["xrpVendordep"] | ||
|
||
|
||
[tool.robotpy-build.metadata] | ||
name = "robotpy-xrp" | ||
description = "Binary wrapper for WPILib XRP Vendor library" | ||
author = "RobotPy Development Team" | ||
author_email = "[email protected]" | ||
url = "https://github.com/robotpy/mostrobotpy" | ||
license = "BSD-3-Clause" | ||
install_requires = [ | ||
"wpilib~=2024.1.1" | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from robotpy_build.setup import setup | ||
|
||
setup() |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pytest |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
from os.path import abspath, dirname | ||
import sys | ||
import subprocess | ||
|
||
if __name__ == "__main__": | ||
root = abspath(dirname(__file__)) | ||
os.chdir(root) | ||
|
||
subprocess.check_call([sys.executable, "-m", "pytest"]) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import xrp | ||
|
||
|
||
def test_xrp(): | ||
pass |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from . import _init_xrp | ||
|
||
# autogenerated by 'robotpy-build create-imports xrp' | ||
from ._xrp import ( | ||
XRPGyro, | ||
XRPMotor, | ||
XRPOnBoardIO, | ||
XRPRangefinder, | ||
XRPReflectanceSensor, | ||
XRPServo, | ||
) | ||
|
||
__all__ = [ | ||
"XRPGyro", | ||
"XRPMotor", | ||
"XRPOnBoardIO", | ||
"XRPRangefinder", | ||
"XRPReflectanceSensor", | ||
"XRPServo", | ||
] | ||
|
||
del _init_xrp |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
|
||
#include <rpygen_wrapper.hpp> | ||
|
||
RPYBUILD_PYBIND11_MODULE(m) { | ||
initWrapper(m); | ||
} |