Skip to content

Commit

Permalink
scale rcCommand yaw correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
stronnag committed Jun 7, 2022
1 parent 69d83a9 commit 8e9303d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('flightlog2kml', version : '1.0.1')
project('flightlog2kml', version : '1.0.2')
meson.add_install_script('meson/post_install.py')
version = get_option('version')
commit = get_option('commit')
Expand Down
2 changes: 1 addition & 1 deletion pkg/bbl/bblreader.go
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ func get_bbl_line(r []string, have_origin bool) types.LogItem {
}
if s, ok = get_rec_value(r, "rcCommand[2]"); ok {
i64, _ := strconv.Atoi(s)
b.Rud = int16(i64) + 1500
b.Rud = -1*int16(i64) + 1500
}
if s, ok = get_rec_value(r, "rcCommand[3]"); ok {
i64, _ := strconv.Atoi(s)
Expand Down

0 comments on commit 8e9303d

Please sign in to comment.