1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 19:40:31 +03:00

reversed o/n meaning from previous commit to actually mean what I said :)

n = new rev (fullscale acc)
o = old rev (halfscale acc)


git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@279 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
This commit is contained in:
timecop@gmail.com 2013-02-22 15:57:29 +00:00
parent bc627783f8
commit c88614046b
2 changed files with 5 additions and 5 deletions

View file

@ -750,7 +750,7 @@ static void cliStatus(char *cmdline)
if (sensors(SENSOR_ACC)) {
printf("ACCHW: %s", accNames[accHardware]);
if (accHardware == ACC_MPU6050)
printf(".%c", cfg.mpu6050_scale ? 'n' : 'o');
printf(".%c", cfg.mpu6050_scale ? 'o' : 'n');
}
uartPrint("\r\n");