mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 20:35:33 +03:00
Added SuperExpo Yaw field to header
Added the super expo yaw field value and mode to header.
This commit is contained in:
parent
7af7ddcac0
commit
c6c462b92f
1 changed files with 4 additions and 1 deletions
|
@ -1195,7 +1195,7 @@ static bool blackboxWriteSysinfo()
|
|||
blackboxPrintfHeaderLine("tpa_breakpoint:%d", masterConfig.profile[masterConfig.current_profile_index].controlRateProfile[masterConfig.profile[masterConfig.current_profile_index].activeRateProfile].tpa_breakpoint);
|
||||
break;
|
||||
case 19:
|
||||
blackboxPrintfHeaderLine("superExpoFactor:%d", masterConfig.rxConfig.superExpoFactor);
|
||||
blackboxPrintfHeaderLine("superExpoFactor:%d, %d", masterConfig.rxConfig.superExpoFactor, masterConfig.rxConfig.superExpoFactorYaw);
|
||||
break;
|
||||
case 20:
|
||||
blackboxPrintfHeaderLine("rates:%d,%d,%d",
|
||||
|
@ -1333,6 +1333,9 @@ static bool blackboxWriteSysinfo()
|
|||
blackboxPrintfHeaderLine("rc_smoothing:%d", masterConfig.rxConfig.rcSmoothing);
|
||||
break;
|
||||
case 52:
|
||||
blackboxPrintfHeaderLine("superExpoYawMode:%d", masterConfig.rxConfig.superExpoYawMode);
|
||||
break;
|
||||
case 53:
|
||||
blackboxPrintfHeaderLine("features:%d", masterConfig.enabledFeatures);
|
||||
break;
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue