1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-20 06:45:16 +03:00

Change Profile display page so things fit better.

This commit is contained in:
Dominic Clifton 2015-03-28 19:20:21 +00:00
parent 74c605ab9b
commit a6dc7148c4

View file

@ -283,7 +283,7 @@ void showProfilePage(void)
controlRateConfig_t *controlRateConfig = getControlRateConfig(currentRateProfileIndex); controlRateConfig_t *controlRateConfig = getControlRateConfig(currentRateProfileIndex);
tfp_sprintf(lineBuffer, "Expo: %d, Rate: %d", tfp_sprintf(lineBuffer, "RCE: %d, RCR: %d",
controlRateConfig->rcExpo8, controlRateConfig->rcExpo8,
controlRateConfig->rcRate8 controlRateConfig->rcRate8
); );
@ -291,7 +291,7 @@ void showProfilePage(void)
i2c_OLED_set_line(rowIndex++); i2c_OLED_set_line(rowIndex++);
i2c_OLED_send_string(lineBuffer); i2c_OLED_send_string(lineBuffer);
tfp_sprintf(lineBuffer, "Rates R:%d P:%d Y:%d", tfp_sprintf(lineBuffer, "RR:%d PR:%d YR:%d",
controlRateConfig->rates[FD_ROLL], controlRateConfig->rates[FD_ROLL],
controlRateConfig->rates[FD_PITCH], controlRateConfig->rates[FD_PITCH],
controlRateConfig->rates[FD_YAW] controlRateConfig->rates[FD_YAW]