Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelsadok committed May 26, 2020
2 parents 392781c + 0d45c3f commit beaca6f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ Please add a note of your changes below this heading if you make a Pull Request.
* Fixed a numerical issue in the trajectory planner that could cause sudden jumps of the position setpoint

# Releases
## [0.4.12] - 2020-05-06
### Fixed
* Fixed a numerical issue in the trajectory planner that could cause sudden jumps of the position setpoint

## [0.4.11] - 2019-07-25
### Added
* Separate lockin configs for sensorless, index search, and general.
Expand Down
4 changes: 2 additions & 2 deletions docs/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ GEM
jekyll (~> 3.3)
jekyll-remote-theme (0.2.3)
jekyll (~> 3.5)
rubyzip (>= 1.2.2, < 3.0)
rubyzip (>= 1.3.0, < 3.0)
typhoeus (>= 0.7, < 2.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
Expand Down Expand Up @@ -221,7 +221,7 @@ GEM
ruby-enum (0.7.2)
i18n
ruby_dep (1.5.0)
rubyzip (1.2.2)
rubyzip (1.3.0)
safe_yaml (1.0.4)
sass (3.5.6)
sass-listen (~> 4.0.0)
Expand Down
2 changes: 1 addition & 1 deletion docs/odrivetool.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ To compile firmware from source, refer to the [developer guide](developer-guide)
* On some machines you will need to unplug and plug back in the USB cable to make the PC understand that we switched from regular mode to bootloader mode.
* If the DFU script can't find the device, try forcing it into DFU mode.

<details><summary markdown="span">How to force DFU mode (ODrive v3.5)</summary><div markdown="block">
<details><summary markdown="span">How to force DFU mode (ODrive v3.5 and newer)</summary><div markdown="block">
Flick the DIP switch that "DFU, RUN" to "DFU" and power cycle the board. After you're done upgrading firmware, don't forget to put the switch back into the "RUN" position and power cycle the board again.
</div></details>

Expand Down
2 changes: 1 addition & 1 deletion tools/odrive/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def oscilloscope_dump(odrv, num_vals, filename='oscilloscope.csv'):
f.write(str(odrv.get_oscilloscope_val(x)))
f.write('\n')

data_rate = 10
data_rate = 100
plot_rate = 10
num_samples = 1000
def start_liveplotter(get_var_callback):
Expand Down
2 changes: 1 addition & 1 deletion tools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"""

# Set to true to make the current release
is_release = False
is_release = True

# Set to true to make an official post-release, rather than dev of new version
is_post_release = False
Expand Down

0 comments on commit beaca6f

Please sign in to comment.