Skip to content

Commit

Permalink
Merge pull request #8 from mabrobotics/1.5.1_release_candidate
Browse files Browse the repository at this point in the history
1.5.1 release candidate
  • Loading branch information
jakubmatyszczak authored Jun 24, 2024
2 parents 8feac32 + ad106d4 commit 5023bda
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ build
wheelhouse
tmpvenv
src/pyCandleMAB.egg-info
venv/
3 changes: 2 additions & 1 deletion bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,8 @@ PYBIND11_MODULE(pyCandle, m)
.def_readwrite("targetTorque", &mab::regRW_st::targetTorque)
.def_readwrite("motionMode", &mab::regRW_st::motionMode)
.def_readwrite("state", &mab::regRW_st::state)
.def_readwrite("reverseDirection", &mab::regRW_st::reverseDirection);
.def_readwrite("reverseDirection", &mab::regRW_st::reverseDirection)
.def_readwrite("brakeMode", &mab::regRW_st::brakeMode);

py::class_<mab::ImpedanceControllerGains_t>(m, "ImpedanceControllerGains_t")
.def(py::init())
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def build_extension(self, ext):

setup(
name="pyCandleMAB",
version="1.5.0",
version="1.5.1",
author="Piotr Wasilewski",
author_email="[email protected]",
description="Python package for controlling MD80-based actuators",
Expand Down
2 changes: 1 addition & 1 deletion src/candle

0 comments on commit 5023bda

Please sign in to comment.