Skip to content

Commit

Permalink
Rename Graph Fields
Browse files Browse the repository at this point in the history
Rename rcCommands to setpointRate Issue #28
Rename debug[] fields to match RC14
  • Loading branch information
GaryKeeble committed Sep 10, 2016
1 parent 842f76f commit 9836f61
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions js/flightlog_fields_presenter.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ function FlightLogFieldPresenter() {
'axisError[2]' : 'PID_Error[yaw]',

//Virtual fields - add the Scaled rcCommands
'rcCommands[all]': 'rcCommands',
'rcCommands[0]' : 'rcCommands[roll]',
'rcCommands[1]' : 'rcCommands[pitch]',
'rcCommands[2]' : 'rcCommands[yaw]',
'rcCommands[all]': 'setpointRates',
'rcCommands[0]' : 'setpointRate[roll]',
'rcCommands[1]' : 'setpointRate[pitch]',
'rcCommands[2]' : 'setpointRate[yaw]',

//Virtual fields - add the Scaled gyros
'gyroADCs[all]': 'gyros',
Expand Down Expand Up @@ -140,10 +140,10 @@ function FlightLogFieldPresenter() {
},
'NOTCH' : {
'debug[all]':'Debug Notch',
'debug[0]':'gyro_raw[roll]',
'debug[1]':'gyro_notch[roll]',
'debug[2]':'gyro_raw[pitch]',
'debug[3]':'gyro_notch[pitch]',
'debug[0]':'gyro_preNotch[roll]',
'debug[1]':'gyro_preNotch[pitch]',
'debug[2]':'gyro_preNotch[yaw]',
'debug[3]':'Not Used',
},
'RC_INTERPOLATION' : {
'debug[all]':'Debug RC',
Expand Down
2 changes: 1 addition & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Global Level Variables
var userSettings = {};

var VIEWER_VERSION = '2.5.5'; // Current version
var VIEWER_VERSION = '2.5.6'; // Current version

function BlackboxLogViewer() {
function supportsRequiredAPIs() {
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Betaflight - Blackbox Explorer",
"description": "Interactive flight log viewer for Betaflight",
"version": "2.5.5",
"version": "2.5.6",
"manifest_version": 2,
"app": {
"background": {
Expand Down

0 comments on commit 9836f61

Please sign in to comment.